@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

nav {
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .logo svg {
  height: 25px;
  width: auto;
  margin-right: 10px;
}
nav .logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 0 5px;
  background: linear-gradient(to right, #5B6DAB 0%, #132743 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
  margin-top: 12px;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
    color: var(--Gray-600, #475467);

    /* Text md/Semibold */
    /*font-family: Inter;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #475467;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}

.hero-tags {
    display: flex;
    width: fit-content;
    margin: 20px auto;
    padding: 4px 10px 4px 4px;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: var(--Brand-50, #F9F5FF);
    mix-blend-mode: multiply;
    color: var(--Brand-700, #6941C6);
    /* Text sm/Medium 
    font-family: Inter; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
.hero-tag {
    padding: 5px 10px;
}
.hero-tag-active {
    border-radius: 16px;
    border: 1px solid var(--Brand-200, #E9D7FE);
    background: var(--White, #FFF);
}
.hero-image {
    max-height: 40vh;
}
.hero h1 {
    color: var(--Gray-900, #101828);
    text-align: center;
    /* Display xl/Semibold 
    font-family: Inter; */
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px; /* 120% */
    letter-spacing: -1.2px;
}
.hero p.lead {
    color: var(--Gray-600, #475467);
    text-align: center;
    /* Text xl/Regular 
    font-family: Inter;*/
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}
.hero-btns {
    color: var(--Gray-700, #344054);
    background: var(--White, #FFF);
    margin-top: 0 20px;
    padding: 28px;
    /* Text lg/Semibold 
    font-family: Inter; */
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 155.556% */
    /* Shadow/xs */
}
.btn-primary {
    color: var(--Gray-700, #344054);
    border: 1px solid var(--Gray-300, #D0D5DD);
    background: var(--White, #FFF);
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.btn-outline-secondary {
    color: var(--White, #FFF);
    border: 1px solid var(--prim-color-2, #132743);
    background: var(--prim-color-2, #132743);
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.section-title span {
    color: var(--Brand-700, #6941C6);
    text-align: center;
    
    /* Text md/Semibold 
    font-family: Inter;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
}

.section-title h2 {
    color: var(--Gray-900, #101828);
    text-align: center;
    
    /* Display md/Semibold 
    font-family: Inter;*/
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px; /* 122.222% */
    letter-spacing: -0.72px;
}

.section-title p {
    color: var(--Gray-600, #475467);
    text-align: center;
    
    /* Text xl/Regular 
    font-family: Inter;*/
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}
.section-title.dark {
    padding-top: 20px;
}
.section-title.dark h2, .section-title.dark p, .section-title.dark span {
    color: #fff;
}
.features {
    text-align: center;
}
.feature {
    text-align: center;
    padding: 0 32px;
}
.feature .feature-icon {
    text-align: center;
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: 8px solid var(--Brand-50, #F9F5FF);
    background: var(--Brand-100, #F4EBFF);
    margin: 20px auto;
}
.feature img {
    width: 24px;
    height: 24px;
}
.feature h3 {
    color: var(--Gray-900, #101828);
    text-align: center;
    /* Text xl/Medium 
    font-family: Inter;*/
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 150% */
    margin-bottom: 8px;
}

.feature p {
    color: var(--Gray-600, #475467);
    text-align: center;

    /* Text md/Regular 
    font-family: Inter;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.feature .feature-link {
    margin-top: 16px;
    color: var(--Brand-700, #6941C6);
    /* Text md/Semibold 
    font-family: Inter;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    text-decoration: none;
    text-transform: none;
}
.feature .feature-link svg {
    width: 20px;
    height: 20px;
}

.contact {
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    background-color: #071A3A;
    min-height: 100vh;
}
.users {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form {
    position: relative;
    text-align: left;
    display: flex;
    width: 40%;
    padding: 26px 40px;
    margin: 64px auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #FFF;
    color: var(--Gray-700, #344054);
    /* Text sm/Medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
.form-check-label {
    color: var(--Gray-600, #475467);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: none;
}
.waves {
    position: absolute;
    top: 0%;
    left: -12%;
}
.waves img {
    width: 118%;
}
footer {
    text-align: center;
}
footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .logo svg {
    height: 25px;
    width: auto;
    margin-right: 10px;
  }
  footer .logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 0 5px;
    background: linear-gradient(to right, #5B6DAB 0%, #132743 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  footer ul {
    list-style: none;
    display: flex;
    margin-top: 12px;
  }
  footer ul li {
    margin-left: 1.5rem;
  }
  footer ul li a {
      color: var(--Gray-600, #475467);
  
      /* Text md/Semibold */
      /*font-family: Inter;*/
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: 24px; /* 150% */
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 5px;
  }
  
  footer ul li a:hover {
    background-color: #f5f5f5;
  }
  .footer-nav {
    justify-content: center;
    margin-bottom: 32px;
  }
  .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
  }
  .copyright p {
    color: var(--Gray-500, #667085);
/* Text md/Regular 
font-family: Inter;*/
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
  }
  footer .copyright a {
    color: var(--Gray-500, #667085);
    text-decoration: none;
    /* Text md/Regular 
    font-family: Inter;*/
    font-size: 16px;
    margin-left: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
@media screen and (max-width: 790px) {
.hero h1 {
    font-size: 48px;
    line-height: 1.2;
}
    .contact-form {
        width: 80%;
    }
  .hamburger {
    display: block;
  }
  nav ul {
    display: none;
  }
  .copyright {
    display: block;
  }
  footer ul {
    list-style: none;
    margin: 0;
  }
  footer ul li {
    margin-left: 5px;
  }
  .waves{
    overflow: hidden;
  }
    .hero-image {
        max-height: 100vh;
    }
}

.modal-title {
  color: #131523;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px; /* 137.5% */
}
.modal-body {
  color: #5A607F;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  padding: 48px;
}
.modal-body .form-label, .modal .form-check-label {
  color: #5A607F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.modal-body button {
  color: #fff;
  border-radius: 4px;
background: var(--prim-color-2, #132743);
}
.modal-body .forgot {
  color: var(--prim-color-1, #5B6DAB);
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
  letter-spacing: -0.1px;
  text-decoration-line: underline;
}

/* Custom styles for the modal and form */
#quoteModal .modal-body {
  padding: 20px;
}
#quoteModal .form-control {
  margin-bottom: 20px;
}
#quoteModal .modal-dialog {
  max-width: 900px; /* Wider modal */
}
#quoteModal .modal-header {
  border-bottom: none;
}
#quoteModal .divider {
  margin: 20px 0;
  border-bottom: 1px solid #ddd;
}
#quoteModal .btn-primary {
  background-color: #16253B;
  border-color: #16253B;
}
#quoteModal .btn-primary:hover {
  background-color: #0b192a;
  border-color: #0b192a;
}
#quoteModal .modal-content {
  display: flex;
  flex-direction: row;
}
#quoteModal .modal-image {
  background-image: url('./images/quote-image.png'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  width: 40%;
}
#quoteModal .modal-form {
  width: 60%;
  padding: 20px 20px;
}
