@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
}


body {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

a, button {
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover, button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(#902844 20%, #902844bd 60%, #90284400 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(0px);
}

p {
  margin: 0;
  font-size: 1.025rem;
  line-height: 1.83em;
  color: var(--text-color);
}

h1, h2, h3 {
  color: var(--white);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

::placeholder {
  text-transform: capitalize;
  color: #d6d5d5;
  font-size: 1rem;
}

.themeBtn {
  height: 60px;
  width: 300px;
  text-align: center;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  border-radius: 5px;
  background: radial-gradient(#902844ea 50%, #902843cc 100%);
  color: white;
  font-family: "Lexend", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 2px solid #fff;
}
.themeBtn:focus {
    outline: none;
    box-shadow: none;
}
figure {
  margin: 0;
  position: relative;
}
video {
    margin: 0;
    padding: 0;
}
.themeBtn:hover {
  background: white;
  color: #c6184e;
}

section {
  position: relative;
}

.lp-sect {
    position: relative;
    width: 100%;
    height: 100vh;   /* exactly viewport height */
    overflow: hidden;
}

.lp-sect video {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* keep proportions, cover fully */
}

.cnt-content h2 {
    font-size: 60px;
    font-family: "Lexend", sans-serif;
    font-weight: 700;
    color: white;
}
.cnt-content p {
    font-size: 24px;
    font-family: "Lexend", sans-serif;
    font-weight: 300;
    color: white;
    margin: 20px 0;
}
.cnt-content ul li a {
    height: 65px;
    width: 65px;
    background: #ffe7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c6184e;
    border-radius: 50%;
    color: #c6184e;
    font-size: 24px;
}

.cnt-content ul li a:hover {
    background: #c6184e;
    color: white;
}

.cnt-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 30px;
}
.modal-backdrop {
    z-index: 0 !important;
}
.overlay {
    z-index: 11;
}

.leadForm .modal-content {
    background: #ffebf1;
    border-radius: 20px;
}

.leadForm form input, .leadForm form select {
    height: 45px;
    font-size: 14px;
    background: #ffe1e7;
    border-radius: 15px;
}

.leadForm form textarea {
    height: 120px;
    font-size: 14px;
    background: #ffe1e7;
    resize: none;
    border-radius: 15px;
    padding: 14px 10px;
}
.leadForm form input:focus, .leadForm form select:focus, .leadForm form textarea:focus {
    outline: none;
    box-shadow: none;
}
.leadForm .themeBtn {
    height: 50px;
    width: 60%;
    font-size: 20px;
}
.leadForm .modal-header {
    border: none;
    padding: 0;
}

.leadForm .modal-header .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #902844;
    opacity: 1;
    color: white !important;
    padding: 0;
    border-radius: 50%;
}
.leadForm .modal-body {
    padding: 50px 30px 30px;
}