@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
  list-style: none;
  transition: 0.3s ease;
  text-decoration: none;
  scrollbar-width: smooth;
}

body {
  background-color: rgb(250 249 255);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #000;
  border-radius: 15px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999; /* Ensure the preloader is on top */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

h1 {
  font-weight: 550;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 0rem;
  padding-right: 0rem;
  background-color: #fff;
}

#header ._menu-icon{
  display: none;
}

.scrolled {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#header:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(237, 234, 255, 0),
    #e3defc,
    rgba(237, 234, 255, 0)
  );
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}

#header .__container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: relative;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#header .__container h2 {
  color: #000;
  font-size: 27px;
}

#header .__container .__center ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
}

#header .__container .__center ul :hover{
  background-color: yellow;
}

#header .__container ul li {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  transition: 0.3s ease-in-out;
  position: relative;
}

#header .__container button {
  cursor: pointer;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(34 34 34);
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: white;
  transition-duration: 0.3s;
  background-color: #000;
  animation: scale-up-down 6s infinite;
  overflow: hidden;
  position: relative;
}

/* Responsive styles */
@media (max-width: 768px) {
  #header ._menu-icon {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }

  #header .__container .__center {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 998;
  }

  #header .__container .__center ul {
    flex-direction: column;
    gap: 1rem;
  }

  #header .__container .__center.show {
    display: flex;
  }

  #header .__container .__right {
    display: none;
  }
}



/* --------- FOOTER ------------- */

footer {
  padding: 4rem 0;
  background-color: #000;
  color: #fff;
}

footer .__container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

footer .__footer-top {
  border-bottom: 2px solid rgb(31 41 55);
  padding-bottom: 4rem;
}

footer .__footer-top h3 {
  margin-bottom: 2rem;
  font-size: 16px;
  font-weight: 500;
}

footer .__footer-top h2 {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer .__footer-top h1 {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer .__footer-top button {
  margin-top: 2rem;
  padding: 3px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-size: 1.25rem;
  border-radius: 2rem;
}

footer .__footer-top button span {
  display: block;
  position: relative;
  z-index: 2;
  padding: 0.875rem 2rem;
  background: #000;
  color: #fff;
  border-radius: 2rem;
}

footer .__footer-top button::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    115deg,
    #4fcf70,
    #fad648,
    #a767e5,
    #12bcfe,
    #44ce7b
  );
  background-size: 50% 100%;
  border-radius: 2rem;
}

footer .__footer-center {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

footer .__footer-center h1 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer .__footer-center .__logo-sec h3 {
  font-size: 16px;
  font-weight: 500;
}

footer .__footer-center .__logo-sec h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer .__footer-center .__location .__india h3 {
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 0.5rem;
}

footer .__footer-center .__location .__india h4 {
  font-size: 16px;
  font-weight: 500;
}

footer .__footer-center .__social ul li {
  font-size: 16px;
  font-weight: 500;
}

footer .__footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .__footer-bottom ._links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .__footer-bottom p {
  font-size: 14px;
  font-weight: 400;
}

/* --- WHATS APP ---- */

.w-icon {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  cursor: pointer;
  transition: 0.3s ease;
}

.w-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.w-icon img {
  width: 100%;
  height: 100%;
  z-index: 99;
}

.w-icon span {
  animation: pulseAnimate 5s ease-out infinite;
  background-color: #63e654;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
  z-index: -1;
}

.w-icon span:nth-child(1) {
  --i: 1;
  animation-delay: calc(1s * var(--i));
}

.w-icon span:nth-child(2) {
  --i: 2;
  animation-delay: calc(1s * var(--i));
}

.w-icon span:nth-child(3) {
  --i: 3;
  animation-delay: calc(1s * var(--i));
}

.w-icon span:nth-child(4) {
  --i: 4;
  animation-delay: calc(1s * var(--i));
}

@keyframes pulseAnimate {
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

/* ---- MEDIA ---- */

@media screen and (max-width: 786px) {

  h1 {
    font-size: 30px;
  }

  p{
    font-size: 1rem;
  }

  #header {
    padding:  10px;
  }

  #header .__container h2 {
    font-size: 28px;
  }

  #header .__container .__right {
    display: none;
  }
  #header .__container .__center {
    display: none;
  }

  #header .__container ._menu-icon i {
    font-size: 32px;
  }

  footer .__footer-top {
    padding-left: 10px;
    padding-right: 10px;
  }

  footer .__footer-top h2 {
    font-size: 20px;
  }

  footer .__footer-top h1 {
    font-size: 22px;
  }

  footer .__footer-center {
    grid-template-columns: repeat(2,1fr);
   
    padding: 10px;
  }

  footer .__footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}


.inline-email {
  display: flex;
  align-items: center;
  gap: 5px; /* or adjust as needed */
}

.inline-email h2,
.inline-email h1 {
  margin: 0;
  font-size: inherit;
  font-weight: normal;
  display: inline;
}

.inline-email a {
  color: inherit;
  text-decoration: underline;
}



.__partner-section {
  background-color: #f9f9f9; /* Or any light tone */
  padding: 2rem 1rem;
  text-align: center;
}

.__partner-section h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #000000; /* Your brand color! */
}

.__partner-section p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.__partner-section a {
  color: #090e0d;
  text-decoration: none;
  font-weight: bold;
}

.__partner-section a:hover {
  text-decoration: underline;
}
__partner{
  text-align: center;
}