html {
    font-size: 20.8px;
    /* 16px x 1.3 = 20.8px */
}

body {
    background: #fbf6ea;
    color: #0d3164;
}

a {
    color: rgb(13 49 100);
}

/* Define KG Happy using the TTF file */
@font-face {
    font-family: 'KG Happy';
    src: url('../fonts/KGHAPPYSolid.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Use Rufina for the rest of the text */
body,
p,
span,
div {
    font-family: 'Rufina', serif;
    /* Rufina is directly from Google Fonts */
}

/* Use KG Happy for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'KG Happy', sans-serif;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Example shadow */
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
    text-stroke: 1px rgba(0, 0, 0, 0.8);
    color: transparent;
}

.text-stroke-fill {
    -webkit-text-stroke: 2px black;
    text-stroke: 2px black;
    color: white;
}

.bg-dark {
    background-color: #0d3164 !important;
}

.bg-darkBlue {
    background: #0d3164;
}

.text-dark {
    color: #0d3164 !important;
}

.text-success {
    color: #67a678 !important;
}

.bg-success {
    background: #67a678 !important;
}

.bg-lightGreen {
    background: #D5EBDB;
}

.btn-success {
    background-color: #0d3164 !important;
    border-color: #0d3164 !important;
    color: #fff !important;
}

.btn-outline-success {
    border-color: #0d3164 !important;
    color: #0d3164 !important;
}

.btn-outline-success:hover {
    background-color: #0d3164 !important;
    color: #fff !important;
}


.profile-pic-wrapper {
    position: relative;
    margin-left: -15px;
    /* Adjust overlap spacing */
}

.profile-pic {
    width: 80px;
    /* Set the desired size */
    height: 80px;
    /* Ensure square dimensions */
    border-radius: 50%;
    /* Make the image circular */
    border: 3px solid white;
    /* White border around each image */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for depth */
    object-fit: cover;
    /* Ensure the image fits within the circle */
}

.ai-badge {
    top: 70px;
    /* Adjust vertical position */
    left: 70px;
    /* Adjust horizontal position */
    font-size: 0.6rem;
    /* Smaller font size for the badge */
    padding: 0.4em 0.6em;
    /* Adjust padding for better fit */
    border-radius: 0.3rem;
    /* Slightly rounded corners */
    font-family: Arial, sans-serif;
}

.numberIcon {
    font-size: 3rem;
    color: #67a678;
}

@media (max-width: 768px) {
    .ai-badge {
        top: 30px;
        left: 30px;
    }

    .numberIcon {
        font-size: 2rem;
        color: #67a678;
    }
}


.custom-list {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    /* Remove default padding */
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    /* Space for the checkmark */
    margin-bottom: 10px;
    /* Optional: Add spacing between items */
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../images/check-lg.svg') no-repeat center;
    background-size: contain;
    /* Scale the SVG to fit */
}


.smallprint {
    font-size: 11px !important;
    opacity: 0.8;
}


.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    /* Ensures it's above most content */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    /* Optional: adds a shadow for visual effect */
}

#footer p {
    font-size: 16px;
}

/* Add a transition for the background-color */
.navbar {
    transition: background-color 0.3s ease;
    /* Smooth fade effect */
}

/* Background color when expanded */
.navbar.bg-white-expanded {
    background-color: white;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}