@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    /* padding: 0; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.text-primary {
    color: #0D47A1 !important;
}

.text-dark {
    color: #353f4f !important;
}

.btn.btn-primary {
    background: #0d47a1;
    color: #fff;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-primary:hover {
        background: #fff !important;
        color: #0d47a1 !important;
    }

.btn.btn-light {
    background: #F6F6FA;
    color: #0d47a1;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-light:hover {
        background: #0d47a1;
        color: #F6F6FA !important;
    }


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

h4 {
    font-family: "Roboto", sans-serif;
}

p, li, a {
    font-family: "Poppins", sans-serif;
}


@keyframes RotateMoveLeft {
    0% {
        left: 0px;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0px;
    }
}

@keyframes RotateMoveRight {
    0% {
        right: 0px;
    }

    50% {
        right: 30px;
    }

    100% {
        right: 0px;
    }
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 35px 0;
    color: #353f4f;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    text-transform: uppercase;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0d47a1 !important;
}

.navbar-light .navbar-brand img {
    max-height: 150px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 120px;
}

.hero-header h1 {
    font-family: "Roboto", sans-serif;
}

.hero-header p {
    font-family: "Poppins", sans-serif;
}

@media (min-width: 768px) {
    .tagline p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .navbar-light .navbar-brand img {
        max-height: 90px;
    }
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: linear-gradient(to right, #fff, #fff, #F6F6FA, #F6F6FA);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: #fff;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 7px 14px;
        border: 1px solid #0d47a1;
        color: #0d47a1;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #353f4f;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #fff !important;
    }
}
/*** Navbar End ***/



/*** Hearo Header Start ***/
.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #F6F6FA;
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% {
        right: 0px;
    }

    50% {
        right: 20px;
    }

    100% {
        right: 0px;
    }
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }

    100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {
        bottom: 0px;
    }

    50% {
        left: -10px;
    }

    75% {
        bottom: 9%;
    }

    100% {
        bottom: 0px;
    }
}

.hero-header {
    padding-top: 160px;
    position: relative;
}

    .hero-header::after {
        content: "";
        position: absolute;
        left: 100px;
        bottom: 100px;
        width: 58px;
        height: 50px;
        background: url(../img/sty-1.png) center center no-repeat;
        animation: RotateMoveSty-3 45s linear infinite;
        transition: 0.5s;
        z-index: -1;
    }

@keyframes RotateMoveSty-3 {
    0% {
        left: 100px;
    }

    40% {
        bottom: -0px;
    }

    50% {
        left: 700px;
    }

    70% {
        bottom: 500px;
    }

    80% {
        left: 400px;
    }

    95% {
        bottom: -0px;
    }

    100% {
        left: 100px;
    }
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
}

@keyframes RotateMoveSty-4 {
    0% {
        left: 100px;
    }

    40% {
        bottom: -0px;
    }

    50% {
        left: 700px;
    }

    70% {
        bottom: 500px;
    }

    80% {
        left: 400px;
    }

    95% {
        bottom: -0px;
    }

    100% {
        left: 100px;
    }
}


.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

    .hero-header .rotate-img .rotate-sty-2 {
        position: absolute;
        top: 100px;
        left: 50px;
        width: 50px;
        height: 50px;
        border-radius: 30px;
        border: 5px solid rgba(247, 71, 128, 0.1);
        background: transparent;
        animation: RotateMoveSty-2 45s linear infinite;
        transition: 0.5s;
    }

@keyframes RotateMoveSty-2 {
    0% {
        left: 0px;
    }

    40% {
        top: -30px;
    }

    50% {
        left: 500px;
    }

    70% {
        top: 200px;
    }

    80% {
        left: 100px;
    }

    95% {
        top: -30px;
    }

    100% {
        left: 0px;
    }
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0% {
        left: 0px;
    }

    50% {
        left: 200px;
    }

    100% {
        left: 0px;
    }
}


@media (max-width: 992px) {


    .hero-header .rotate-img img {
        margin-top: 100px;
    }
}
/*** Hero Header End ***/

/* About  */

@media (max-width: 768px) {
    .about {
        display: flex;
        flex-direction: column-reverse !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

        .about .pt-5 {
            padding-top: 0 !important;
        }
}

@media (min-width: 769px) {
    .about {
        display: flex;
        flex-direction: row !important;
    }
}


/* Feature item styles */
.features-item {
    animation: fadeInUp 1s ease-out, scaleEffect 0.8s ease-in-out, backgroundShift 5s infinite alternate, shapeChange 2s ease-in-out;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
    background: #0D47A1;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    position: relative;
    transform-style: preserve-3d;
    color: white;
}


.features-item {
    transition: all 0.4s ease-in-out;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    color: #000000;
}

    .features-item:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        background-color: #f1f1f1;
        transition: all 0.4s ease-in-out;
    }

@media (max-width: 768px) {
    .container-fluid .container .mt-5 {
        margin-top: 0 !important;
    }
}


@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shapeChange {
    0% {
        border-radius: 15px;
    }

    50% {
        border-radius: 50%;
    }

    100% {
        border-radius: 15px;
    }
}




@keyframes iconAnimation {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.features-item:hover .features-icon {
    background-color: rgba(0, 188, 212, 0.3);
    transform: scale(1.1);
}

/* service end */

/* why choose */
#why-us {
    padding: 130px 0;
    margin: auto;
}

    #why-us h4 {
        margin-bottom: 40px !important;
    }

@media (min-width: 1024px) {
    .arrow-left::after {
        content: '';
        position: absolute;
        width: 145px;
        height: 1px;
        right: -150px;
    }

    .arrow-green::after {
        background-color: #69aa43;
    }

    .arrow-slate::after {
        background-color: #44546a;
    }

    .arrow-orange::after {
        background-color: #fbad4b;
    }

    .arrow-cyan::after {
        background-color: #0a9ccd;
    }

    .arrow-coral::after {
        background-color: #ff6f61;
    }

    .arrow-teal::after {
        background-color: #00b8a9;
    }

    .arrow-right::after {
        content: '';
        position: absolute;
        width: 155px;
        height: 1px;
        left: -160px;
    }
}

.why-green {
    background-color: #69aa43;
    color: white;
}

.why-slate {
    background-color: #44546a;
    color: white;
}

.why-orange {
    background-color: #fbad4b;
    color: white;
}

.why-cyan {
    background-color: #0a9ccd;
    color: white;
}

.why-coral {
    background-color: #ff6f61;
    color: white;
}

.why-teal {
    background-color: #00b8a9;
    color: white;
}

#why-us .container-fluid .text-primary {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.text-container {
    text-align: center;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    order: 2;
}

@media (min-width: 640px) {
    .text-container {
        text-align: right;
        order: 1;
    }
}

@media (min-width: 1024px) {
    .text-container {
        margin-right: 1rem;
        margin-bottom: 0;
    }
}


.circle-decoration {
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    display: none;
}

@media (min-width: 1024px) {
    .circle-decoration {
        display: block;
    }
}

.circle-svg {
    width: 100%;
    height: 100%;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .flex-container {
        flex-direction: row;
        gap: 2rem;
    }
}

.content-box {
    width: 100%;
    margin-bottom: 2.5rem;
}

    .content-box > * + * {
        margin-top: 2rem;
    }

@media (min-width: 640px) {
    .content-box > * + * {
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .content-box {
        width: 33.3333%;
        padding-right: 2rem;
        margin-bottom: 0;
    }
}

@media (min-width: 1280px) {
    .content-box {
        padding-right: 3rem;
    }
}

.custom-flex-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .custom-order {
        order: 2;
    }
}

@media (min-width: 1024px) {
    .custom-flex-layout {
        flex-direction: row;
    }

    .custom-order {
        order: 2;
    }
}

.custom-order {
    order: 1;
    position: relative;
}

.custom-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .custom-icon-wrapper .fas {
        font-size: x-large;
    }

@media (min-width: 640px) {
    .custom-icon-wrapper {
        width: 4rem;
        height: 4rem;
    }
}

.custom-column {
    width: 100%;
    margin: 2.5rem 0;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: -9999;
    z-index: 50;
}

@media (min-width: 1024px) {
    .custom-column {
        width: 33.333333%;
        margin-top: 0;
        margin-bottom: 0;
        order: 0;
    }
}

.custom-square-box {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .custom-square-box {
        max-width: 300px;
    }
}

@media (min-width: 768px) {
    .custom-square-box {
        max-width: 340px;
    }
}

@media (max-width: 768px) {

    #why-us {
        padding-top: 70px;
    }

    .custom-column {
        margin-top: 1rem;
    }

    #why-us .container-fluid .text-center {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .text-container {
        text-align: center;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
        order: 2;
    }
}

.circle-layer-one {
    position: absolute;
    inset: 0;
    border: 1px solid #377dff;
    background-color: white;
    border-radius: 9999px;
}

@media (min-width: 1024px) {
    .circle-layer-one {
        inset: -60px;
    }
}

.circle-layer-two {
    position: absolute;
    inset: 0;
    background-color: white;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(2, 1, 61, 0.5);
}

@media (min-width: 1024px) {
    .circle-layer-two {
        inset: -25px;
    }
}

.circle-layer-three {
    position: absolute;
    border: 3px solid #377dff;
    border-radius: 9999px;
    inset: 10%;
}

@media (min-width: 640px) {
    .circle-layer-three {
        inset: 12%;
    }
}

@media (min-width: 1024px) {
    .circle-layer-three {
        inset: 0;
    }
}

.circle-layer-four {
    position: absolute;
    inset: 16%;
    transform: rotate(90deg);
}

@media (min-width: 640px) {
    .circle-layer-four {
        inset: 18%;
    }
}

@media (min-width: 1024px) {
    .circle-layer-four {
        inset: 10%;
    }
}

.logo-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.logo-image {
    position: relative;
    z-index: 10;
    width: 78%;
    object-fit: contain;
}

@media (max-width: 425px) {
    .logo-image {
        width: 45% !important;
    }
}

.column-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 0;
}

@media (min-width: 1280px) {
    .column-wrapper {
        padding-left: 3rem;
    }
}

.text-block {
    text-align: center;
    order: 2;
}

@media (min-width: 640px) {
    .logo-container {
        inset: 22%;
    }

    .column-wrapper {
        gap: 2.5rem;
    }

    .text-block {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        inset: 16%;
    }

    .column-wrapper {
        width: 33.3333%;
        padding-left: 2rem;
    }

    .text-block {
        text-align: left;
        margin-left: 1rem;
    }
}

.custom-relative-order {
    position: relative;
    order: 1;
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-rotate-slow {
    animation: slow-rotate 10s linear infinite;
}



/* Screen short */
/* .image-box {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .image-box:hover {
        transform: scale(1.05); 
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    }

    .image-box img {
        transition: transform 0.3s ease;
    }

    .image-box:hover img {
        transform: scale(1.1); 
    } */

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .footer .footer-item a {
        line-height: 35px;
        color: var(#353f4f);
        transition: 0.5s;
    }


        .footer .footer-item a:hover {
            letter-spacing: 2px;
            color: #0d47a1;
        }


*/
.contact-item {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
}


.col-md-3 {
    padding-left: 15px;
    padding-right: 15px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #2b2b2c;
}
/*** copyright end ***/

/* Form */
.form-floating {
    margin-bottom: 10px;
}


.is-invalid {
    border-color: #dc3545; /* Red border for invalid fields */
}

.is-valid {
    border-color: #28a745; /* Green border for valid fields */
}
