main {
    background: #fff;
    margin: 0;
    display: flex;
    flex-direction: column
}

.mainHeader {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #fff;
    top: 0
}

.header-text {
    text-align: center;
    margin-top: 15%
}

.header-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0059a3;
    margin-bottom: 10px
}

.header-text h4 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px
}

.header-text p {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
    line-height: 24px;
    font-weight: 300;
    text-align: center;
    padding: 0 4%
}

.choose-section {
    text-align: center;
    margin-top: 3%
}

.choose-section h2 {
    font-size: 20px;
    font-weight: 500;
    color: #333
}

.card-left {
    margin-left: auto
}

.card {
    padding: 0 5px !important;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgb(0 0 0 / .1);
    transition: transform 0.3s;
    height: auto;
    width: 100%;
    cursor: pointer;
    background: #f5f5f5
}

.card:hover {
    transform: translateY(-10px)
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: left
}

.card-text {
    font-size: 16px;
    color: #000;
    font-weight: 300;
    text-align: left;
    line-height: 24px
}

.icon {
    font-size: 2rem;
    color: #555;
    margin-bottom: 15px
}

.know-more {
    text-align: center;
    padding: 70px 0
}

.know-more a {
    font-size: 1rem;
    color: #333;
    text-decoration: none
}

.know-more a:hover {
    text-decoration: underline
}

.down-arrow {
    font-size: 16px;
    color: #333;
    line-height: 16px;
    font-weight: 700;
    position: absolute;
    left: 0;
    right: 0
}

.header-2 .navbar-main {
    padding: 10px !important;
    box-shadow: none
}

.choose-section img {
    width: 40px;
    background: #475569;
    padding: 7px;
    margin-right: 15px;
    border-radius: 10px
}

.card-body {
    padding: 5px 15px !important
}

.down-arrow {
    animation: jumpInfinite 1.5s infinite
}

@keyframes jumpInfinite {
    0% {
        margin-top: 0
    }
    50% {
        margin-top: 7px
    }
    100% {
        margin-top: 0
    }
}

.nav-link i {
    font-size: 28px;
    color: #0059a3
}

.custom-accordion {
    padding-left: 40px;
    max-width: 100%;
    --bs-accordion-btn-bg: #ffffff;
    --bs-accordion-active-bg: #f8f9fa;
    --bs-accordion-active-color: #0d6efd;
    --bs-accordion-btn-focus-border-color: #e9ecef;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1)
}

.accordion-button {
    padding: 18px 10px;
    font-weight: 500;
    transition: all 0.3s ease
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #046bc0
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.6;
    color: #000;
    font-weight: 300
}

.accordion-item {
    border: 1px solid #f1f1f1 !important;
    box-shadow: 5px 5px 10px #dcdcdc;
    margin-bottom: 14px;
    border-radius: 0;
    overflow: hidden
}

.accordion-button::after {
    transition: transform 0.3s ease
}

.boxCard {
    transform-style: preserve-3d
}

.boxCard.box {
    position: relative;
    width: 300px;
    height: 220px;
    margin: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #a1a1a1
}

.boxCard.box.body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.9s ease
}

.boxCard.box.body.imgContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    transform-style: preserve-3d;
    background: linear-gradient(45deg, #b5d5ef, #ffe8de)
}

.boxCard.box.body.imgContainer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.boxCard.box.body.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1675bf;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(180deg)
}

.boxCard.box:hover.body {
    transform: rotateY(180deg)
}

.boxCard.box.body.content div {
    transform-style: preserve-3d;
    padding: 10px;
    background: linear-gradient(45deg, #046bc0, #efe9b5);
    transform: translateZ(100px)
}

.boxCard.box.body.content div h3 {
    text-align: center
}

.imgContainer h3 {
    vertical-align: middle;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    padding-top: 55px
}

.imgContainer p {
    text-align: center;
    font-weight: 300
}

.content p {
    text-align: center;
    font-weight: 300
}

.white-bg-section p {
    color: #000;
    font-size: 16px;
    text-align: left;
    font-weight: 300
}

.white-bg-section img {
    width: 90%;
    margin-top: 10px
}

.whyTitle {
    width: 100%;
    color: #0059a3
}

.ptb-60 {
    padding: 60px 80px
}

.method1 {
    text-align: left
}

.method1 h4 {
    font-size: 20px;
    font-weight: 500
}

.method1 ul {
    list-style: none;
    padding: 0
}

.method1 ul li {
    text-align: left;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px
}

.method2 {
    text-align: left
}

.method2 h4 {
    font-size: 20px;
    font-weight: 500
}

.method2 ul {
    list-style: none;
    padding: 0
}

.method2 ul li {
    margin-bottom: 30px;
    animation: 0;
    padding: 0;
    font-weight: 300;
    line-height: 24px
}

.convertImg img {
    width: 80%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block
}

.align-icon {
    width: auto;
    height: 50px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ecf5ff
}

.align-icon i {
    font-size: 20px;
    color: #0059a3
}

.getButton {
    background: linear-gradient(30deg, #0059a3, #e77b47);
    color: #fff;
    padding: 6px 20px;
    font-weight: 300;
    margin: 0 auto;
    display: block
}

.carousel.carousel-item {
    color: #999;
    overflow: hidden;
    min-height: 120px;
    font-size: 13px
}

.carousel.media {
    position: relative;
    padding: 0 0 0 20px;
    margin-left: 20px
}

.carousel.media img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgb(0 0 0 / .2);
    border: 2px solid #fff
}

.carousel.testimonial {
    color: #fff;
    position: relative;
    background: #046bc0;
    padding: 20px 15px;
    margin: 0 0 20px 20px
}

.carousel.testimonial::before,
.carousel.testimonial::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -20px
}

.carousel.testimonial::before {
    width: 20px;
    height: 20px;
    background: #9b9b9b;
    box-shadow: inset 12px 0 13px rgb(0 0 0 / .5)
}

.carousel.testimonial::after {
    width: 0;
    height: 0;
    border: 10px solid #fff0;
    border-bottom-color: #fff;
    border-left-color: #fff
}

.carousel.carousel-item.row>div:first-child.testimonial {
    margin: 0 20px 20px 0
}

.carousel.carousel-item.row>div:first-child.media {
    margin-left: 0
}

.carousel.testimonial p {
    text-indent: 40px;
    line-height: 24px;
    margin: 0;
    font-size: 16px;
    font-weight: 300
}

.carousel.testimonial p::before {
    content: "\201D";
    color: #fff;
    font-weight: 700;
    font-size: 68px;
    line-height: 70px;
    position: absolute;
    left: -25px;
    top: 0
}

.carousel.overview {
    padding: 10px 0 0 0
}

.carousel.overview.details {
    padding: 5px 0 8px
}

.carousel.overview b {
    text-transform: uppercase;
    color: #000
}

.carousel-control-prev,
.carousel-control-next {
    width: 30px;
    height: 30px;
    background: #666;
    text-shadow: none;
    top: 4px
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 16px
}

.carousel-control-prev {
    left: auto;
    right: 40px
}

.carousel-control-next {
    left: auto
}

.carousel-indicators {
    bottom: -80px
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 17px;
    height: 17px;
    border-radius: 0;
    margin: 1px 5px;
    box-sizing: border-box
}

.carousel-indicators li {
    background: #e2e2e2;
    border: 4px solid #fff
}

.carousel-indicators li.active {
    color: #fff;
    background: #f55;
    border: 5px double
}

.star-rating li {
    padding: 0 2px
}

.star-rating i {
    font-size: 14px;
    color: #ffdc12
}

.apartBg {
    background: #f9f9f9
}

.whoBox {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.our-services {
    margin-top: 60px;
    padding-bottom: 30px;
    padding: 0 10px;
    min-height: 135px;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 25px 0 rgb(20 27 202 / .17)
}

.our-services.icon {
    margin-bottom: -21px;
    transform: translateY(-50%);
    text-align: center
}

.our-services h4 {
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 500
}

.our-services p {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 300
}

.our-services:hover h4,
.our-services:hover p {
    color: #fff;
    margin: 0;
    text-align: center
}

.settings:hover {
    box-shadow: 0 0 25px 0 rgb(20 27 201 / .05);
    cursor: pointer;
    background-image: linear-gradient(45deg, #0059a3 0%, #e7792d 100%)
}

.our-services img {
    background: linear-gradient(45deg, #0059a3 0%, #e7792d 100%);
    border-radius: 50%;
    width: 65px;
    padding: 10px
}

footer {
    background: #0059a3;
    padding: 45px 0;
    margin-top: 40px
}

.footerLogo {
    width: 180px;
    margin: 0 auto;
    display: block;
    margin-bottom: 30px
}

.playImages {
    display: inline-flex;
    list-style: none
}

.playImages li {
    margin-right: 15px
}

.playImages img {
    width: 130px
}

.footerImages {
    text-align: center
}

.footer-list h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-left: 30px
}

.footer-list ul {
    font-size: 16px;
    padding-left: 46px;
    list-style: circle;
    color: #fff;
    font-weight: 300;
    line-height: 34px
}

.fcopy1 {
    background: #004a87;
    padding: 5px
}

.fcopy1 p {
    margin-bottom: 0;
    font-weight: 300
}

.tryBtn {
    margin: 0 !important
}

.faq {
    background-color: #f4f5fe;
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip
}

.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.pl-45 {
    padding-left: 45px
}

.accordion-header {
    margin: 0
}

.colorOrange {
    color: #f26522
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    background-image: -webkit-linear-gradient(-30deg, #052157 0%, #91039f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin-bottom: 14px
}

.newsletter {
    padding: 30px 0;
    position: relative;
    z-index: 2
}

.newsletter:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #e6ebff;
    opacity: .8;
    z-index: -1
}

.newsletter.section-title {
    margin-bottom: 20px
}

.newsletter.section-title h2 {
    background-image: -webkit-linear-gradient(-30deg, #ffffff 0%, #ffffff 100%)
}

.newsletter.section-title p {
    color: #000;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    margin: 0 !important
}

.newsletter.newsletter-form {
    background: -webkit-linear-gradient(-30deg, #91039f 0%, #052157 100%);
    position: relative;
    height: 60px;
    z-index: 2
}

.newsletter.newsletter-form:after {
    position: absolute;
    content: "";
    left: -3px;
    right: 0;
    top: -2px;
    bottom: 0;
    background: #0059a3;
    z-index: -1
}

.newsletter.newsletter-form input {
    width: 100%;
    height: 54px;
    border: none;
    padding: 10px;
    background: #fff;
    color: #000
}

.newsletter.newsletter-form input::-webkit-input-placeholder {
    color: #fff;
    opacity: .6
}

.newsletter.newsletter-form input:-ms-input-placeholder {
    color: #fff;
    opacity: .6
}

.newsletter.newsletter-form input::-ms-input-placeholder {
    color: #fff;
    opacity: .6
}

.newsletter.newsletter-form input::placeholder {
    color: #fff;
    opacity: .6
}

.newsletter.newsletter-form button {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    width: 150px;
    background: -webkit-linear-gradient(-30deg, #0059a3 0%, #ff5722 100%);
    height: 62px;
    outline: none;
    border: none;
    color: #fff;
    font-weight: 500;
    cursor: pointer
}

.newsletter.newsletter-form button:hover {
    background: -webkit-linear-gradient(-30deg, #0059a3 0%, #ff5722 100%)
}

a:hover {
    color: #ffb29a;
    text-decoration: none
}

.content p {
    text-align: center;
    font-weight: 300;
    font-size: 15px
}

.boxCard.box.body.content div h3 {
    text-align: center;
    font-size: 19px
}

.icon-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 3px 10px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 20px
}

.icon-bar a:hover {
    background-color: #000
}

.facebook {
    background: #3B5998;
    color: #fff
}

.twitter {
    background: #000;
    color: #fff
}

.linkedin {
    background: #0077B5;
    color: #fff
}

.youtube {
    background: #E62117;
    color: #fff
}

.insta {
    background: linear-gradient(145deg, #4e58cf, #7c32aa, #d72a78, #f5d372);
    color: #fff
}

.transparent {
    background: #fff0
}

.tryBtn {
    margin-left: 15px !important;
    padding: 13px 29px 13px 29px;
    background: #000;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 18px 18px 18px 18px
}

.tryBtn:hover {
    margin-left: 15px !important;
    padding: 13px 29px 13px 29px;
    background: #0059a3;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 18px 18px 18px 18px;
    transition: all.3s
}

.tryBtn {
    text-decoration: none;
    display: inline-block
}

.tryBtn:after {
    content: '';
    display: block;
    border-bottom: 2px solid #fff;
    width: 0;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease
}

.tryBtn:hover:after {
    width: 100%
}

.header-2 .navbar-main.stiky {
    height: auto;
    background-color: #fff;
    position: fixed;
    top: 40px;
    right: 0;
    left: 0;
    z-index: 9999
}

.header-2 .navbar-main.stiky.navbar-brand img {
    width: 150px
}

.modal-confirm {
    color: #636363;
    width: 30%;
    font-size: 14px
}

.modal-confirm.modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none
}

.modal-confirm.modal-header {
    border-bottom: none;
    position: relative
}

.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 0
}

.modal-confirm.form-control,
.modal-confirm.btn {
    min-height: 40px;
    border-radius: 3px
}

.modal-confirm.close {
    position: absolute;
    top: -5px;
    right: -5px
}

.modal-confirm.icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -49px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9;
    background: #82ce34;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 2px rgb(0 0 0 / .1)
}

.modal-confirm.icon-box i {
    font-size: 30px;
    position: relative;
    top: 3px
}

.modal-confirm.modal-dialog {
    margin-top: 80px
}

.modal-confirm p {
    font-weight: 300;
    font-size: 16px;
    color: #000;
    margin-bottom: 7px
}

.modal-confirm.btn {
    color: #fff;
    border-radius: 4px;
    background: #82ce34;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none
}

.modal-confirm.modal-body {
    padding: 0
}

.modal-confirm.btn:hover,
.modal-confirm.btn:focus {
    background: #6fb32b;
    outline: none
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto
}

.msgLoader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
    position: absolute;
    z-index: 9999999;
    right: 8%;
    bottom: 37%;
    display: none
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

#emailError {
    color: red;
    font-weight: 300
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / .5);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050
}

@media only screen and(min-width:1200px)and(max-width:1399px) {
    .know-more {
        text-align: center;
        padding: 50px 0
    }
    .convertImg img {
        width: 90%;
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 15px;
        display: block
    }
    .white-bg-section img {
        width: 100%;
        margin-top: 10px
    }
    .method1 h4 {
        font-size: 18px;
        font-weight: 500
    }
    .method2 h4 {
        font-size: 18px;
        font-weight: 500
    }
    .white-bg-section p {
        color: #000;
        font-size: 16px;
        text-align: left;
        font-weight: 300;
        line-height: 24px;
        margin-bottom: 15px
    }
    .accordion-button {
        padding: 13px 10px;
        font-weight: 500;
        transition: all 0.3s ease
    }
    .our-services h4 {
        font-size: 18px
    }
    .imgContainer h3 {
        font-size: 18px
    }
}

@media(max-width:767px) {
    .card {
        padding: 0 5px !important;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgb(0 0 0 / .1);
        transition: transform 0.3s;
        height: auto;
        width: 100%;
        cursor: pointer;
        background: #f5f5f5
    }
    .header-text {
        text-align: center;
        margin-top: 25%
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
        background: #666;
        text-shadow: none;
        top: -37px
    }
    .pl-45 {
        padding-left: 0
    }
    .custom-accordion {
        padding-left: 0
    }
    .ptb-60 {
        padding: 25px 15px !important
    }
    .header-text h1 {
        font-size: 24px;
        font-weight: 700;
        color: #0059a3;
        margin-bottom: 10px
    }
    .whyTitle {
        width: 100%;
        color: #0059a3;
        font-size: 22px
    }
    .header-2 .navbar-main.stiky.navbar-brand img {
        width: 60% !important
    }
    .contact-content-wrap {
        -webkit-box-shadow: 0 10px 60px 0 rgb(71 74 182/12%);
        box-shadow: 0 10px 60px 0 rgb(71 74 182/12%);
        margin-bottom: 20px;
        margin-top: 0 !important
    }
}
  .footer-bg {
        background-color: rgb(251 251 251);
    }
    .footer-orange {
        color: #339AF0;
    }
    .footer-btn {
        background-color: rgb(46, 140, 230);
        border: none;
        transition: all 0.2s ease;
        font-size:13px;
    }
    .footer-btn:hover {
        background-color: rgb(46, 140, 230);
        transform: scale(1.05);
    }
    .footer-btn:active {
            background-color: rgb(46, 140, 230);
            transform: scale(1.05);
        }
    .footer-link {
        color: #6B7280;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .footer-link:hover {
        color: #rgb(46, 140, 230);
    }
    .social-link {
        color: #6B7280;
        transition: color 0.2s ease;
    }
    .social-link:hover {
        color: #1F2937;
    }