/* navbar css */
/* Hamburger Icon */
.btn {
    display: block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(135deg, hsl(220 55% 28%), hsl(220 60% 18%));
    box-shadow: 0 4px 14px hsl(220deg 55% 22% / 25%);
    border: 1px solid rgb(29, 18, 90);
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    line-height: 40px;
    padding: 0px 26px;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
}


.navbar-custom {
    background-color: #fbfaf9f2;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0b1f3b;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-header-custom {
    display: flex;
    justify-content: space-between;
    gap: 25rem;
}

@media (min-width:300px) and (max-width:500px) {
    .navbar-header-custom {
        display: flex;
        justify-content: space-between;
        gap: 0px !important;

    }

    @media(min-width:500px) and(max-width:800px) {
        .navbar-header-custom {
            display: flex;
            justify-content: space-between;
            gap: 15rem;
        }
    }
}

.navbar-toggler {
    margin-left: auto;
}

.nav-link-custom {
    color: #6b7280 !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-link-custom:hover {
    color: #1e3a5f !important;
    background-color: hsl(225deg 60% 25% / 10%);
    border-radius: 5px;
}


.navbar-button {
    background-color: #1e3a5f;
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}


.navbar-button:hover {
    background-color: #152d47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 95, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
        margin-top: 1rem;
    }

    .nav-link-custom {
        padding: 0.75rem 0 !important;
    }

    .navbar-button {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .navbar-custom {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .navbar-custom {
        padding: 0.75rem 1rem;
    }
}



.platform-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-image: linear-gradient(to bottom, hsl(225deg 60% 25% / 5%), hsl(30 20% 98%), hsl(30 20% 98%));
}

@media (min-width:300px) and (max-width:580px) {
    .platform-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .main-heading {
        font-size: 2rem !important;
        font-weight: 700;
        color: #0f1f4d;

    }
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(225deg 60% 25% / 10%);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 15px;
    color: hsl(225 60% 25%);
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stack-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.stack-icon::before,
.stack-icon::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 4px;
    background: #1e3a8a;
    border-radius: 2px;
}

.stack-icon::before {
    top: 2px;
}

.stack-icon::after {
    top: 9px;
    width: 14px;
    left: 2px;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #0f1f4d;
    line-height: 1;


}

.description {
    font-size: 1.125rem;
    color: hsl(220 15% 45%);
    line-height: 1.75rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: hsl(225 60% 25%);
    color: white;
    padding: 10px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: white;
    background-color: hsl(225 60% 25%);
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

.slider_section {
    padding-bottom: 3rem;
    padding-top: 3rem;
    background-color: hsl(30deg 15% 94% / 30%);
}

@media(min-width:300px) and (max-width:580px) {
    .slider_section {
        padding-bottom: 2rem;
        padding-bottom: 2rem;
    }
}

.card-head {
    color: hsl(225 60% 18%);
    font-weight: 700;
}

.card-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.card-container::-webkit-scrollbar {
    display: none;
}

.card-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.card-slider {
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-slider:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* ICON + TITLE ROW */
.card-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.icon-wrapper {
    width: 38px;
    height: 38px;
    background-color: #192d661a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 20px;
    color: #192d66;
}

.card-header-row h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #122049;
    margin: 0;
    line-height: 1.3;
}

.card-slider .description {
    font-size: 0.75rem;
    color: #626d84;
    line-height: 1.625;
    margin-bottom: 18px;
}

.powered-by {
    font-size: 0.75rem;
    color: #192d66;
    font-weight: 600;
    margin-bottom: 0;
}

.powered-label {
    color: #192d66;
    font-weight: 600;
}

.powered-icon {
    width: 33px;
    height: 33px;
    color: hsl(225 60% 25%) !important;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

/* MOBILE */
@media (max-width: 576px) {
    .card-slider {
        min-width: 280px;
        max-width: 280px;
    }

    .card-header-row h3 {
        font-size: 18px;
    }

    .icon-wrapper {
        width: 42px;
        height: 42px;
    }
}

.card-text {
    color: #626d84;
}

/* modules section css starts */

.modules {
    padding-bottom: 3rem;
    padding-top: 3rem;
    background-color: white;
}

.modules_para {
    color: hsl(220 15% 45%);
    font-size: 1.125rem;
}

.modules-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modules-img {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modules-text {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.powered-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px 8px;
    background: hsl(225deg 60% 25% / 10%);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    color: hsl(225 60% 25%);
}

.modules_section {
    padding: 40px 0;
    background-color: white;
}

.modules_two {
    padding: 40px 0;
    background-color: hsl(30deg 15% 94% / 30%);
}

.modules-head {
    color: hsl(225 60% 18%);
    font-weight: 700;
    font-size: 1.5rem;
}

.module_card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 15px;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.module_card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.module_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.module_icon {
    width: 36px;
    height: 36px;
    background-color: hsl(225deg 60% 25% / 10%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 18px;
}

.module_title {
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(225 60% 18%);
    margin: 0;
}

.module_badge {
    background-color: hsl(225deg 60% 25% / 10%);
    color: hsl(225 60% 25%);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.module_badge i {
    font-size: 14px;
}

.module_description {
    color: hsl(220 15% 45%);
    font-size: .875rem;

}

.feature_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature_item {
    display: flex;
    gap: 12px;
    color: hsl(225deg 60% 18% / 80%);
    font-size: .875rem;
    line-height: 1.6;
}

.feature_item:last-child {
    margin-bottom: 0;
}

.check_icon {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card_head {
    font-size: 2.25rem;
    font-weight: 700;
}

.img-icon {
    width: 44px;
    height: 44px;
    background: #0b1f3b;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_section {
    background: #fbfaf9;
}

/* banner section css for platform page */
.banner_head {
    color: white;
    font-weight: 700;
}

.banner_content {
    font-weight: 520;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
    color: hsl(0deg 0% 100% / 70%);
}

.action-banner {
    background: hsl(225 60% 18%);
    border-radius: 20px;
    padding: 40px 30px;

    max-width: 1320px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}

.small-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0px !important;
    background-color: white;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: hsl(225 60% 18%);
    padding: 10px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(30 58 138 / 40%);
    color: hsl(225 60% 18%);
    background-color: lightgrey;
}

/* footer css */
.footer {
    background-color: #1a2744;
    color: white;
    margin-top: 4rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    pointer-events: none;
    overflow: hidden;
    height: 64px;
    background-color: white;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 0.25rem;
    filter: brightness(0) invert(1);
}

.footer-brand {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.location-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    height: 100%;
}

.location-flag {
    font-size: 0.875rem;
    font-weight: 700;
}

.location-name {
    font-weight: 600;
    font-size: 1rem;
}

.location-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-copyright,
.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}