:root {
    --main-color: #333265;
    --second-color: #45447c;
    --black: #000D0D;
    --gray_1: #D9D9D9;
    --gray_2: #F2F2F2;
    --gray_3: #DCE0DE;
    --gray_4: #F4F4F4;
    --bg_light: #EDFAFA;
    --bg_light_2: #E6F2F2;
    --bg_gray: #FAFAFA;
}

a,p,h1,h2,h3,h4,h5,h6 {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
* {
    transition: all 0.25s linear;
}

.btn {
    border-radius: 10px;
    padding: 16px 32px;
}
.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--second-color);
    border-color: var(--second-color);
    color: #fff;
    font-weight: 600;

}
.btn-light {
    background-color: #fff;
    border-color: #fff;
    color: var(--main-color);
    font-weight: 600;
}
.btn-light:hover {
    background-color: var(--second-color);
    border-color: var(--second-color);
    color: #fff;
    font-weight: 600;
}
.btn-outline {
    background-color: #fff;
    border: 1.5px solid var(--main-color);
    color: var(--main-color);
    font-weight: 600;
}
.btn-outline:hover {
    background-color: var(--main-color);
    border: 1.5px solid var(--main-color);
    color: #fff;
    font-weight: 600;
}


.owl-dots .owl-dot {
    width: 24px;
    height: 5px;
    border-radius: 100px;
    background-color: var(--gray_1) !important;
    margin-right: 3px;
}
.owl-dots .owl-dot.active {
    background-color: var(--main-color) !important;
}

body {
  font-family: "Albert Sans", sans-serif;
}
.menu-toggler {
    padding: 5px 10px !important;
}
header .navbar-brand img {
    width: 153px;
    height: 44px;
}
header ul {
    align-items: center;
}
header .nav-link {
  margin-right: 15px;
  font-size: 16px;
  font-weight: 700;
}

.nav-item .nav-link:hover {
    color: var(--main-color) !important;
}
header  .btn {
    margin-left: 100px;
}

/* Off-Canvas Customization */
.offcanvas-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.offcanvas-body .nav-link {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.offcanvas-body .btn {
  font-size: 1rem;
}

header {
  position: relative;
  width: 100%;
  background-color: white;
  box-shadow: none;
  z-index: 999;
  transition: all 0.5s ease-in-out;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px); /* Small visual shift for elegance */
  padding-bottom: 0.5rem !important;
}

.hero {
    transition: none;
}

.hero h1 {
    margin-top: 100px;
    font-size: 37px;
    font-weight: 700;
    color: var(--black);
    line-height: 60px;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero h1 span {
    font-size: 50px;
}

.hero h1 span span {
    border-bottom: 5px solid #f5ae07;
    padding: 0px 10px;
    border-radius: 65px;
    font-size: 55px;
    font-weight: bolder;
    color: #343265;
}
.hero p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 23px;
    max-width: 700px;
    margin-bottom: 32px;
}

.carousel-section {
    background-image: url(../img/subtract.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.carousel-section .owl-dots {
    position: absolute;
    bottom: 70px;
    width: 100%;
    text-align: center;
}


.features h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
}
.features h4 .tag {
    display: inline-block;
    background-color: var(--gray_2);
    border-radius: 100px;
    padding: 12px 28px;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 36px;
}
.features h4 .tag img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.features .owl-carousel img {
    max-width: 580px;
}
.features .owl-dots {
    position: absolute;
    bottom: 50px;
    width: 75%;
    text-align: center;
}
.features h4 {
    font-size: 28px;
    line-height: 33px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}
.features p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 32px;
}
.features .btn {
    padding: 3px 3px 3px 16px;
    display: inline-flex;
  align-items: center;
}
.features .btn i {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    font-size: 22px;
    margin-left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.features .feature-box {
    border: 1px solid var(--gray_3);
    border-radius: 24px;
    height: 360px;
    padding: 40px 35px;
    text-align: center;
    margin-bottom: 43px;
}
.features .feature-box .icon {
    display: inline-flex;
    width: 104px;
    height: 104px;
    align-items: center;
    justify-content: center;
    background-color: var(--gray_4);
    border-radius: 40px;
    margin-bottom: 25px;
}
.features .feature-box .icon img {
    width: 48px;
    height: 48px;
}
.features .feature-box .icon img:last-of-type {
    display: none;
}
.features .feature-box h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
}

.features .feature-box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.features .feature-box:hover {
    background-color: var(--bg_light);
    border-color: var(--bg_light);
}
.features .feature-box:hover .icon {
    background-color: var(--main-color);
}
.features .feature-box:hover .icon img:first-of-type {
    display: none;
}
.features .feature-box:hover .icon img:last-of-type {
    display: block;
}

.pricing {
    margin-bottom: -180px;
    z-index: 2;
    position: relative;
}
.pricing > .container {
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
.pricing > .container .top {
    padding: 48px 56px;
    background-color: var(--bg_gray);
    position: relative;
    overflow: hidden;
}
.pricing > .container .top .content {
    position: relative;
    z-index: 2;
}
.pricing > .container .top h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    color: var(--black);
    margin-bottom: 14px;
}

.pricing > .container .top h3 img {
    width: 40px;
    height: 40px;
}
.pricing > .container .top p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--black);
    padding-left: 52px;
}
.pricing > .container .top a {
    display: inline-flex;
    align-items: center;
    padding: 8.5px 44.5px;
}
.pricing > .container .top a span {
    font-size: 17px;
    font-weight: 600;
    line-height: 20.4px;
}
.pricing > .container .top a span small {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}
.pricing > .container .top a span:last-of-type {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    display: flex;
    margin-left: 5px;
}
.pricing > .container .top .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 189px;
    height: 201px;
}
.pricing > .container .bottom {
    padding: 40px 108px;
}
.pricing > .container .bottom h5 {
    font-family: Albert Sans;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}
.pricing > .container .bottom li {
    padding: 8px 0;
    font-family: Albert Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
}
.pricing > .container .bottom i {
    color: var(--main-color);
    margin-right: 7px;
}

.last {
    background-color: var(--bg_light_2);
    padding-top: 350px;
}
.last > .container {
    border-radius: 30px 30px 0 0;
    background-color: var(--main-color);
    padding: 72px 90px 53px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.last > .container .content {
    position: relative;
}
.last h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    margin-bottom: 16px;

}
.last p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 40px;
}
.last .lead {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 24px;
}
.last img {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 390px;
    height: 413px;
    z-index: 1;
}

footer .social img {
    width: 30px;
    height: 30px;
}

.modal .btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    padding: 10px;
    border-color: var(--main-color) !important;
    opacity: 1;
}

.modal .btn-close:hover {
    background-color: transparent;
}

.modal h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: var(--black);
    margin-bottom: 7px;
}
.modal h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--black);
    margin-bottom: 32px;
}

.modal-content {
    border-radius: 16px;
    padding: 20px;
}

.form-control {
    font-size: 14px;
    padding: 16px;
    border-radius: 8px;
}

.modal .btn-primary {
    width: 100%;
}

#complete .modal-body {
    padding: 60px 0;
}

.iti {
    width: 100%;
}

/* Landing Animation */
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgb(251 178 3 / 28%);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    background: rgb(52 50 101 / 46%);
    animation-delay: 0s;
}

.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    background: rgb(52 50 101 / 46%);
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    background: rgb(52 50 101 / 46%);
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    background: rgb(52 50 101 / 46%);
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}


p.terms {
    font-size: 10px;
    text-align: center;
    margin-bottom: 10px;
    color: #515151;
}

p.terms a{
    color: var(--main-color)
}

label.terms-checkbox {
    font-size: 13px;
    text-align: center;
    margin-bottom: 5px;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@media screen and (max-width: 1199px) {
    .carousel-section .owl-dots {
        bottom: 50px;
    }

    .features .feature-box .icon {
        display: inline-flex;
        width: 94px;
        height: 94px;
    }
    .features .feature-box h4 {
        font-size: 18px;
    }
    .pricing > .container .bottom {
        padding: 40px 60px;
    }
}
@media screen and (max-width: 991px) {
    .hero h1 {
        margin-top: 50px;
    }
    .carousel-section .owl-dots {
        bottom: 30px;
    }
    .features .owl-dots {
        bottom: 30px;
    }
    .pricing > .container .top {
        padding: 30px 30px;
    }
    .pricing > .container .top a {
        padding: 8.5px 28px;
    }
    .pricing > .container .top p {
        padding-left: 30px;
    }
    .last {
        padding-top: 250px;
    }

}
@media screen and (max-width: 767px) {
    .circles {
        height: 60vh;
        opacity: 0.5;
    }
    .circles li {
        width: 50%;
        height: 50%;
    }
    .circles li:nth-child(1),
    .circles li:nth-child(4),
    .circles li:nth-child(6),
    .circles li:nth-child(7),
    .circles li:nth-child(10) {
        width: 50px;
        height: 50px;
    }
    .circles li:nth-child(2),
    .circles li:nth-child(3),
    .circles li:nth-child(5),
    .circles li:nth-child(8),
    .circles li:nth-child(9) {
        width: 10px;
        height: 10px;
    }

    .features .feature-box {
        padding: 20px 20px;
        margin-bottom: 26px;
    }
    .pricing > .container .top a {
         margin-top: 30px;
    }
    .last > .container {
        padding: 40px 40px 53px;
    }
    .last img {
        opacity: 0.2;
    }

}
@media screen and (max-width: 575px) {
    .btn {
        padding: 10px 12px;
    }
    .hero h1 {
        margin-top: 30px;
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 0px;
    }
    .hero h1 span {
        font-size: 32px;
        line-height: 57px;
    }
    .hero p {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 18px;
    }
    .carousel-section .owl-dots {
        bottom: 0;
    }
    .features h4 .tag {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .features h2 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px !important;
    }

    .features .feature-box {
        height: 324px;
        margin-bottom: 20px;
    }
    .pricing > .container .top {
        padding: 20px 20px;
    }
    .pricing > .container .bottom {
        padding: 40px 20px;
    }
    .pricing > .container .bottom li {
        font-size: 14px;
    }
    .pricing > .container {
        margin: 0 13px;
        width: calc(100% - 26px);
    }
    .last {
        padding-top: 200px;
    }
    .last > .container {
        margin: 0 13px;
        width: calc(100% - 26px);
        padding: 30px 30px 40px;
    }

    .last h3 {
        font-size: 28px;
        font-weight: 700;
        line-height: 32px;
        margin-bottom: 16px;
    }

}
