
body {
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(50% 50% at 50% 50%, #FEFEFE 74%, #F4F4F4 100%);
    margin: 0;
    padding: 0;
    height: 100vh; /* Ensures the background covers the full height */
}

.hero-section {
    font-family: 'Manrope', sans-serif;
}

h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 64px;
    color: #000044;
}
.hero-text{
    font-family: 'Manrope', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 64px;
    color: #000044;
}
p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400; /* Regular */
}


.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.image-container {
    position: relative;
    /*  aspect-ratio: 4/3;*/
    /*background: linear-gradient(135deg, #9b87f5 0%, #7c66e4 100%);*/
    /*  border-radius: 1rem;
      overflow: hidden;*/
}

.image-overlay {
    /* position: absolute;
     inset: 0;*/
    /* background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(4px);*/
}

.content-section {
    padding: 2rem;
}

.badge-custom {
    background-color: #EEEEFF;
    color: #3F3FD6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary-custom {
    background-color: #9b87f5;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    transition: background-color 0.3s;
    font-family: 'Manrope', sans-serif !important;
}

.btn-primary-custom:hover {
    background-color: #7c66e4;
    color: white;
}

.btn-outline-custom {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #6c757d;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: #f8f9fa;
}

/* Image and Data Cards */
.image-container {
    position: relative;
    max-width: 100%;
}

.image-container img {
    width: 100%;
    margin: 5px;
}

.data-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 13px;
    box-shadow: 9px 13px 9.7px 3px #00000014;
    backdrop-filter: blur(11.9px);
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 15px;
    max-width: 277px;

}

.data-card .icon {
    font-size: 1.2rem;
}

/* Additional Text Styles */
.additional-text {
    font-size: 12px;
    font-weight: 400;
    color: #2B2B5C;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #2B2B5C;
    margin-top: 4px;
}

.para-text {
    color: #2B2B5C;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;;
}

.underline-para {

    text-decoration-style: wavy;
    text-decoration-color: #CE195F; /* Firefox only */

}

.nav-text {
    color: #CE195F;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;;
}

.underline-para-black {
    text-decoration: underline; /*  underline explicitly */
    text-decoration-style: wavy !important;
    text-decoration-color: #000044; /* Firefox only */
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.nav-text img {
    text-decoration: none !important;
    left: -11px !important;
    position: relative;
}

.light-shape {
    position: absolute;
    top: 0;
    right: 0;

    height: 100vh; /* Full height */

    background-size: contain; /* Adjusts size to fit without overflow */
    background-position: right top; /* Aligns image to the right */
    z-index: -1;
    overflow: hidden; /* Prevents unwanted scroll */
    max-width: 100%; /* Prevents overflow */
    max-height: 100%;
}



/* Shake animation */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

/* Add this class to apply the shake animation */
.shake {
    animation: shake 0.5s ease-in-out;
    animation-fill-mode: forwards; /* Keeps the final position after animation */
}

.text-muted-xt{
    color: #787878;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;;
}
.text-muted-xt:hover{

    color: #CE195F;
}
.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}
