@import url('https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@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');

*,::after,::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --theme-font-family: "Poppins", sans-serif;
    /* --theme-background-color: #1778f2; */
    --theme-background-color: #08979d;
    --theme-color: #fff;
}
header{
    background:#fff;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
}
nav{
    height: 80px;
}
header nav.navbar{
    background:#fff;
    padding: 10px 50px;
    width:unset;
    box-shadow: 0 1px 3px #0000001a;
    --bs-navbar-toggler-padding-y: 0.2rem;
    --bs-navbar-toggler-padding-x: 0.3rem;
    --bs-navbar-toggler-font-size: 1rem;
}
header .navbar-nav{
    align-items: center;
}
header .logo{
    max-height:55px;
    max-width:100%;
}
.navbar-brand{
    max-width:100%;
    display:block;
}
#menus a{
    color:#000;
    text-decoration:none;
    font-size:1.2rem;
    font-weight:500;
    font-family: var(--theme-font-family);
}
#menus a:link{
    text-transform:capitalize
}
#menus a:hover,
#menus a:focus,
#menus.active a{
    color: var(--theme-background-color);
    opacity:1
}
#menus:not(:first-child) a{
    margin-left:40px
}
.navbar-toggler:focus{
    box-shadow:none
}

#menus .btn.btn-large.createButton{
    font-weight:700;
    background-color: var(--theme-background-color);
    border: 1px solid var(--theme-background-color);
    color: var(--theme-color);
}
#menus .btn.btn-large.createButton:hover,
#menus .btn.btn-large.createButton:focus{
    background-color: var(--theme-color);
    color: var(--theme-background-color);
}
#menus .btn.btn-large.signupButton{
    font-family: var(--theme-font-family);
    border: 1px solid var(--theme-background-color);
    font-weight:600;
    background-color: var(--theme-color);
    color: var(--theme-background-color);
    margin-left: 0;
}
#menus .btn.btn-large.signupButton:hover,
#menus .btn.btn-large.signupButton:focus{
    background-color: var(--theme-background-color);
    color: var(--theme-color);
}
/* Banner Section */
#home{
    padding: 130px 50px 50px;
}
#home .home_banner_image{
    animation: bounce 2s ease-in-out infinite forwards;
    max-width:90%;
}
.banner-heading{
    font-family: var(--theme-font-family);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}
.banner-sub-heading{
    font-family: var(--theme-font-family);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom:20px
}
.banner-desc{
    font-family: var(--theme-font-family);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 10px
}
#home ul{
    list-style:none;
    padding-left:0
}
#home ul li{
    font-family: var(--theme-font-family);
    font-size:1.1rem;
    font-weight:300;
    margin-bottom:10px
}
#home ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    content: "\f00c";
    margin-right: 5px;
    color: var(--theme-background-color);
}
#home .btn.btn-large.createButton{
    font-family: var(--theme-font-family);
    border: 1px solid var(--theme-background-color);
    font-size:1.2rem;
    font-weight:600;
    padding:8px 30px;
    margin-top:20px;
    background-color: var(--theme-background-color);
    color: var(--theme-color);
}
@keyframes bounce{
    0%{position:relative;top:0px}
    50%{position:relative;top:-10px}
    100%{position:relative;top:0px}
}
#home .btn.btn-large.createButton:hover,
#home .btn.btn-large.createButton:focus{
    background-color: var(--theme-color);
    color: var(--theme-background-color);
}
#home .btn.btn-large.startButton{
    font-family: var(--theme-font-family);
    border: 1px solid var(--theme-background-color);
    font-size:1.2rem;
    font-weight:600;
    padding:8px 30px;
    margin-top:20px;
    background-color: var(--theme-color);
    color: var(--theme-background-color);
}
#home .btn.btn-large.startButton:hover,
#home .btn.btn-large.startButton:focus{
    background-color: var(--theme-background-color);
    color: var(--theme-color);
}

.banner-section{
    min-height:30vh;
    background:#000;
}
.banner-section .banner-heading{
    color:#fff
}
.section-padding{
    padding:80px 50px 50px;
}
/* Who we are */
#who-we-are .who-we-are-card{
    background: var(--theme-color);
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: 0 0 4px 2px var(--theme-background-color); */
    text-align: start;
}
#who-we-are .headline {
    font-family: var(--theme-font-family);
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 30px;
    color: var(--theme-background-color);
    text-align: center;
}

#who-we-are .subheadline {
    font-family: var(--theme-font-family);
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

#who-we-are .content {
    font-family: var(--theme-font-family);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

#who-we-are .highlight {
    color: var(--theme-background-color);
    font-weight: bold;
}
#who-we-are .who-we-are-image{
    max-height: 70vh;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
}
.text-medium{
    font-size: 1.2em;
    margin-top: 1em;
    font-weight: 600;
    font-family: var(--theme-font-family);
}
.section-heading{
    font-family: var(--theme-font-family);
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom:30px;
    color: var(--theme-background-color);;
}
.section-desc{
    font-family: var(--theme-font-family);
    font-size: 1.3em;
    font-weight: 400;
    padding-bottom: 10px;
}
.feature-card{
    background-color: var(--theme-color);
    padding: 50px 20px;
    box-shadow: 0 0 2px 2px hsla(0, 0%, 88%, .451);
    /* margin-bottom: 20px; */
    text-align: center;
    height: 100%;
}
#benefits .bg-choose {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: var(--theme-background-color);
    width: 50px;
    height: 50px;
    margin-inline: auto;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#benefits .bg-choose .featurecard-icon {
    color: var(--theme-color);
    font-family: var(--theme-font-family);
}
#features .bg-choose .featurecard-icon{
    font-size: 40px;
    padding-bottom: 30px;
    color: var(--theme-background-color);
}
.text-large {
    font-family: var(--theme-font-family);
    font-size: 1.4rem;
    font-weight: 600;
}
.feature-card-desc{
    font-family: var(--theme-font-family);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: .3em;
    /* height: 15vh; */
}
.feature-card:hover {
    box-shadow: 0 0 4px 2px var(--theme-background-color);
}
#contact_section{
    padding: 50px;
    background-color: #000;
    padding-top: 100px;
}
#contact_section .input-border-bottom {
    background-color: transparent;
    margin-bottom: 20px;
    outline: none;
    padding: 10px 0;
    width: 100%;
    font-family: var(--theme-font-family);
    font-size: 1em;
    font-weight: 400;
}
#contact_section .input-border-bottom::placeholder {
    color: var(--theme-color);
}
#contact_section .input-border-bottom,
#contact_section .input-border-bottom:focus {
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
}
#contact_section #contact-us-button{
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #000;
    font-size: 1.2rem;
    font-weight:400;
    font-family: var(--theme-font-family);
    padding:8px 30px;
    margin-top:20px;
    text-transform: capitalize;
}
#contact_section #contact-us-button:hover,
#contact_section #contact-us-button:focus{
    background-color: var(--theme-background-color);
    color: var(--theme-color);
    border: 1px solid var(--theme-background-color);
}
#contact_section #contact-us-button1{
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #000;
    font-size: 1.2rem;
    font-weight:400;
    font-family: var(--theme-font-family);
    padding:8px 30px;
    margin-top:20px;
    text-transform: capitalize;
}
#contact_section #contact-us-button1:hover,
#contact_section #contact-us-button1:focus{
    background-color: var(--theme-background-color);
    color: var(--theme-color);
    border: 1px solid var(--theme-background-color);
}
#contact-info .contact-icon{
    font-size: 2.8em;
    margin-bottom: 1em;
    color: var(--theme-background-color);
}
#contact-info .contact-info-link{
    color: #000;
    font-family: var(--theme-font-family);
    font-size: 1.2em;
    text-decoration: none;
}
#contact-info .contact-info-link:focus,
#contact-info .contact-info-link:hover{
    color: var(--theme-background-color);
}
#contact-info .contact-info-text{
    font-family: var(--theme-font-family);
    font-size: 1.2em;
}
#footer {
    padding: 20px 50px;
}
#footer .copyright-text{
    font-size: 1.1em;
    font-family: var(--theme-font-family);
    margin-bottom: 0;
}
#footer .footer-link{
    text-decoration: none;
    color: var(--theme-color);
    font-family: var(--theme-font-family);
    font-size: 1.1em;
}
#footer .footer-link:focus,
#footer .footer-link:hover{
    color: #ffffff90;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 2em auto;
  padding: 1.5em;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}
.modal-heading{
  font-size: 1.3em;
  font-weight: 500;
  margin-bottom: .3em;
}
/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}
  
  /* Form Styles */
#demoModal form {
  display: flex;
  flex-direction: column;
  font-family: var(--theme-font-family);
}
#demoModal label{
  color: #000;
  font-size: 14px;
  text-align: start;
  font-family: var(--theme-font-family);
  margin-bottom: .5em;
}
#demoModal input, 
#demoModal textarea, 
#demoModal select, 
#demoModal button {
  margin-bottom: 10px;
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #000;
  font-family: var(--theme-font-family);
}
#demoModal input:focus, 
#demoModal input::placeholder{
  color: #000;
  font-family: var(--theme-font-family);
}
#demoModal textarea:focus, select:focus{
  color: #000;
  font-family: var(--theme-font-family);
}

#demoModal .submit-btn {
  background-color: var(--theme-background-color);
  border: #000;
  color: white;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: .5em;
  font-family: var(--theme-font-family);
}

#testimonials .carousel-inner{
    padding: 2em;
}
#testimonials .feature-card{
    padding: 30px;
}
#testimonials .carousel-control-next, .carousel-control-prev {
    width: 10%;
}
#testimonials .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2308979d'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-size: contain;
}
#testimonials .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2308979d'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: contain;
}

#testimonials .carousel-control-prev-icon {
    margin-right: 4em;
}
#testimonials .carousel-control-next-icon {
    margin-left: 4em;
}

.border-bottom-none{
    border-bottom: none;
}

.privacy-policy-banner{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    height: calc(60vh - 80px);
    position: relative;
}
.privacy-internal-banner{
    margin-top: 3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.privacy-heading{
    font-size: 2em;
    font-weight: 500;
    font-family: var(--theme-font-family);
    color: var(--theme-color);
}
.privacy-content{
    font-family: var(--theme-font-family);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}
.privacy-list-headings{
    font-family: var(--theme-font-family);
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 10px;
    color: var(--theme-background-color);
    text-align: left;
}
.mail-link{
    color: #000;
    text-decoration: none;
}
.mail-link:focus,
.mail-link:hover{
    color: var(--theme-background-color);
}
.privacy-link{
    color: var(--theme-color);
    text-decoration: none;
}
.privacy-link:focus,
.privacy-link:hover{
    color: var(--theme-background-color);
}