 body {
    font-family: Arial, sans-serif;
}
.heading-size{
    font-size: 2.676rem;
    font-weight: 800;
}
.heading-size2{
    font-size: 2rem;
    font-weight: 800;
}
.common-border{
    border: 2px solid #042954;
}
.heading-size3{
    font-size: 1.6rem;
    font-weight: 700;
}
.text1-color{
    color: #002855;
}
.navbar {
    background-color: #002855;
}
.navbar-nav .nav-link {
    color: white !important;
    margin-right: 15px;
}
.navbar .btn {
    margin-left: 5px;
}
.hero {
    padding: 60px 0;
}
.hero h1 {
    font-weight: bold;
}
.hero h1 span {
    color: #fbb03b;
}
.hero p {
    margin-top: 20px;
    color: #333;
}
.hero .btn {
    margin-right: 10px;
    background-color: #fbb03b;
    border: none;
    color: #fff;
    font-weight: bold;
}
.section-dark {
    background-color: #002855;
    color: white;
    padding: 50px 0;
}
.login-card {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    color: #002855;
    font-weight: bold;
    transition: 0.3s;
}
.login-card i {
    font-size: 2rem;
    color: #fbb03b;
    display: block;
    margin-bottom: 10px;
}
.login-card:hover {
    background: #fbb03b;
    color: white;
}
.login-card:hover i {
    color: white;
}
.help-section {
    padding: 50px 0;
}
.help-card, .feature-card {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}
.feature-card{
    border: 2px solid #002855;
}
.feature-card:hover{
    background-color: #fbb03b;
    color: white;
}
.help-card i, .feature-card i {
    font-size: 2rem;
    color: #fbb03b;
    display: block;
    margin-bottom: 10px;
}
.footer {
    background: #002855;
    color: white;
    padding: 30px 0;
}
.footer a {
    color: white;
    text-decoration: none;
}
.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
}

/* hero section */
.hero-seciton-heading{
    font-family: Gotham Black;
    font-weight: 900;
    font-size: 2.2rem;
    color: #000;
}
#changing-text {
    color: #042954;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* optional - "..." show karega */
    max-width: 100%;
}

.hero-seciton-heading span:last-child {
    display: inline-block;
    white-space: nowrap;
}

.slide-up {
    animation: slideUpEffect 0.6s ease forwards;
}

@keyframes slideUpEffect {
    0% { 
        opacity: 0; 
        transform: translateY(20px); /* Neeche se start */
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); /* Original position */
    }
}
/* Feature page css */
.hero-feature{
    background-color: #042954;
    color: white;
    padding: 60px 0;
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
    align-items: center; 

}
.hero-feature h1 {
    font-size: 5rem;
    font-weight: 700;
}
/* demo page css */
.title {
    font-weight: bold;
    color: #0d2b59;
}
.subtitle {
    color: #777;
}
.role-card {
    border: 1px solid #042954;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}
.role-card:hover {
    background-color: #f5f5f5;
}
.role-card.active {
    background-color: #fcb827;
    color: white;
}
.role-card i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}
.img-section img {
    max-width: 100%;
}

.toggle-icon {
    font-weight: bold;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Default collapsed state */
.accordion-button {
    background-color: #fff !important;
    color: #000 !important;
}

/* Active/open state */
.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: orange !important;
    box-shadow: none !important;
}
.toggle-icon{
    background-color: black;
    color: white;
    border-radius: 100%;
    ;
}