html, body {
    font-family: 'Source Sans Pro', sans-serif;
    background: url(images/bg.svg) no-repeat right top;
    background-size: contain;
    background-color: #f8f8f8 !important;
    color: #1e2341;
    font-size: 30px;
    /* Make sure the body has a full height so the background is positioned relative to the entire page */
    min-height: 100vh;
    margin: 0; /* Reset any default margin */
    padding: 0; /* Reset any default padding */
}
.bg-av {
    background-color: #1e2341 !important;
}

.h2-av {
    -webkit-text-stroke: 2px #1e2341;
    /* Adjusted for readability */
    color: #f5f5f5;
    font-size: 60px;
    /* Adjusted for consistency with Bootstrap */
    font-weight: 900;
    margin-bottom: 45px;
}

.intro_av_1{
    
    font-size: 120px;
    /* Adjusted for consistency with Bootstrap */
    font-weight: 900;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

.elfsight-app-69d617e4-3a95-4400-a3e1-ae6797255457 a {
    display: none !important;
}

.intro_av_2{
    -webkit-text-stroke: 2px #1e2341;
    /* Adjusted for readability */
    color: #f5f5f5;
    font-size: 110px;
    /* Adjusted for consistency with Bootstrap */
    font-weight: 900;
    margin-bottom: 45px;
    animation: 1s ease-out 0s 1 slideInFromRight;
}

.av-a{
    text-decoration: underline;
}
.av-a:hover{
    color: #1e2341;
    text-decoration: underline;
}

a {
    color: #1e2341;
    line-height: 1.5;
    /* Adjusted for better readability */
}

.nav-link {
    color: #D8E56B !important;
    font-size: 20px !important;
    padding: 0 25px !important;
}

/* Adjust the image size as needed */
img {
    max-width: 100%;
    /* Ensure responsiveness */
}

.image-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #f8f8f8;
    /* Background color */
    padding: 10px;
    max-width: 25%;
    /* Adjust padding as needed */
}

.image-container img {
    max-width: 100%;
}

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #000;
    /* Adjust close button color as needed */
    font-size: 29px;
}

.client-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%; /* Adjust or remove this if necessary */
    min-height: 80px; /* This is an example, adjust to suit your layout */
  }
  
.client-logo-container img {
    max-width: 100%;
    height: auto;
  }

  .right-banner {
    left: auto;
    right: 10px;
}

/* Custom animations can remain as is */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Define the slide in from right animation */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .nav-link {
        color: #D8E56B !important;
        font-size: 20px !important;
        padding: 10px 25px !important;
        text-align: center !important;
    }
    .intro_av_1{
    
        font-size: 60px;
        /* Adjusted for consistency with Bootstrap */
        font-weight: 900;
    }
    
    .intro_av_2{
        -webkit-text-stroke: 2px #1e2341;
        /* Adjusted for readability */
        color: #f5f5f5;
        font-size: 55px;
        /* Adjusted for consistency with Bootstrap */
        font-weight: 900;
        margin-bottom: 45px;
    }
}