body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}


.body-login {
    margin: 0;
    min-height: 100vh;
    background-image: linear-gradient(hwb(216deg 0% 39% / 0%), rgb(0 1 48 / 31%)),url('../../img/Ambedkar.jpg'); /* or your image path */
    background-size: cover; /* fills entire screen */
    background-position: center; /* keeps image centered */
    background-repeat: no-repeat;
    background-attachment: fixed; /* optional: keeps image fixed on scroll */
    overflow: hidden;
}


/*.body{
    overflow:hidden;
}*/

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
    opacity: 0;
}

.animate-zoom-in {
    animation: zoomIn 1s ease-out forwards;
    opacity: 0;
}

.animate-delay-0-5 {
    animation-delay: 0.5s;
}

.animate-delay-1 {
    animation-delay: 1s;
}

.animate-delay-1-5 {
    animation-delay: 1.5s;
}

.animate-delay-2 {
    animation-delay: 2s;
}

.animate-delay-2-5 {
    animation-delay: 2.5s;
}

.login-body {
    overflow: hidden;
}

@media (max-width: 767px) {
    .login-body {
        background: #959799 !important;
        overflow: auto;
    }
}

.navbar {
    background: oklch(96.7% .003 264.542);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 3.40282e38px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar-Admin {
    background: oklch(96.7% .003 264.542);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    /* border-radius: 3.40282e38px; */
    position: fixed;
    /* top: 10px; */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: oklch(96.7% .003 264.542) !important;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #036 !important;
}

    .navbar.scrolled .navbar-brand,
    .navbar.scrolled .nav-link {
        color: #036 !important;
    }

        .navbar.scrolled .nav-link:hover {
            color: #e0e0e0 !important;
        }

.navbar-brand,
.nav-link {
    color: #036 !important;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: #21CBF3 !important;
}

.dropdown-menu {
    background-color: white;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #104070;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.hero-section {
    background: linear-gradient(hwb(216 0% 39% / 0.7), rgba(0 1 48 / 70%)), url('../../img/herosec123.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section-login {
    /*background: linear-gradient(hwb(216deg 0% 39% / 0%), rgb(0 1 48 / 31%)), url(../../img/Ambedkar.jpg), url(../../img/Ambedkar.jpg);*/
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 50px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section-Admin {
    background: white;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-section {
        background: linear-gradient(135deg, #f193fb50 0%, #f5576c4f 100%);
    }
}

.hero-section.login-page {
    height: 100vh;
    color: rgb(26, 24, 24);
    padding: 80px !important;
}

.hero-text {
    text-align: left;
    padding: 30px;
    /* background: rgba(0, 0, 0, 0.6); */
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(5px);
}

    .hero-text h1 {
        font-size: 2.5rem;
        /* font-weight: 700; */
        font-family: fantasy;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.2;
    }

    .hero-text .lead {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 15px;
        font-weight: 400;
    }

@media (max-width: 768px) {
    .hero-text {
        padding: 20px;
        text-align: center;
    }

        .hero-text h1 {
            font-size: 2rem;
        }

        .hero-text .lead {
            font-size: 1rem;
        }
}

.hero-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hero-carousel:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-carousel .carousel-item img {
        height: 400px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

        .hero-carousel .carousel-item img:hover {
            transform: scale(1.05);
        }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 5%;
        opacity: 0.8;
    }

        .hero-carousel .carousel-control-prev:hover,
        .hero-carousel .carousel-control-next:hover {
            opacity: 1;
        }

    .hero-carousel .carousel-indicators button {
        background-color: rgba(255, 255, 255, 0.5);
        border: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
    }

    .hero-carousel .carousel-indicators .active {
        background-color: #fff;
    }

@media (max-width: 768px) {
    .hero-carousel .carousel-item img {
        height: 250px;
    }
}

.hero-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 15px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
}

    .hero-carousel .carousel-caption h5 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 1.5rem;
    }

    .hero-carousel .carousel-caption p {
        color: #ddd;
        font-size: 1rem;
        margin: 0;
    }

.about-section {
    background: linear-gradient(135deg, #f8f9faa3 0%, #d2d4ff 100%), url('../../img/3px-tile.png');
    padding: 60px 0;
}

.impact-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 60px 0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    text-align: center !important;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #007bff, #28a745);
        margin: 10px auto;
        border-radius: 2px;
    }

.section-description {
    font-size: 1.0rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-family: math;
}

.feature-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease;
    height: 100%;
    animation: zoomIn 0.8s ease-out forwards;
    opacity: 0;
}

    .feature-card:nth-child(1) {
        animation-delay: 1.2s;
    }

    .feature-card:nth-child(2) {
        animation-delay: 1.4s;
    }

    .feature-card:nth-child(3) {
        animation-delay: 1.6s;
    }

    .feature-card:nth-child(4) {
        animation-delay: 1.8s;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.enhanced-hover:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
    border: 2px solid #007bff;
}

    .enhanced-hover:hover i {
        color: #0056b3 !important;
    }

.feature-card .card-body {
    padding: 30px;
}

.feature-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card .card-text {
    color: #666;
    line-height: 1.5;
    text-align: justify;
    font-size: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .feature-card .card-body {
        padding: 20px;
    }
}

.services-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
        z-index: 0;
    }

    .services-section .container {
        position: relative;
        z-index: 1;
    }

    .services-section .section-title {
        margin-bottom: 30px;
    }

    .services-section .section-description {
        margin-bottom: 20px;
        color: #555;
    }

.stat-card {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: zoomIn 0.8s ease-out forwards;
    opacity: 0;
}

    .stat-card:nth-child(1) {
        animation-delay: 1.7s;
    }

    .stat-card:nth-child(2) {
        animation-delay: 1.9s;
    }

    .stat-card:nth-child(3) {
        animation-delay: 2.1s;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
    }

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section img {
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .services-section img:hover {
        transform: scale(1.02);
    }

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

.objectives-section {
    background: linear-gradient(135deg, #f8f9fac2 0%, #e9ecef 100%),url(../../img/3px-tile.png);
    padding: 60px 0;
}

.objectives-list {
    width: 100%;
    margin: 0 auto;
}

.objective-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 25px;
    font-family: math;
    margin-bottom: 15px;
    font-size: 10px !important;
    background: #fcfcff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

    .objective-item:nth-child(1) {
        animation-delay: 2.2s;
    }

    .objective-item:nth-child(2) {
        animation-delay: 2.4s;
    }

    .objective-item:nth-child(3) {
        animation-delay: 2.6s;
    }

    .objective-item:nth-child(4) {
        animation-delay: 2.8s;
    }

    .objective-item:nth-child(5) {
        animation-delay: 3.0s;
    }

    .objective-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .objective-item span {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.5;
        text-align: justify;
    }

@media (max-width: 768px) {
    .objectives-section {
        padding: 40px 0;
    }

    .objective-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }

        .objective-item i {
            margin-bottom: 10px;
            margin-right: 0;
        }

        .objective-item span {
            font-size: 1rem;
        }
}

.institutions-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    padding: 60px 0;
}

.institutions-grid {
    justify-content: center;
}

.institution-card {
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    animation: zoomIn 0.6s ease-out forwards;
    opacity: 0;
}

    .institution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .institution-card .card-body {
        padding: 20px;
    }

    .institution-card .card-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .institution-card .card-text {
        font-size: 0.8rem;
        color: #666;
    }

/* Stagger animations for institution cards */
.institutions-grid .col-lg-3:nth-child(1) .institution-card {
    animation-delay: 2.7s;
}

.institutions-grid .col-lg-3:nth-child(2) .institution-card {
    animation-delay: 2.8s;
}

.institutions-grid .col-lg-3:nth-child(3) .institution-card {
    animation-delay: 2.9s;
}

.institutions-grid .col-lg-3:nth-child(4) .institution-card {
    animation-delay: 3.0s;
}

.institutions-grid .col-lg-3:nth-child(5) .institution-card {
    animation-delay: 3.1s;
}

.institutions-grid .col-lg-3:nth-child(6) .institution-card {
    animation-delay: 3.2s;
}

.institutions-grid .col-lg-3:nth-child(7) .institution-card {
    animation-delay: 3.3s;
}

.institutions-grid .col-lg-3:nth-child(8) .institution-card {
    animation-delay: 3.4s;
}

.institutions-grid .col-lg-3:nth-child(9) .institution-card {
    animation-delay: 3.5s;
}

.institutions-grid .col-lg-3:nth-child(10) .institution-card {
    animation-delay: 3.6s;
}

.institutions-grid .col-lg-3:nth-child(11) .institution-card {
    animation-delay: 3.7s;
}

.institutions-grid .col-lg-3:nth-child(12) .institution-card {
    animation-delay: 3.8s;
}

.institutions-grid .col-lg-3:nth-child(13) .institution-card {
    animation-delay: 3.9s;
}

.institutions-grid .col-lg-3:nth-child(14) .institution-card {
    animation-delay: 4.0s;
}

.institutions-grid .col-lg-3:nth-child(15) .institution-card {
    animation-delay: 4.1s;
}

.institutions-grid .col-lg-3:nth-child(16) .institution-card {
    animation-delay: 4.2s;
}

.institutions-grid .col-lg-3:nth-child(17) .institution-card {
    animation-delay: 4.3s;
}

.institutions-grid .col-lg-3:nth-child(18) .institution-card {
    animation-delay: 4.4s;
}

.institutions-grid .col-lg-3:nth-child(19) .institution-card {
    animation-delay: 4.5s;
}

.institutions-grid .col-lg-3:nth-child(20) .institution-card {
    animation-delay: 4.6s;
}

.institutions-grid .col-lg-3:nth-child(21) .institution-card {
    animation-delay: 4.7s;
}

.institutions-grid .col-lg-3:nth-child(22) .institution-card {
    animation-delay: 4.8s;
}

.institutions-grid .col-lg-3:nth-child(23) .institution-card {
    animation-delay: 4.9s;
}

.institutions-grid .col-lg-3:nth-child(24) .institution-card {
    animation-delay: 5.0s;
}

@media (max-width: 768px) {
    .institutions-section {
        padding: 40px 0;
    }

    .institution-card .card-body {
        padding: 15px;
    }

    .institution-card .card-title {
        font-size: 0.8rem;
    }

    .institution-card .card-text {
        font-size: 0.75rem;
    }
}

.role-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .role-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
    }

.btn-custom {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border: none;
    color: white;
}

    .btn-custom:hover {
        background: linear-gradient(45deg, #ffa500, #ff6b6b);
    }

footer {
    background-color: #0f1b2a;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

    footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

    footer h5 {
        color: #ffffff;
        margin-bottom: 20px;
    }

    footer ul li {
        margin-bottom: 10px;
    }

    footer hr {
        border-color: #495057;
        margin: 20px 0;
    }

.login-left-textcolor {
    color: #007acc !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.login-left-line {
    border-right: #007acc solid 1px;
    text-align: end;
    padding: 0px 25px 0px 0px;
}

.login-subtext {
    font-family: "math";
    font-size: 16px;
    color: #007acc;
}

.login-fr-card {
    background: oklch(35.9% .144 278.697);
    border-radius: 12px;
}

.login-sec-card {
    background: oklch(50.8% .118 165.612);
    border-radius: 12px;
}

.login-thr-card {
    background: oklch(54.1% .281 293.009);
    border-radius: 12px;
}

.login-four-card {
    background: oklch(58.6% .253 17.585);
    border-radius: 12px;
}

.login-five-card {
    background: oklch(52.5% .223 3.958);
    border-radius: 12px;
}

.login-six-card {
    background: oklch(51.1% .096 186.391);
    border-radius: 12px;
}

.login-sev-card {
    background: oklch(0.48 0.21 145.39);
    border-radius: 12px;
}

.login-subtext-pg {
    font-family: "math";
    font-size: 16px;
    color: oklch(44.6% .043 257.281);
    text-align: justify;
}

.login-ul-cont {
    text-align: justify;
    font-family: math;
    font-size: 16px;
}

.login-card-title {
    font-size: 15px;
    font-family: 'Poppins';
    color: #efe9e9;
    text-align: left;
}

.login-card-icon {
    color: white;
    /* height: 20px;
    width: 20px;  */
    font-size: 1.5rem;
}

.login-card-text {
    font-size: 14px;
    color: #dbdbda;
    font-family: "math";
    text-align: left;
}

.login-pg-title {
    text-align: left;
    font-weight: bold;
    color: #007acc;
    font-family: 'Poppins';
}

.login-pg-subtitle {
    text-align: left;
    /* font-weight: bold; */
    color: #959799;
    font-size: 12px;
    font-family: "system-ui";
}

/* Additional custom styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0 !important;
}

.input-group-text {
    min-width: 50px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: transform 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

.form-control:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 0.25rem rgba(118, 75, 162, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-body {
        padding: 1.5rem !important;
    }
}

.outlined-input {
    position: relative;
}

.outlined-control {
    height: 36px; /* reduce height */
    padding: 6px 10px; /* controls inner spacing */
    font-size: 14px;
}

.outlined-label {
    position: absolute;
    top: -8px; /* adjust with height */
    left: 10px;
    background: #fff;
    padding: 0 6px;
    font-size: 12px;
    color: #6c757d;
}

.modal-body-bg {
    padding: 50px;
}

.modal-body-bg {
    padding: 0;
}

/* LEFT SIDE BACKGROUND */
.left-side {
    background: linear-gradient(135deg, #0d6efd, #084298);
    min-height: 100%;
}

/* LOGO */
.login-logo {
    width: 80px;
    height: auto;
    border-radius: 50%;
    border: 1px solid white;
}

styled-text {
    color: wheat;
}

.styled-text span::first-letter {
    font-weight: bold;
    color: #0d6efd; /* Bootstrap primary blue */
}

.word::first-letter {
    font-weight: bold;
    color: #0d6efd; /* Bootstrap primary */
}

.model-hd-title {
    font-size: 16px;
}

.index-login {
    background: #ff9f0b;
}

.menu-ul {
    margin-right: 150px;
    /*margin-left: 200px !important;*/
}

.nav-link-color {
    font-size: 14px;
}

.slider-btn {
    width: 20px;
}

.banner-logo-color {
    color: #ffb400;
    font-size: 100px;
    letter-spacing: 10px;
}

.banner-fr-color {
    color: #ff9f0b;
}

.font-size-italic-text {
    font-style: italic;
    font-size: 17px !important;
}

.banner-para-text {
    font-family: math;
}

.footer-logo {
    width: 80px;
    height: auto;
    display: inline-block;
    border-radius: 50%;
}

footer h1 {
    font-family: fantasy;
    font-size: 6rem;
    margin-top: 10px;
    letter-spacing: 5px;
    display: inline-block;
}

.footer-lop {
    display: inline-block;
    justify-content: center;
}

.footer-ul {
    text-align: left;
    font-size: 15px;
    font-family: math;
}

.footer-ul-header {
    text-align: justify;
    font-size: 16px;
    margin-bottom: 18px;
}

.activity-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

    .activity-card:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

    .activity-card .icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: #f0f4ff;
        color: #0d6efd;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .activity-card .content {
        flex: 1;
    }

    .activity-card .amount {
        font-weight: 700;
        margin-bottom: 4px;
    }

    .activity-card .desc {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 12px;
    }

    .activity-card .actions {
        display: flex;
        gap: 8px;
    }

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e7f1ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

body {
    background: #f5f7fb;
}

.outlined-input {
    position: relative;
}

.outlined-label {
    position: absolute;
    top: -11px; /* adjust with height */
    left: 10px;
    background: #fff;
    padding: 0 6px;
    font-size: 13px;
    color: #626262;
}

.progress-bar {
    transition: width 0.4s ease;
}

/* OUTER PAGE SPACING */
.page-padding {
    padding: 25px 15px;
}

/* WRAPPER */
.register-wrapper {
    max-width: 1200px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden; /* IMPORTANT: removes gap */
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* WRAPPER */
.register-wrapper-login {
    max-width: 900px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden; /* IMPORTANT: removes gap */
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

/* LEFT PANEL */
.left-panel {
    background: linear-gradient(180deg, #1e5eff, #0d47ff);
    color: #fff;
    min-height: 100%;
}

/* RIGHT PANEL */
.right-panel {
    background: #f5f7fb;
}

.form-card {
    background: #fff;
    padding: 30px;
    height: 100%;
}

/* STEPPER */
.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

    .stepper:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 3px;
        background: #dbe3ff;
    }

.step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    text-align: center;
    line-height: 34px;
    font-weight: bold;
    z-index: 1;
}

    .step.active {
        background: #0d6efd;
        color: #fff;
    }

label {
    font-weight: 600;
}

.form-control, .form-select {
    height: 44px;
    border-radius: 8px;
}

textarea.form-control {
    height: auto;
}

.section-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.btn {
    min-width: 120px;
    border-radius: 8px;

        text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.alerts {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 13px;
    /* padding: 10px; */
    margin-left: 100px;
}


.app-toast {
    position: fixed;
    top: 25px;
    right: 25px;
    min-width: 260px;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: none;
    z-index: 99999;
    animation: toastSlide 0.4s ease;
}

    .app-toast.success {
        background: #2e7d32;
    }

    .app-toast.error {
        background: #d32f2f;
    }

    .app-toast.warning {
        background: #f57c00;
    }

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight-first::first-letter {
    color: red; /* change color */
    font-size: 28px; /* make it bigger */
    font-weight: bold;
}

.footer-logo-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

h2, h5 {
    letter-spacing: 0.4px;
}

.card {
    border-radius: 12px;
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

.list-group-item {
    border: none;
    padding-left: 0;
}

.professional-card {
    border: none;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.professional-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.section-subsubtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2c50;
    border-left: 4px solid #0d6efd;
    padding-left: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    background: #0d6efd;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
}

.section-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.professional-list {
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);*/
}

.professional-list .list-group-item {
    border: none;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.professional-list .list-group-item:not(:last-child) {
    border-bottom: 1px solid #f1f1f1;
}

.list-icon {
    color: #0d6efd;
    font-size: 1rem;
    margin-top: 2px;
}

.index-cards-fa{
        border-left: 4px solid blue;
    padding: 10px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.index--fa-icon{
    padding: 10px 0px;
    color: blue;
    font-family: sans-serif;
    font-weight: bold;
    text-shadow: 0px 0px 20px #00f3ff;
}

.index-fa-text{
    font-family: math;
}

.benefit-section {
    background: #f8fbff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.benefit-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-list li:hover {
    background: #e9f2ff;
    transform: translateX(5px);
}

.benefit-icon {
    color: #0d6efd;
    font-size: 1rem;
}