@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&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');
body {
    padding-top: 0;
    font-family: Roboto, serif;
    font-size: 14px;
}

.navbar {
    transition: transform 0.3s ease;
    position: sticky; /* Default position */
    top: 0;
    width: 100%;
    z-index: 1000;
}
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.navbar-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Fixed position styling */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar.navbar-fixed {
    animation: slideDown 0.3s forwards;
}

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

.navbar-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.nav-link {
    transition: all 0.3s ease !important;
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.nav-link.btn {
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease !important;
}

.nav-link.btn:hover {
    background-color: #0056b3 !important;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.navbar-toggler {
    transition: all 0.3s ease;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .navbar-collapse {
        transition: all 0.4s ease-in-out;
        transform-origin: top;
    }

    .navbar-collapse.collapsing {
        opacity: 0;
    }

    .navbar-collapse.show {
        opacity: 1;
    }
}

.hero-title{
    font-family: Roboto, serif;
    font-weight: bolder;
}

.btn-primary{
    background-color: #01539d !important;

}

.btn-outline-primary{
    border: 2px solid #01539d !important;
    color: #01539d !important;
}

.btn-outline-primary:hover{
    background-color: #01539d !important;
    color: white !important;
    border: none!important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .hero-text {
        font-size: 16px;
    }
    .action-buttons {
        flex-direction: column;
        gap: 10px !important;
    }
    .action-buttons .btn {
        width: 100% !important;
    }

    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    .process-card {
        width: 100% !important;
        margin-bottom: 20px;
    }
    .process-divider {
        transform: rotate(90deg);
        margin: 15px 0;
        width: 55px !important;
    }
    .process-or {
        margin: 0 !important;
    }
}
.navbar-nav .nav-item {
    margin: 0 5px;
}
.process-card {
    transition: transform 0.3s ease;
}
.process-card:hover {
    transform: translateY(-5px);
}


/* Animation for hero section*/
.animated-hero {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Multi-Directional Moving Dots Background */
.moving-dots-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.moving-dots-white-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}



/* Multiple background patterns moving in different directions */
.moving-dots-white-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(#F5F5F5 1px, transparent 1px),
        radial-gradient(#F5F5F5 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.15;
    animation: dotsMovementRight 15s linear infinite;
}

.moving-dots-white-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(#F5F5F5 1px, transparent 1px),
        radial-gradient(#F5F5F5 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
    animation: dotsMovementLeft 18s linear infinite;
}


/* Multiple background patterns moving in different directions */
.moving-dots-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(#01539d 1px, transparent 1px),
        radial-gradient(#01539d 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.15;
    animation: dotsMovementRight 15s linear infinite;
}

.moving-dots-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(#01539d 1px, transparent 1px),
        radial-gradient(#01539d 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.1;
    animation: dotsMovementLeft 18s linear infinite;
}

@keyframes dotsMovementRight {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 50px 50px, 75px 75px;
    }
}

@keyframes dotsMovementLeft {
    0% {
        background-position: 0 0, 30px 30px;
    }
    100% {
        background-position: -60px 60px, -30px 90px;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Initial state for animated elements */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
}

/* Enhanced button effects */
.btn-animate {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-size: 0.9rem;
    z-index: 10;
}

.btn-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 83, 157, 0.2);
}

/* Glowing effect for primary button */
.glow-effect {
    box-shadow: 0 0 0 rgba(1, 83, 157, 0.4);
    animation: glowing 2s infinite;
}

@keyframes glowing {
    0% { box-shadow: 0 0 0 rgba(1, 83, 157, 0); }
    50% { box-shadow: 0 0 20px rgba(1, 83, 157, 0.7); }
    100% { box-shadow: 0 0 0 rgba(1, 83, 157, 0); }
}

/* Pulse effect for outline button */
.pulse-effect:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.7s ease;
}

.btn-animate:hover::before {
    left: 100%;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.highlight-circle {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 83, 157, 0.1) 0%, rgba(240, 240, 240, 0) 70%);
    z-index: 1;
    animation: pulse-circle 4s ease-in-out infinite;
}

@keyframes pulse-circle {
    0% { transform: scale(0.9); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(0.9); opacity: 0.3; }
}

.floating-image {
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

/* Staggered fade in animation delay classes */
.hero-title.animated {
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.hero-text.animated {
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.action-buttons.animated {
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

.floating-image.animated {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

/* Wave shape divider at bottom */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Enhanced Typography */
.hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

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

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-text {
    line-height: 1.6;
    max-width: 90%;
    position: relative;
    z-index: 10;
}

/* Container z-index */
.container-fluid {
    position: relative;
    z-index: 5;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.process-card {
    transition: all 0.4s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.icon-container {
    transition: all 0.3s ease;
}

.process-card:hover .icon-container {
    transform: scale(1.1) translateY(-5px);
}

.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animate:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-animate:hover:before {
    width: 300px;
    height: 300px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
    transition: all 0.8s ease-out;
}

.rotate-in.active {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Media query adjustments */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
    }

    .process-card {
        margin-bottom: 3rem;
        width: 100% !important;
        max-width: 320px;
    }

    .desktop-divider {
        display: none;
    }

    .mobile-or {
        display: block;
        margin: 1rem 0 2rem;
    }
}

@media (min-width: 769px) {
    .mobile-or {
        display: none;
    }
}

/* Smooth appear for check items */
.check-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease-out;
}

.check-item.active {
    opacity: 1;
    transform: translateX(0);
}

.stats-section {
    background-color: #01539d;
    padding: 3rem 0;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    width: 60px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-weight: bold;
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    margin-bottom: 0;
}



.footer {
    background-color: #121212;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: white;
    font-size: 30px;
}

.footer-description {
    color: #b0b0b0;
    max-width: 350px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-links li i {
    margin-right: 10px;
}

.download-btn {
    height: 40px;
    margin-bottom: 10px;
}

.footer-divider {
    border-top: 1px solid #333;
    margin: 1rem 0;
}

.footer-bottom {
    color: #888;
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 2rem;
    }
}

.btn-outline-white {
    border: 1px #ffffff solid;
    color: #ffffff !important;
}

.btn-outline-white:hover {
    background-color: white !important;
    color: #01539d !important;
}


.review {
    transition: transform 0.3s ease-in-out;
}
.review:hover {
    transform: translateY(-5px);
}
