:root {
  --color-black: #000000;
}

body {
    font-weight: 500;
    margin: 0;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.custom-page-container {
    min-height: 100vh; 
    font-family: "Inter", sans-serif 
}
button {
    font-family: "Inter", sans-serif; 
}
h1,h2,h3,h4 {
margin: 0;
}
*, :before, :after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.custom-title {

}
.custom-title-highlight {
    
}
/*Header Css */
.custom-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px -4px hsla(217, 91%, 18%, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.custom-container {
    max-width: 1580px;
    margin: 0 auto;
    padding: 6px 2rem;
    box-sizing: border-box;
}

.custom-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    @media (max-width: 1024px) {
        position: relative;
    }
}

.custom-logo a {
    line-height: normal;
    font-weight: 700;
    color: #042458;
    text-decoration: none;
    display: flex;
}


.custom-menu-desktop {
    display: none;
    &.open {
        display: block;
        position: absolute;
        top: 64px;
        background: #ffffff;
        width: 100vw;
        margin-left: -32px;
        padding: 0 20px;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 20px -4px rgb(4 36 88 / 10%);
    }
}

@media (min-width: 1024px) {
    .custom-menu-desktop {
        display: block;
    }
}

/*Slider CSS*/
.custom-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.custom-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.custom-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.custom-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Arrow Buttons */
.custom-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 2;
    user-select: none;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    display: flex;
    border-radius: 50px;
    box-shadow: 0 3.75px 3.75px 0 rgba(0, 0, 0, .25);
}

.custom-carousel-prev {
    left: 10px;
}

.custom-carousel-next {
    right: 10px;
}

/*End Slider CSS*/


.custom-menu-buttons {
    display: flex;
    gap: 1rem;
    @media (max-width: 1024px) {
        flex-direction: column;
        gap: 8px;
        padding-block: 12px;
    }
}

.custom-button {
    color: var(--color-black);
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;

    @media (max-width: 1024px) {
        font-size: 16px;
    }
}

.custom-button:hover {
    color: #042458; 
}

.custom-menu-mobile {
    display: block;
}

@media (min-width: 1024px) {
    .custom-menu-mobile {
        display: none;
    }
}

.custom-mobile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.custom-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.custom-mobile-button .mobile-close-icon {
    height: 40px;
    width: 40px;
    background: #0077ff;
    color: #fff;
    border-radius: 10px;
}
@media (max-width: 1024px) {
    .custom-mobile-button .custom-icon.close {
        display: none;
    }
    .custom-mobile-button .mobile-close-icon.close {
        display: none;
    }
}



/*Section 1 CSS*/
.custom-section {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .custom-section {
        gap: 1.75rem;
        position: relative;
        top: 75px;
    }
    .custom-section .custom-content-left {
        padding: 0px;
        display: block;
    }
    .custom-section .custom-content-inner {
            position: absolute;
            width: 100%;
            height: 100%;
            max-width: 100%;
    }
    .custom-stat-left-content {
        max-width: 1580px;
        margin: 0 auto;
        padding: 0 32px;
        height: 100%;
    }
    .custom-info-left-wrapper {
        max-width: 530px;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }
    .custom-page-container .custom-capabilities-section {
        margin-top: 80px;
    }
}

@media (max-width: 1200px) {
    .custom-section {
        justify-content: space-between;
    }
}
@media (min-width: 1024px) {
    .custom-section {
        flex-direction: row;
        min-height: 92vh;
    }
}

.custom-content-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 2rem;
    padding-top: 90px;
    padding-bottom: 2rem;
    order: 2;
    box-sizing: border-box;

    @media (min-width: 1200px) {
        padding: 4rem;
    }
}
@media (min-width: 1024px) {
    .custom-content-left {
        width: 50%;
        order: 1;
    }
}

.custom-content-inner {
    max-width: 576px;
    width: 100%;
}

.custom-title-inner {
    font-size: 2.25rem;
    color: #21242c;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-family: 'Satoshi Light';
    font-weight: 300;
}

@media (min-width: 1024px) {
    .custom-title-inner {
        font-size: 3.75rem;
    }
}

.custom-title-highlight {
    display: block;
    font-family: 'Satoshi bold';
}

.custom-paragraph {
    font-size: 1.125rem;
    color: #6c727f;
    margin-bottom: 2rem;
    line-height: 1.75rem;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .custom-paragraph {
        font-size: 1.25rem;
    }
}

.custom-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .custom-buttons {
        flex-direction: row;
    }
}

.custom-button-primary,
.custom-button-secondary {
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px -4px rgb(4 36 88 / 10%);
    font-weight: 400;
    font-family: 'Satoshi Regular';
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 12px;
    white-space: nowrap;
    gap: .5rem;
    justify-content: center;
    align-items: center; 
    transform: translate(0, 0) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
    height: 3.5rem;
    display: inline-flex;
    cursor: pointer;
    text-decoration: none;

}

.custom-button-primary {
    background-color: #fff;
    color: #21242c;
    border: 1px solid #21242c;
    font-family: 'Satoshi Regular';
    font-weight: 400;
}

.custom-button-primary:hover {
    .custom-button-icon {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
}

.custom-button-secondary {
    border: 1px solid var(--color-black);
    background: transparent;
    color: var(--color-black);
}

.custom-button-secondary:hover {
    .custom-button-icon-2 {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
}

.custom-button-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition-duration: .15s;
    transition: transform .5s ease, -webkit-transform .5s ease;
}
.custom-button-icon-2 {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    transition-duration: .15s;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.custom-stat {
    text-align: center;
}

.custom-stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #042458;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .custom-stat-number {
        font-size: 2.25rem;
    }
}

.custom-stat-label {
    font-size: 0.875rem;
    color: #6c727f;
}

.custom-content-right {
    width: 100%;
    position: relative;
    order: 1;
    overflow: hidden;
    background-color: rgb(244 244 246 / 30%);
}

@media (min-width: 1200px) {
    .custom-content-right {
        width: 50%;
    }
}
@media (max-width: 1200px) {
    .custom-content-right {
        width: 45%;
        order: 2;
    }
}

.custom-image-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-center-image {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    @media (min-width: 1200px) {
        left: 50%;
        right: auto;
    }
}

.custom-image-large {
    width: 13rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 60px -10px rgb(4 36 88 / 25%);
    display: block;
    vertical-align: middle;
    @media (min-width: 1200px) {
        width: 20rem;
        height: 15rem;
    }
}

.custom-top-right-image {
    position: absolute;
    top: 8rem;
    right: 0;
    animation: float 4s ease-in-out infinite 1s;
    @media (min-width: 1200px) {
        right: 5rem;
    }
}

.custom-bottom-left-image {
    position: absolute;
    bottom: 6rem;
    left: 4rem;
    animation: float 5s ease-in-out infinite 2s;
}

.custom-top-left-image {
    position: absolute;
    top: 7rem;
    left: 5rem;
    animation: float 7s ease-in-out infinite 3s;
}

.custom-image-opacity-75 {
    opacity: .75;
    box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
    object-fit: cover;
    border-radius: 12px;
    width: 14rem;
    height: 10rem;
    display: block;
    vertical-align: middle;
}

.custom-image-medium {
    width: 12rem;
    height: 9rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
    opacity: .8;
    display: block;
    vertical-align: middle;
}
.custom-image-left-image {
    box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
    opacity: .8;
    object-fit: cover;
    border-radius: .75rem;
    width: 13rem;
    height: 9rem;
    display: block;
    vertical-align: middle;
    @media (min-width: 1200px) {
        width: 14rem;
        height: 10rem;
    }
}
.custom-opacity-80 {
    opacity: 0.8;
}

.custom-opacity-75 {
    opacity: 0.75;
}

.custom-floating-circle-primary {
    position: absolute;
    top: 8rem;
    left: 8rem;
    width: 6rem;
    height: 6rem;
    background-color: rgb(4 36 88 / 20%);
    border-radius: 9999px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.custom-floating-circle-accent {
    position: absolute;
    bottom: 8rem;
    right: 8rem;
    width: 4rem;
    height: 4rem;
    background-color: rgb(0 119 255 / 30%);
    border-radius: 9999px;
    animation: float 4s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



/*Section 2 START CSS*/

.custom-capabilities-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(220, 9%, 98%) 100%);
}

.custom-capabilities-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .custom-capabilities-container {
        padding-left: 1.5rem; 
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .custom-capabilities-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.custom-capabilities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.custom-capabilities-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #21242c;
    font-family: 'Satoshi Light';
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .custom-capabilities-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.custom-capabilities-highlight {
    display: inline-block;
    font-family: 'Satoshi Bold';
}

.custom-capabilities-description {
    font-size: 1.25rem;
    color: #6c727f;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 400;
}

.custom-capability-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .custom-capability-item {
        flex-direction: row;
        gap: 4rem;
    }
}

.custom-capability-image-wrapper {
    flex: 1 1 0%;
}

.custom-capability-content {
    flex: 1 1 0%;
}
.custom-image-capability {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    /*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);*/ 
    display: flex;
}
.custom-capability-image {
    width: 100%;
    height: 24rem; /* Equivalent to h-96 */
    object-fit: cover;
    transition: transform 0.7s ease;
}

.custom-image-capability:hover img {
    transform: scale(1.10);
}

.custom-image-capability:hover .custom-capability-image-overlay {
    background-color: rgb(4 36 88 / 10%);
}

.custom-capability-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(4 36 88 / 20%);
    transition: background-color 0.3s ease;
}
.custom-capability-icon-title {
    display: flex;
    align-items: center;
}

.custom-capability-icon {
    padding: 0;
    border-radius: .75rem;

}
.custom-capability-svg-icon {
    color: #042458;
    width: 2rem;
    height: 2rem;
    display: block;
    vertical-align: middle;
}

.custom-capability-subtitle {
    color: #21242c;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-left: 20px;
}

.custom-capability-text {
    margin-top: 24px;
    color: #6c727f;
    line-height : 1.625;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0;
}
.custom-capability-features {
    margin-top: 24px;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    display: block;
}
.custom-feature-item {
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.custom-feature-bullet {
    background-color: #363636;
    border-radius: 9999px;
    width: .5rem;
    height: .5rem;
}

.custom-feature-text {
    color: #21242c;
    font-weight: 500;
    margin-left: 12px;
    line-height: 24px;
}
.custom-capability-button {
    margin-top: 20px;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 0.3s;
    animation-duration: 0.3s;
    box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2px;
    background-color: #042458;
    border-radius: 12px;
    white-space: nowrap;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    height: 3rem;
    display: inline-flex;
    cursor: pointer;
    text-decoration: none;
    font-family: "Satoshi Regular";
}

.custom-capability-button:hover {
}

.custom-capability-button:hover .custom-button-icon {
    transform: translateX(0.25rem);
}


.custom-capability-right {
    gap: 3rem;
    align-items: center;
    flex-direction: column;
    display: flex;
    margin-top: 80px;

}
@media (min-width: 1024px) {
    .custom-capability-right {
        gap: 4rem;
        flex-direction: row-reverse;
    }
}


/*Section 3 CSS*/
.custom-markets-section {
    padding: 5rem 0;
    background-color: #ffffff;
}


.custom-markets-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .custom-markets-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .custom-markets-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.custom-markets-header {
    text-align: center;
    margin-bottom: 4rem;

}

.custom-markets-title {
    font-size: 2.25rem; 
    font-family: 'Satoshi Light';
    font-weight: 300;
    color: #21242c;
    margin-bottom: 1.5rem; 
    .custom-markets-highlight {
        font-family: 'Satoshi Bold';
        font-weight: 700;
    }
}

.custom-markets-description {
    color: #6c727f;
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto; 
    font-weight: 400;
}

@media (min-width: 768px) {
    .custom-markets-title {
        font-size: 3rem;
    }
}

.custom-markets-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    .custom-market-card {
        animation-duration: .3s;
        transition-duration: .3s;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
        padding: 2rem;
        border: 1px solid #e5e7eb;
        border-radius: 1rem;
        box-shadow: 0 4px 20px -4px rgb(4 36 88 / 10%);
        display: flex;
        flex-direction: column;
    	position: relative;
    	.coming-soon {
            position: absolute;
            top: -15px;
            right: -11px;
            color: #fff;
            border-radius: 6px;
            text-transform: uppercase;
            transform: rotate(90deg);
            @media (max-width: 1024px) {
               font-size: 14px;
            }
          }
        @media (max-width: 1024px) {
            padding: 1rem;
        }
        &:hover{
            box-shadow: 0 20px 60px -10px rgb(4 36 88 / 25%);
            transform: translateY(-0.5rem);
            .custom-explore-button {
                .custom-button-icon {
                    transform: translateX(0.25rem);
                }
            }
        }
        .custom-icon-wrapper {
            margin-bottom: 1.5rem;
            .custom-icon-bg {
                padding: 1rem;
                background-color: #042458;
                border-radius: .75rem;
                display: inline-flex;
                .custom-icon-svg {
                    color: #ffffff;
                    width: 2rem;
                    height: 2rem;
                    display: block;
                    vertical-align: middle;
                }
            }
        }
    }
}

@media (min-width: 768px) {
    .custom-markets-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.custom-market-title {
    font-size: 1.5rem;
    line-height : 2rem;
    color: #21242c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.custom-market-text {
    color: #6c727f;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.custom-key-apps {
    margin-bottom: 1.5rem;
    h4 {
        color: #21242c;
        font-weight: 400;
        letter-spacing: .025em;
        text-transform : uppercase;
        font-weight: 600;
        font-size: .875rem;
        line-height: 1.25rem;
        margin-bottom: .75rem;
    }
}

.custom-apps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    li {
        align-items: center;
        display: flex;
        margin-top: 8px;
        &:first-child {
            margin-top: 0;
        }
        .custom-bullet {
            width: .375rem;
            height: .375rem;
            background-color: #0077ff;
            border-radius: 9999px;
            max-width: 6px;
            min-width: 6px;
        }
        span {
            color: #6c727f;
            margin-left: 12px;
            font-size: .875rem;
            line-height: 1.25rem;
            font-weight: 400;
        }
    }
}

.custom-explore-button {
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px -4px rgb(4 36 88 / 10%);
    color: var(--color-black);
    font-weight: 400;
    font-family: 'Satoshi Regular';
    font-size: .875rem;
    line-height: 1.25rem;
    padding-left: .75rem;
    padding-right: .75rem;
    border:1px solid; var(--color-black);
    border-radius: 10px;
    white-space: nowrap;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2.25rem;
    display: inline-flex;
    cursor: pointer;
    background-color: transparent;
    background-image: none;
    text-decoration: none;
    margin-top: auto;
    &:hover {
        .custom-arrow-icon {
            transform: translateX(0.25rem);
        }
    }
    .custom-arrow-icon {
        flex-shrink: 0;
        pointer-events: none;
        transition-property: transform;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
        transition-duration: .15s;
        margin-left: .5rem;
        display : block;
        vertical-align: middle;
    }
}

.custom-call-to-action {
    margin-top: 4rem;
    text-align: center;
    color: #fff;
    .custom-cta-box {
        text-align: center;
        padding: 2rem;
        background-image: linear-gradient(135deg, #0077ff 0%, #042458 100%);
        border-radius: 1rem;
        @media (min-width: 768px) {
            padding: 3rem;
        }
        .custom-cta-title {
            font-weight: 700;
            font-size: 1.875rem;
            line-height: 2.25rem;
            margin-bottom: 1rem;
        }
        .custom-cta-text {
            font-size: 1.25rem;
            line-height: 1.75rem;
            color: rgb(255 255 255 / 90%);
            max-width: 42rem;
            margin-bottom: 2rem;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        .custom-cta-button {
            animation-duration: .3s;
            transition-duration: .3s;
            transition-property: all;
            transition-timing-function: cubic-bezier(.4,0,.2,1);
            color: #000;
            font-size: 1.125rem;
            line-height: 1.75rem;
            padding-left: 2.5rem;
            padding-right: 2.5rem;
            background-color: #ffffff;
            border-radius: 12px;
            white-space: nowrap;
            gap: .5rem;
            justify-content: center;
            align-items: center;
            height: 3.5rem;
            display: inline-flex;
            cursor: pointer;
            font-family: 'Satoshi Regular';
            &:hover {
                .custom-button-icon {
                    transform: translateX(0.25rem);
                }
            }
            @media (max-width: 640px) {
                padding-inline: 1rem;
                font-size: 1rem;
            }
        }
    }
}



/*Section 4 CSS*/
.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: linear-gradient(180deg, #ffffff 0%, #f9fafa 100%);
    .about-container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
        @media (min-width: 640px) {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        @media (min-width: 1024px) {
            padding-left: 2rem;
            padding-right: 2rem;
        }
        .about-header {
            text-align: center;
            margin-bottom: 4rem;
            .about-title {
                color: #21242c;
                font-weight: 300;
                font-family: 'Satoshi Light';
                font-size: 2.25rem;
                line-height: 2.5rem;
                margin-bottom: 1.5rem;
                @media (min-width: 768px) {
                    font-size: 3rem;
                    line-height: 1;
                }
                .highlight-primary {
                    font-weight: 700;
                    font-family: 'Satoshi Bold';
                }
            }
            .about-subtitle {
                color: #6c727f;
                font-size: 1.25rem;
                line-height: 1.75rem;
                max-width: 48rem;
                margin-left: auto;
                margin-right: auto;
                font-weight: 400;
            }
        }
        .about-content {
            gap: 4rem;
            align-items: center;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            display: grid;
            margin-bottom: 5rem;
            @media (min-width: 1024px) {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .about-text {
                .about-heading {
                    color: #21242c;
                    font-weight: 700;
                    font-size: 1.875rem;
                    line-height: 2.25rem;
                }
                .about-paragraphs {
                    margin-top: 24px;
                    color: #6c727f;
                    font-weight: 400;
                    p {
                        font-size: 1.125rem;
                        line-height: 1.625;
                    }
                }
            }
            .about-stats {
                gap: 2rem;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                display: grid;

                .stat-card {
                    box-shadow: 0 4px 20px -4px rgb(4 36 88 / 10%);
                    text-align: center;
                    padding: 1.5rem;
                    background-color: #ffffff;
                    border-radius: .75rem;

                    .stat-number {
                        color: #042458;
                        font-weight: 700;
                        font-size: 2.25rem;
                        line-height: 2.5rem;
                        margin-bottom: .5rem;
                    }
                    .stat-label {
                        color: #6c727f;
                        font-weight: 400;
                    }
                }
            }
        }
        .core-values {
            .core-title {
                color: #21242c;
                font-weight: 700;
                font-size: 1.875rem;
                line-height: 2.25rem;
                text-align: center;
                margin-bottom: 3rem;
            }
            .core-cards {
                gap: 2rem;
                grid-template-columns: repeat(1, minmax(0, 1fr));
                display: grid;


                @media (min-width: 768px) {
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                }

                @media (min-width: 1024px) {
                    grid-template-columns: repeat(4, minmax(0, 1fr));
                }

                .core-card {
                    animation-duration: .3s;
                    transition-duration: .3s;
                    transition-property: all;
                    transition-timing-function: cubic-bezier(.4,0,.2,1);
                    box-shadow: 0 4px 20px -4px rgb(4 36 88 / 10%);
                    text-align: center;
                    padding: 1.5rem;
                    background-color: #ffffff;
                    border-radius: .75rem;
                    &:hover {
                        box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
                        .core-icon {
                            transform: scale(1.1);
                        }
                    }
                    .core-icon {
                        animation-duration: .3s;
                        transition-duration: .3s;
                        transition-property: transform;
                        transition-timing-function: cubic-bezier(.4,0,.2,1);
                        padding: 1rem;
                        background-color: #042458;
                        border-radius: .75rem;
                        display: inline-flex;
                        margin-bottom: 1rem;
                        .custom-icon-svg {
                            width: 2rem;
                            height: 2rem;
                            display: block;
                            vertical-align: middle;
                            color: #ffffff;
                        }
                    }
                    .core-name {
                        color: #21242c;
                        font-weight: 700;
                        font-size: 1.25rem;
                        line-height: 1.75rem;
                        margin-bottom: .75rem;
                    }
                    p {
                        font-weight: 400;
                        color: #6c727f;
                        line-height: 24px;
                        margin-top: 12px;
                        margin-bottom: 0;
                    }
                }
            }
        }
    }
}

/*Section 5 CSS*/

.contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
    .contact-container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
        @media (min-width: 640px) {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        @media (min-width: 1024px) {
            padding-left: 2rem;
            padding-right: 2rem;
        }
        .contact-header {
            text-align: center;
            margin-bottom: 4rem;
            .contact-title {
                color: #21242c;
                font-weight: 300;
                font-family: 'Satoshi Light';
                font-size: 2.25rem;
                line-height: 2.5rem;
                margin-bottom: 1.5rem;
                @media (min-width: 768px) {
                    font-size: 3rem;
                    line-height: 1;
                }
                .contact-title-highlight {
                    font-weight: 700;
                    font-family: 'Satoshi Bold';
                }
            }
            .contact-subtitle {
                color: #6c727f;
                font-size: 1.25rem;
                line-height: 1.75rem;
                max-width: 48rem;
                margin-left: auto;
                margin-right: auto;
                font-weight: 400;
            }
        }
        .contact-grid {
            gap: 4rem;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            display: grid;
            @media (min-width: 1024px) {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .contact-form-section {
                .contact-form-header {
                    .contact-form-title {
                        color: #21242c;
                        font-weight: 700;
                        font-size: 1.5rem;
                        line-height: 2rem;
                        margin-bottom: 1rem;
                    }
                    .contact-form-text {
                        color: #6c727f;
                        font-weight: 400;
                        margin-bottom: 2rem
                    }
                }
                .contact-form-card {
                    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
                    color: #21242c;
                    padding: 2rem;
                    border: 1px solid #e5e7eb;
                    border-radius: 12px;
                    margin-top: 32px;
                    .contact-form {
                        .contact-form-row {
                            gap: 1.5rem;
                            grid-template-columns: repeat(1, minmax(0, 1fr));
                            display: grid;
                            @media (min-width: 768px) {
                                grid-template-columns: repeat(2, minmax(0, 1fr));
                            }
                        }

                        .contact-form-field {
                            margin-top: 24px;
                            font-family: 'Inter', sans-serif;
                            &:first-child {
                                margin-top: 0;
                            }
                            &.contact-form-field-row {
                                margin-top: 0;
                            }
                            label {
                                color: #21242c;
                                font-size: .875rem;
                                line-height: 1.25rem;
                                display: block;
                                margin-bottom: .5rem;
                            }
                            input, 
                            select,
                            textarea   {
                                font-size: 1rem;
                                line-height: 1.5rem;
                                padding: .5rem .75rem;
                                border: 1px solid #e5e7eb;
                                border-radius: 10px;
                                width: 100%;
                                height: 3rem;
                                display: flex;
                                &:focus-visible {
                                  outline: 2px solid transparent;
                                  outline-offset: 2px;
                                  --ring-offset-width: 2px;
                                  --ring-color: #042458;
                                  box-shadow: 
                                    0 0 0 var(--ring-offset-width) #fff,0 0 0 calc(2px + var(--ring-offset-width)) var(--ring-color);
                                }

                                @media (min-width: 768px) {
                                    font-size: .875rem;
                                    line-height: 1.25rem;
                                }
                            }
                            select {
                                color: #21242c;
                                background-color: #ffffff;
                            }
                            textarea {
                                min-height: 120px;
                                display: flex;
                                font-family: 'Inter', sans-serif;

                            }
                        }
                    }
                }
            }
        }
    }
    .contact-form-btn {
        margin-top: 24px;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
        transition-duration: 0.3s;
        animation-duration: 0.3s;
        box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
        color: #ffffff;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
        background-color: #042458;
        border-radius: 12px;
        white-space: nowrap;
        gap: .5rem;
        justify-content: center;
        align-items: center;
        height: 3rem;
        display: inline-flex;
        cursor: pointer;
        text-decoration: none;
        width: 100%;
        &:hover {
            .custom-button-icon {
                transform: translateX(0.25rem);
            }
        }
        .custom-button-icon {
            margin-right: 8px;
        }
    }
    .contact-info-section {
        .contact-info-header {
            .contact-info-title {
                color: #21242c;
                font-weight: 700;
                font-size: 1.5rem;
                line-height: 2rem;
                margin-bottom: 1rem;
            }
            .contact-info-text {
                color: #6c727f;
                font-weight: 400;
                margin-bottom: 2rem;
            }
        }
        .contact-info-cards {
            margin-top: 32px;
            .contact-card {
                animation-duration: .3s;
                transition-duration: .3s;
                transition-property: all;
                transition-timing-function: cubic-bezier(.4,0,.2,1);
                box-shadow: 0 4px 20px -4px hsl(217 91% 18% / .1);
                color: #21242c;
                padding: 1.5rem;
                background-color: #ffffff;
                border: 1px solid #e5e7eb;
                border-radius: 12px;
                display: flex;
                align-items: flex-start;
                margin-top: 24px;
                &:hover {
                    box-shadow: 0 8px 40px -8px rgb(4 36 88 / 15%);
                }
                &:first-child {
                    margin-top: 0;
                }

                .contact-card-icon {
                    animation-duration: .3s;
                    transition-duration: .3s;
                    transition-property: transform;
                    transition-timing-function: cubic-bezier(.4,0,.2,1);
                    padding: 12px;
                    background-color: #042458;
                    border-radius: .75rem;
                    display: inline-flex;
                    margin-bottom: 1rem;
                    .custom-icon-svg {
                        width: 1.5rem;
                        height: 1.5rem;
                        display: block;
                        vertical-align: middle;
                        color: #ffffff;
                    }
                }
                h4 {
                    color: #21242c;
                    font-weight: 600;
                    font-size: 1.125rem;
                    line-height: 1.75rem;
                    margin-bottom: .5rem;
                }
                p {
                    color: #6c727f;
                    font-weight: 400;
                    margin-top: 4px;
                    line-height: 24px;
                    margin-bottom: 0;

                    a {
                        color: #6c727f;
                        text-decoration: none;
                    }
                }
                .contact-info {
                    margin-left: 16px;
                    a {
                        word-break: break-all;
                    }
                }
            }
        }
    }
    .contact-urgent-card {
        margin-top: 32px;
        box-shadow: 0 20px 60px -10px rgb(4 36 88 / 25%);
        color: #ffffff;
        padding: 2rem;
        background-image: linear-gradient(135deg, #0077ff 0%, #042458 100%);
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        h4 {
            font-weight: 700;
            font-size: 1.25rem;
            line-height: 1.75rem;
            margin-bottom: 1rem;

        }
        p {
            margin-bottom: 1.5rem;
            font-weight: 400;
            color: rgb(255 255 255 / 90%);
        }
        .contact-urgent-btn {
            animation-duration: .3s;
            transition-duration: .3s;
            transition-property: all;
            transition-timing-function: cubic-bezier(.4,0,.2,1);
            color: var(--color-black);
            font-weight: 400;
            font-family: 'Satoshi Regular';
            font-size: 1rem;
            line-height: 1.5rem;
            padding-left: 2rem;
            padding-right: 2rem;
            background-color: #ffffff;
            border-radius: 12px;
            white-space: nowrap;
            gap: .5rem;
            justify-content: center;
            align-items: center;
            height: 3rem;
            display: inline-flex;
            cursor: pointer;
            transform: translate(0, 0) rotate(0) skew(0) skewY(0) scaleX(1) scaleY(1);
            text-decoration: none;
            @media (max-width: 640px) {
                font-size: 14px;
                padding-inline: 1rem;
            }
            &:hover {
                .lucide-phone {
                    transform: translateX(0.25rem);
                }
            }
            a {
                text-decoration: none;
                color: #042458;
            }
            .lucide-phone {
                width: 1rem;
                height: 1rem;
                pointer-events: none;
                display: block;
                vertical-align: middle;
                margin-right: .5rem;
                transition: transform .5s ease, -webkit-transform .5s ease;
            }
        }
    }
}


/*Footer CSS*/
* {
    padding: 0;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}
footer {
    font-weight: 400;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.ml-4 {
    margin-left: 16px;
}
.ml-6 {
margin-left: 24px;
}
.no-underline {
    text-decoration: none;
}
.footer-main {
    background-color: #042458;
}
.footer-main .container .container-main {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
    color: #ffffffcc;
    font-size: 14px;
}
.footer-main .container .container-block {
    padding: 64px 32px;
}
.footer-main .container .container-main h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
}
.footer-main .footer-blk1 .footer-description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;

}

.footer-main .footer-blk1 {
    grid-column: span 2 / span 2;
}
.footer-main .footer-details {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.footer-main .footer-details span {
 margin-left: 12px;
 color: #ffffff;
 line-height: 20px;
 a {
    color: #ffffff;
    text-decoration: none;
 }
}
.footer-main .footer-blk h4,
.subscribe-main h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}
.footer-main .footer-blk a {
    color: #ffffffcc;
    display: block;
    margin-top: 12px;
    line-height: 24px;
    transition: .2s all;
}
.footer-main .footer-blk a:hover,
.footer-main .copyright-link a:hover {
    color: #0077ff;
}
.footer-main .footer-blk1 .social-icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: .3s all;
}
.footer-main .footer-blk1 .social-icon a >svg {
    color: #ffffff;
    transition: .3s all;
}
.footer-main .footer-blk1 .social-icon a:hover >svg {
    color: #0077FF;
}
.footer-main .footer-blk1 .social-icon a:hover {
    background-color: #ffffff1a;
    border-radius: 10px;
}
.footer-main .footer-blk1 .social-icon {
    display: flex;
    margin-top: 24px;
}
.subscribe-main .subscribe-text {
    font-size: 14px;
    line-height: 20px;
    color: #ffffffcc;
    margin-bottom: 16px;
}
.subscribe-main .form-main input {
    font-size: 16px;
    color: #fff;
    background-color: #1E3A69;
    padding: 14px 28px 14px 16px;
    border-radius: 12px;
    border: 1px solid #FFFFFF33;
}
.subscribe-main .form-main input:focus-visible {
    outline: 2px solid #0077FF;
}
.subscribe-main .form-main {
    display: flex;
}
.subscribe-main .form-main input::placeholder {
    color: #ffffff99;
}
.copyright div >a,
.copyright div {
    color: #ffffff99;
    line-height: 20px;
}
.copyright-link {
    display: flex;
}
.copyright-main {
    border-top: 1px solid #FFFFFF33;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    max-width: 1280px;
    font-size: 14px;
    margin: 0 auto;
    box-sizing: border-box;
}
.subscribe-main .form-main .form-btn {
    background-color: #0077FF;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin-left: 12px;
    padding: 0 32px;
    height: 48px;
    border-radius: 12px;
    border-color: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min-content;
    transition: .3s all;
}
.subscribe-main .form-main .form-btn:hover {
    background-color: #0077ffe6;
    transform: translateY(-2px);
}
.subscribe-main {
    padding-top: 32px;
    margin-top: 48px;
    border-top: 1px solid #FFFFFF33;
}
@media only screen and (max-width: 1023px) {
    .footer-main .container .container-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-main .footer-blk1 {
        grid-column: auto;
    }
    .footer-main .container .container-block {
        padding: 64px 24px;
    }
    .footer-main .copyright {
        padding: 24px;
    }
    
}
@media only screen and (max-width: 767px) {
        .footer-main .container .container-main {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
        .footer-main .container .container-block {
        padding: 64px 16px;
    }
    .copyright {
        flex-direction: column;
    }
    .copyright-link {
        margin-top: 16px;
    }
    .footer-main .copyright {
        padding: 24px 16px;
    }
}
@media only screen and (max-width: 479px) {
    .form-main {
        flex-direction: column;
        gap: 20px;
    }
    .subscribe-main .form-main input[type="email"], 
    .subscribe-main .form-main .form-btn {
        width: -webkit-fill-available;
        margin-left: 0;
        min-width: auto;
        
    }
}

/*Video*/
.video-container-info {
    display: inline-block;
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.video-container-info.video-open {
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
    pointer-events: auto;
}

#videoContainer {
    position: relative;
    width: 640px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.video-container-info.video-open #videoContainer {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

#closeBtn {
    position: absolute;
    top: -4px;
    right: 10px;
    font-size: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 50;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    #videoContainer {
        width: 90%;
    }
    #myVideo {
        width: 100%;
    }
}

button.footer-video.custom-button-secondary {
    border: none;
    color: #ffffffcc;
    font-size: 14px;
    text-align: left;
    padding: 0;
    font-family: 'Inter';
    cursor: pointer;
    line-height: 24px;
    height: auto;
    margin-top: 12px;
    &:hover {
        color: #0077ff;
    }
}


/*Font*/

/* #### Generated By: http://font.download #### */

    @font-face {
    font-family: 'Satoshi Regular';
    font-style: normal;
    font-weight: 400;
    src: local('Satoshi Regular'), url('../fonts/Satoshi-Regular.woff') format('woff');
    }

    @font-face {
    font-family: 'Satoshi Light';
    font-style: normal;
    font-weight: 300;
    src: local('Satoshi Light'), url('../fonts/Satoshi-Light.woff') format('woff');
    }

    @font-face {
    font-family: 'Satoshi Medium';
    font-style: normal;
    font-weight: 500;
    src: local('Satoshi Medium'), url('../fonts/Satoshi-Medium.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Satoshi Bold';
    font-style: normal;
    font-weight: 600;
    src: local('Satoshi Bold'), url('../fonts/Satoshi-Bold.woff') format('woff');
    }
    

