@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background: repeat url("bg.png");
}

#intro-section h3 {
    color: #011440;

}

#intro-section p {
    color: #303f65;
}


.grid-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
    /* adjust based on actual nav height */
}

div {
    overflow: hidden;
}


/* -----------------------loder---------------------- */
#preloader {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #444cf7;
    border-color: #444cf7 transparent #444cf7 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* -----------------------endloder---------------------- */

/* ---------------------------topbar---------------------------- */
.tagline {
    font-size: 0.75rem;
    color: #303f65;
    font-weight: 500;
    margin-top: 2px;
}

.topbar-responsive {
    background: #ffffffbf;
    padding: 1rem 1.5rem;
}

.topbar-responsive .topbar-responsive-logo {
    color: #444444;
    vertical-align: middle;
}

.topbar-responsive .menu {
    background: transparent;
}

.topbar-responsive .menu li:last-of-type {
    margin-right: 0;
}

.topbar-responsive .menu a {
    color: #444444;
    transition: color 0.15s ease-in;
}

.topbar-responsive .menu a:hover {
    color: #444cf7;
}

.topbar-responsive .menu .topbar-responsive-button {
    color: #444cf7;
    border-color: #444cf7;
    border-radius: 5000px;
    transition: color 0.15s ease-in, border-color 0.15s ease-in;
}

.topbar-responsive .menu .topbar-responsive-button:hover {
    color: #444444;
    border-color: #444444;
}

.menu-icon::after {
    background: #444444;
    -webkit-box-shadow: 0 7px 0 #444444, 0 14px 0 #444444;
    box-shadow: 0 7px 0 #444444, 0 14px 0 #444444;
    content: "";
}

.menu-icon:hover::after {
    background: #444cf7;
    -webkit-box-shadow: 0 7px 0 #444cf7, 0 14px 0 #444cf7;
    box-shadow: 0 7px 0 #444cf7, 0 14px 0 #444cf7;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@media screen and (max-width: 640px) {
    .topbar-responsive-links .menu {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

.top-bar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}



/* hover From Center */
.hvr-line-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;

}

.hvr-line-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    top: -10px;
    background: #444cf7;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-line-from-center:hover:before,
.hvr-line-from-center:focus:before,
.hvr-line-from-center:active:before {
    left: 0;
    right: 0;
}

@media screen and (max-width: 39.9375em) {
    .topbar-responsive .menu a {
        padding: 0.875rem 0;
    }

    .topbar-responsive .menu .topbar-responsive-button {
        width: 100%;
        margin: 0.875rem 0;
    }

    .hvr-line-from-center {
        overflow: hidden;
    }

    .topbar-responsive {
        padding: 0.75rem;
    }

    .topbar-responsive .top-bar-title {
        position: relative;
        width: 100%;

    }

    .topbar-responsive .top-bar-title span {
        position: absolute;
        right: 0;
        border: 1px solid #444444;
        border-radius: 5px;
        padding: 0.25rem 0.45rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .topbar-responsive .top-bar-title:hover span {
        border: 1px solid #444cf7;

    }

    .topbar-responsive .top-bar-title span .menu-icon {
        margin-bottom: 4px;
    }

    .topbar-responsive-links {
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 0.5s;
        animation-duration: 0.5s;
        width: 100%;
        -webkit-animation: fadeIn 1s ease-in;
        animation: fadeIn 1s ease-in;
    }

    /* Animate topbar dropdown */
    .topbar-responsive-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }

    .topbar-responsive-links.is-open {
        max-height: 500px;
        /* enough to fit all items */
        opacity: 1;
    }

    /* Staggered fade-in effect for menu items */
    .topbar-responsive-links .menu li {
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .topbar-responsive-links.is-open .menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .topbar-responsive-links.is-open .menu li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .topbar-responsive-links.is-open .menu li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .topbar-responsive-links.is-open .menu li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .topbar-responsive-links.is-open .menu li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .topbar-responsive-links.is-open .menu li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .topbar-responsive-links.is-open .menu li:nth-child(6) {
        transition-delay: 0.6s;
    }


}

/* ------------------------end topbar-------------------------- */

/* --------------------------old slider------------------------------- */
/* Hide buttons by default */
.ecommerce-hero-slider-small .orbit-previous,
.ecommerce-hero-slider-small .orbit-next {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show only when hovering the zone */
.left-hover:hover .orbit-previous,
.right-hover:hover .orbit-next {
    opacity: 1;
    pointer-events: auto;

}

/* Optional: style buttons */
.ecommerce-hero-slider-small .orbit-previous,
.ecommerce-hero-slider-small .orbit-next {
    background: transparent;

}


.ecommerce-hero-slider-small .orbit-bullets button {
    height: 0.65rem;
    width: 0.65rem;
}

.ecommerce-hero-slider-small .hero-slider-slide {
    background-color: #303f65;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.ecommerce-hero-slider-small .hero-slider-slide-content p {
    font-size: 0.9rem;
    color: #ffffff;
}

.ecommerce-hero-slider-small .hero-slider-slide-content h3 {

    color: #ffffff;
}

.hero-slider-slide img {
    border-radius: 0.5rem;
    max-width: 200px;
}

@media screen and (min-width: 64em) {
    .hero-slider-slide .row {
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 64em) {
    .hero-slider-slide .columns:first-child {
        margin-right: 1rem;
    }
}

@media screen and (max-width: 39.9375em) {
    .hero-slider-slide .hero-img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.hidden-element {
    opacity: 0;
    transform: scale(0.5);
}

.hover-container:hover .hidden-element {
    animation: fadeInPop 0.5s ease forwards;
}

@keyframes fadeInPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* -------------------end old slider--------------------- */

/* ------------------img slider------------------------- */
.fullscreen-image-slider .orbit-image {
    width: 100%;
    height: 100vh;
}

.fullscreen-image-slider .orbit-caption {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    background: #00000078;
    text-align: center;
    color: #fefefe;
    font-weight: bold;
}

.fullscreen-image-slider .orbit-bullets {
    position: absolute;
    bottom: 20px;
    /* distance from bottom of image */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.fullscreen-image-slider .orbit-bullets button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.fullscreen-image-slider .orbit-bullets button.is-active {
    background-color: #444cf7;
}

.fullscreen-image-slider .orbit {
    position: relative;
}

/* Hover zone styles */
.hover-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    z-index: 10;
    pointer-events: auto;
}

.left-hover {
    left: 0;
}

.right-hover {
    right: 0;
}

/* Hide buttons by default */
.fullscreen-image-slider .orbit-previous,
.fullscreen-image-slider .orbit-next {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show only when hovering the zone */
.left-hover:hover .orbit-previous,
.right-hover:hover .orbit-next {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

/* Optional: style buttons */
.fullscreen-image-slider .orbit-previous,
.fullscreen-image-slider .orbit-next {
    background: transparent;

}

/* ------------------end img slider------------------------- */

/* -------------------Service-section--------------- */
.flip-card {
    background-color: transparent;
    width: 500px;
    height: 250px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */


}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    overflow: visible;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-back {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    border-radius: 0.5rem;

    /* Center content */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Add space inside */
    padding: 1rem;
    /* Adjust as needed */

    text-align: start;
    text-indent: 1.5rem;

}

.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    -webkit-backface-visibility: hidden;
    /* Safari */
    border: 1px solid #e5e7eb;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #ffffff;
    color: #444444;
}

/* Style the back side */
.flip-card-back {
    background-color: #303f65;
    color: white;
    transform: rotateY(180deg);

}

.flip-card-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: transparent;
    color: #ffffff;
    padding: 3rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.flip-card-back .fa-arrow-pointer {
    animation: clickPulse 1.2s infinite;
    transform-origin: bottom left;
}

@keyframes clickPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(0.9) rotate(-10deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
    }

    75% {
        transform: scale(0.9) rotate(-10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.particle-burst {
    position: absolute;
    left: 40px;
    top: 35px;
    width: 0;
    height: 0;
    z-index: 1;
    animation: burst 0.65s infinite;
}

@keyframes burst {
    0% {
        box-shadow:
            0 0 0 0 #444cf7,
            0 0 0 0 #ffffff,
            0 0 0 0 #8a8a8a;
        opacity: 1;
    }

    50% {
        box-shadow:
            -10px -10px 0 2px #444cf7,
            10px -10px 0 2px #ffffff,
            0 12px 0 2px #8a8a8a;
        opacity: 0.8;
    }

    100% {
        box-shadow:
            -15px -15px 0 0 #444cf7,
            15px -15px 0 0 #ffffff,
            0 20px 0 0 #8a8a8a;
        opacity: 0;
    }
}



/* -------------------end Service-section--------------- */


/* ------------------portfolio---------------------- */
/* using mocassin.css */
#portfolio .mc-item__caption {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

#portfolio .fa-fade {
    color: #444cf7;
}

/* ------------------ end portfolio---------------------- */

/* ---------------------about us------------------------ */
#aboutus {
    background-color: #303f65;
}

#aboutus img {
    max-width: 100px;

}

#aboutus h4 {
    padding-top: 2rem;
    color: #ffffff;
}

#aboutus p {
    color: #e5e7eb;
}

.quote-icon {
    font-size: 3rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    display: block;
}

/* ---------------------end about us------------------------ */

/* ----------------------partner---------------------------- */
.partner-logos img {
    width: 100%;
    max-width: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.partner-logos a:hover img {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}


.partner-logos {
    overflow: visible;
}

.partner-logos div {
    overflow: visible;
}

.cat p {
    color: #303f65;
    font-size: 16px;
}

.cat .button-81,
.cat a {
    font-size: 16px;
}

.cat h5 {
    color: #303f65;
    
}

/* ----------------------end partner---------------------------- */

/* -----------------------contact-------------------------- */
#contact {
    padding-left: 3rem;
    padding-right: 3rem;
}

#contact *,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#contact .background {
    display: flex;
    min-height: 100vh;
}

#contact .container {
    flex: 0 1 700px;
    margin: auto;
    padding: 10px;
}

#contact .screen {
    position: relative;
    background: #011440;
    border-radius: 15px;
}

#contact .screen:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-radius: 15px;
    z-index: -1;
}


#contact .app-title {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #444cf7;
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
}

#contact .app-title:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 25px;
    height: 4px;
    background: #444cf7;
}

#contact .gmap {
    width: 90%;
    height: 330px;
}

#contact .app-contact {
    margin-top: 1rem;
    color: #ddd;
}

#contact .app-form h4 {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #444cf7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
    padding-top: 2rem;
}

#contact .app-form p {
    color: #ddd;
}


#contact .app-form-group {
    margin-bottom: 15px;
}

#contact .app-form-group.message {
    margin-top: 40px;
}

#contact .app-form-group.buttons {
    margin-bottom: 0;
    text-align: right;
}

#contact .app-form-control {
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #666;
    color: #ddd;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

#contact .app-form-control::placeholder {
    color: #666;
}

#contact .app-form-control:focus {
    border-bottom-color: #444cf7;
}

#contact .app-form-button {
    background: none;
    border: none;
    color: #444cf7;
    font-size: 20px;
    cursor: pointer;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.4px;
}

#contact .app-form-button:hover {
    color: #333dff;
}

.g-recaptcha {
    overflow: visible !important;
    width: 100% !important;
    min-width: 304px;
}

.recaptcha-container,
.app-form-group {
    overflow: visible !important;
}




@media screen and (max-width: 520px) {
    #contact {
        padding-left: 0;
        padding-right: 0;
    }

    #contact .screen-body {
        flex-direction: column;
    }

    #contact .screen-body-item.left {
        margin-bottom: 30px;
    }

    #contact .app-title {
        flex-direction: row;
    }

    #contact .app-title span {
        margin-right: 12px;
    }

    #contact .app-title:after {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    #contact .screen-body {
        padding: 40px;
    }

    #contact .screen-body-item {
        padding: 0;
    }
}

.app-form input:focus,
.app-form textarea:focus,
.app-form button:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.g-recaptcha {
  margin-top: 1rem;
  margin-bottom: 1rem;
  transform: scale(1.05);
  transform-origin: 0 0;
}

.form-error.is-visible {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

#recaptcha-message {
    display: none;
    color: red;
    margin-top: 10px;
}



/* -----------------------end contact-------------------------- */

/* -------------------------footer------------------------------ */
#footer footer {
    background-color: #011440;
}

#footer h5 {
    letter-spacing: 2px;
    color: #ffffff;
}

#footer a {
    color: #ddd;
}

#footer p {
    color: #ddd;
}

#footer li {
    color: #444cf7;
}

.cp-right {
    background-color: rgba(0, 0, 0, 0.2);
    color: #ddd;
}

.cp-right a {
    color: #333dff;
    font-size: 12px;
}

.cp-right p {
    color: #333dff;
    font-size: 12px;
}

#footer tbody{
    background-color: rgba(255, 255, 255, 0.082);
    border: none;

}

#footer tr{
    background-color: transparent;
    color: #ffffff;
}

/* -------------------------footer------------------------------ */


/* button */
.button-81 {
    background-color: #e5e7eb;
    border: 0 solid #444cf7;
    border-radius: 1.5rem;
    box-sizing: border-box;
    color: #0d172a;
    cursor: pointer;
    display: inline-block;
    font-family: "Basier circle", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none #0d172a solid;
    text-decoration-thickness: auto;
    transition: all .1s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0px 2px 4px rgba(166, 175, 195, 0.25);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    padding: 1rem 2rem;
}

.button-81:hover {
    background-color: #011440;
    color: #fff;
}

@media (min-width: 768px) {
    .button-81 {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
}

/* --------------------------accordion------------------------------ */
.accordion {
    background: transparent;
}

.accordion details {
    margin: 25px;
    font-size: 18px;
}

.accordion details>* {
    padding: 1.25rem;
}

.accordion details>div {
    background: #e5e7eb;
    border-radius: 5px;
}

.accordion summary {
    border-radius: 5px;
    font-size: 20px;
    font-family: sans-serif;
    font-weight: bold;
    color: #444444;
    background: #e5e7eb;
    cursor: pointer;
    position: relative;
    transition: 1s;
    text-indent: 0px;
    padding: 1rem 2.5rem 1rem 1rem;
    /* left padding makes space for icon */

}

.accordion summary::marker {
    content: "";
}

.accordion summary::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background:
        conic-gradient(from 90deg at 26% 26%, #0000 90deg, #fff 0) 100% 100% / 58% 58%;
    clip-path: inset(1px);
    transition: transform 1s;
}


.accordion details[open] summary::before {
    transform: translateY(-50%) rotate(45deg);
}


.accordion details[open] summary {
    border-radius: 5px 5px 0 0;
    background: #011440;
    color: #ffffff;
    text-indent: 1rem;
}

@media (max-width: 768px) {

    /* Hide the icon on small screens */
    .accordion summary::before {
        display: none;
    }

    /* Remove text-indent animation and reset indent */
    .accordion summary {
        text-indent: 0 !important;
        transition: none !important;
    }

    .accordion details[open] summary {
        text-indent: 0 !important;
        transition: none !important;
    }
}

.accordion img {
    max-width: 500px;
}

/* ----------------------------------end accordion------------------------ */

/* policy */
.policy-status {
    color: #303f65;
}

/* end policy */

/* HTML: <div class="loader"></div> */
.loader {
    width: 80px;
    height: 40px;
    color: #000;
    border: 2px solid currentColor;
    border-right-color: transparent;
    padding: 3px;
    background:
        repeating-linear-gradient(90deg, currentColor 0 10px, #0000 0 15px) 0/0% no-repeat content-box content-box;
    position: relative;
    box-sizing: border-box;
    animation: l5 2s infinite steps(6);
}

.loader::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: 100%;
    width: 10px;
    background:
        linear-gradient(#0000 calc(50% - 7px), currentColor 0 calc(50% - 5px),
            #0000 0 calc(50% + 5px), currentColor 0 calc(50% + 7px), #0000 0) left /100% 100%,
        linear-gradient(currentColor calc(50% - 5px), #0000 0 calc(50% + 5px), currentColor 0) left /2px 100%,
        linear-gradient(#0000 calc(50% - 5px), currentColor 0 calc(50% + 5px), #0000 0) right/2px 100%;
    background-repeat: no-repeat;
}

@keyframes l5 {
    100% {
        background-size: 120%
    }
}

.section-block {
    border-top: 1px solid #ccc;
}