html {
    font-size: 70%;
    font-family: "Open sans", Helvetica, Arial, sans-serif;
}
body {
    font-size: 1px;
    color: #5b5555;
    padding: 0;
}
.content {
    background-color: white;
    max-width: 1000px;
    margin: -20px auto;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out, slideUp 1s ease-in-out;
}
.content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    text-decoration: underline;
    animation: textPop 1.2s ease-in-out;
}
.heading {
    display: none;
    font-size: 1.5rem;
    margin-top: 20px;
}

.heading {
    display: none;
}

.heading.active {
    display: block;
}
.paraghrap {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}
/* Style for the active button */
.btn {
    display: inline-block;
    background-color: transparent;
    margin: 5px;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 5px;
    border: 2px solid rgb(52, 79, 213);
    color: rgb(52, 79, 213);
    border-radius: 5px;
    height: auto;
    min-width: 100px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    color: #fff;
    background-color: rgb(52, 79, 213);
}

.btn.active {
    background-color: rgb(52, 79, 213);
    color: white;
    border-color: rgb(52, 79, 213);
}

@media (max-width: 768px) {
    .btn {
        width: 45%;
        font-size: 11px; 
        margin: 5px 0; 
    }

    .d-flex {
        flex-wrap: wrap;
    }

    .d-flex .btn {
        margin-bottom: 10px; 
    }

}

/* Responsive adjustments for mobile devices */
/* @media (max-width: 576px) {


} */
.content p {
    font-size: 1.5rem;
    color: #060606;
    margin-bottom: 10px;
    line-height: 1.8;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    animation: fadeIn 2s ease-in-out;
}
.content:hover {
 transform: translateY(-10px);
}
#underfooter {
    background: rgb(52, 79, 213);
    padding: 15px 0;
    color: white;
    font-size: 12px;
    padding-bottom: 2px;
}
#underfooter a {
    color: #aaa;
}
#underfooter a:hover {
    color: #fff;
}
/* Logo Animations */
.logo-button img {
    border: 2px solid #3471d5; 
    border-radius: 10px; 
    transition: transform 0.3s, box-shadow 0.3s;     
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 120px;
    width: auto; 
    max-width:300px; 
    height: 60px;
}
.logo-button img:hover {
    transform: scale(1.1); 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}
.logo-button {
    text-align: center;
    text-decoration: none;
}
.logo-button p {
    margin-top: 2px;
    font-weight: bold;
    color: #3471d5;
    font-size: 12px;
}
.logo{
    width: 250px;
    height: 75px;
    animation: bounceIn 2s ease-in-out;

}
/* Banner Animation */
.banner {
    animation: fadeIn 1.5s ease-in-out, slideDown 1.5s ease-in-out;
}

#pdf-container iframe {
    width: 100%;
    height: calc(100vh - 120px); /* Adjust to fit screen height */
    max-height: 100%;
    border: none;
    overflow: auto; /* Allow scrolling if needed */
}

@media (max-width: 768px) {
    #pdf-container iframe {
        height: calc(100vh - 80px); /* Smaller height for mobile */
    }
}
/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes textPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@keyframes bounceIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
