
/* ---------------------------------------------------------------------------------------------------------------*/
/* Global Styles */
body {
    background: linear-gradient(135deg, #03045e, #00b4d8);
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/background.jpg') no-repeat center center/cover;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/*Header SECTION*/
/* Header Navbar Styles */
header {
    position: relative;
    width: 100%;
    z-index: 1000;	
}

.navbar {    
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link {
    color: #fff;
    transition: color 0.3s ease;
}

.nav-static {
    color: #ffb703 !important; /* Hover color */
}

.navbar-nav .nav-link:hover {
    color: #00b4d8;
}

.navbar-brand i {
    margin-right: 10px;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%285, 5, 5, 0.5%29' stroke-width='2' linecap='round' linejoin='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Notification icon styles */
.navbar-nav .nav-link i {
    margin-right: 5px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-icon {
    max-width: 200px;
    height: 60px;
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: white !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8);	
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Mobile view with gradient background */
@media (max-width: 992px) {
    .navbar {
        background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
        position: relative;
    }
}

/** Sub Menu */
.dropdown-submenu {
    position: relative;
    
}
.dropdown-menu{
    background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);                
}


.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0.25rem;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu > .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    float: auto;
}

.dropdown-submenu > a::after {
    display: inline-block;
    content: " ";
    /** float: right;*/ 
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
    margin-top: 0.5em;
    margin-right: 0.5em;
}    


.navbar-nav .nav-link:hover {
    color: #ffb703 !important; /* Hover color */
}





/*HERO SECTION*/

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero.jpg') no-repeat center center/cover;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top:-82px;
}

.hero-section:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/hero-over.jpg') no-repeat center center/cover;
    transition: background 0.5s ease;
}

.hero-content {
    max-width: 90%; /* Reduce the width */
}

/*FEATURES SECTION*/
.features {
    background: linear-gradient(135deg, #c3eb78 0%, #26413c 100%);
    padding: 50px 0;
	
}

.feature-box {
    background: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-box-1 {
    background: linear-gradient(135deg, #0d10aa 0%, #2276e4 100%);
	min-height:280px;
}

.feature-box-2 {
    background: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
	min-height:280px;
}

.feature-box-3 {
    background: linear-gradient(135deg, #00b4d8 0%, #48cae4 100%);
	min-height:280px;
}

.feature-box-4 {
    background: linear-gradient(135deg, #00b4d8 0%, #25626e 100%);
	min-height:280px;
}

.feature-box h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.5;
    text-align:left;
}


/* ABOUT */
.about img {
    border-radius: 5px;
}

.about {
    background: linear-gradient(135deg, #00b4d8 0%, #48cae4 100%);
    color: white;
    padding: 50px 0;
}

.about-content {
    background: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
    border-radius: 10px;
    color: white;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	max-height: 900px;
}



.about-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	
}

.about-content h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.5;
}


.about-image img {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	max-height: 370px;
}

.about-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* COntact Us*/
.contact {
    background: linear-gradient(135deg, #c3eb78 0%, #26413c 100%);
    color: white;
    padding: 45px 0;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-form {
    background: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control {
    border-radius: 5px;
}
.contact-form button {
    background: #023e8a;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #03045e;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .contact .row {
        align-items: center;
    }
}




.carousel img {
    max-height: 400px;
}



/* Featured Mock Test Section Styles */
.featured-mock-test {
    background: linear-gradient(135deg, #c3eb78, #26413c);
    color: white;
    padding: 50px 0;
}

.section-title {
    font-weight: bold;
    margin-bottom: 30px;
}

.mock-test-box{
    background: linear-gradient(135deg, #03045e 0%, #023e8a 100%);
	min-height:320px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.mock-test-box .box1{
    background: linear-gradient(135deg, #020336 0%, #023e8a 100%);
}
.mock-test-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mock-test-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.mock-test-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.mock-test-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.start-test-btn {
    background: #023e8a;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

.start-test-btn:hover {
    background: #03045e;
}

@media (max-width: 767px) {
    .mock-test-box {
        margin-bottom: 20px;
    }
}





/* AdSense Ad Section Styles */
.ad-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #023e8a, #0077b6);
    color: white;
    text-align: center;
    margin: 20px 0;
}

.adsense-ad {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: black;
}

/* Responsive Styles for AdSense Ad */
@media (max-width: 767px) {
    .ad-section {
        padding: 20px 0;
    }

    .adsense-ad {
        padding: 10px;
    }
}


/* Footer Section Styles */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer-section h5 {
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links,
.social-links {
    list-style: none;
    padding: 0;
}

.footer-links li,
.social-links li {
    margin-bottom: 10px;
}

.footer-links li a,
.social-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover,
.social-links li a:hover {
    color: #00b4d8;
}

.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.social-links li a {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

.social-links li a:hover {
    color: #00b4d8;
}

.footer-section p {
    line-height: 1.5;
}

@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }

    .social-links li {
        display: inline-block;
        margin: 5px;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #023e8a;
    color: #fff;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
    display: none;
}

.back-to-top:hover {
    background: #03045e;
    transform: translateY(-5px);
}

/* Scrollbar Styles */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #666;
}




/*------------------------------------  Mock Test Page Styles -------------------------*/
.mock-test-container {
	
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
	
}

.timer {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: linear-gradient(to right, #00b4d8, #023e8a);
    border-radius: 5px;
    margin-right: 10px;
}

.progress-text {
    font-size: 0.9rem;
}

.question-container {
    margin-bottom: 20px;
}

.question-box {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.question {
    font-weight: bold;
    margin-bottom: 10px;
}

.options label {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
}

.options input[type="radio"],
.options input[type="checkbox"] {
    margin-right: 10px;
}

.navigation-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.btn {
    background: #023e8a;
    border: none;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #00b4d8;
}


.ad-section {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.result-summary {
    text-align: center;
    padding: 20px;
    background: #333;
    border-radius: 10px;	
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-summary h2 {
    margin-bottom: 20px;
}

.result-summary p {
    margin: 10px 0;
}

/* Pagination */
@media (max-width: 768px) {
    .mock-test-container {
        padding: 10px;
    }

    .timer {
        text-align: center;
        margin-bottom: 10px;
    }

    .progress-bar-container {
        flex-direction: column;
    }

    .progress-text {
        margin-top: 10px;
    }
}


/* ---------------------------------------- Result Page Styles ----------------------------------------*/

.result-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.result-summary {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.result-summary h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.score {
    font-size: 1.5rem;
    color: #00b4d8;
    font-weight: bold;
}

.performance {
    font-size: 1.2rem;
    margin-top: 10px;
}

.review-questions {
    margin-bottom: 20px;
}

.question-box {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.question-box.incorrect {
    background: #bb4d00;
}

.question {
    font-weight: bold;
    margin-bottom: 10px;
}

.options label {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
}

.options input[type="radio"],
.options input[type="checkbox"] {
    margin-right: 10px;
}

.explanation {
    display: block;
    margin-top: 10px;
    color: #90e0ef;
}

.actions {
    text-align: center;
    margin-bottom: 20px;
}


.ad-section {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Pagination */
@media (max-width: 768px) {
    .result-page-container {
        padding: 10px;
    }

    .review-questions {
        margin-bottom: 10px;
    }
}

/* ---------------------------------------- Modal Styles  ---------------------------------------- */
.modal-content {
    background: #f3eeee;
    border: none;
    border-radius: 10px;
    color: #fff;
    max-width:450px;
}

.modal-header {
    border-bottom: none;
    position: relative;
    border-bottom: 1px solid #444;

    background: linear-gradient(135deg, #5d82cd 0%, #92ceed 100%);
    transition: background 0.3s ease;
    padding-left:20px;
    padding-top:5px;
    padding-bottom:5px;
}


.modal-header .modal-title {
    font-size: 1.5rem;
    color: #0b0000;    
}

.modal-header .close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    opacity: 1;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #5d82cd 0%, #92ceed 100%);
    transition: background 0.3s ease;
}

.form-control {
    background-color: rgb(228, 237, 124);
}


.notification-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.social-login {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.social-login a {
    color: #fff;
    font-size: 1.5rem;
}

.social-login a:hover {
    opacity: 0.8;
}

.notification-item i {
    font-size: 2rem;
    color: #00b4d8;
    margin-right: 15px;
}

.notification-content h6 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.notification-content p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.notification-time {
    font-size: 0.8rem;
    color: #ccc;
}

.notification-item:hover {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
}

.modal-footer {
    border-top: 1px solid #444;
    background: linear-gradient(135deg, #5d82cd 0%, #92ceed 100%);
    transition: background 0.3s ease;
    padding-left:20px;
    padding-top:5px;
    padding-bottom:5px;    
}




/*----------------------------- User Account Page Styles -----------------------------*/
.account-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-info {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.profile-details p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.update-profile, .change-password, .settings {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.update-profile h2, .change-password h2, .settings h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #444;
    border-radius: 5px;
    background: #ebe470;
    color: #050952;
}

.btn-secondary {
    background: #56698e;
}

.btn-secondary:hover {
    background: #00b4d8;
}

.ad-section {
    background: #222;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-page-container {
        padding: 10px;
    }

    .update-profile, .change-password, .settings {
        padding: 15px;
    }
}


/********************************************* HIGH LIGHTS SECTION ************************************************************/


.highlights-title {
    text-align: left;
    font-size: 32px;
    margin: 20px 0;
    color: #f1f5f7;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    text-align: center;
}

.highlight-item {
    flex: 1 1 calc(20% - 10px);
    max-width: calc(20% - 10px);
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 5px;
    padding:5px;
}

.rectangle {
    position: relative;
    height: 230px;    
    background: linear-gradient(135deg, #48cae4, #023e8a);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top:20px;
}

.rectangle i {
    font-size: 36px;
    color: #ffffff;
}

.rectangle span {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.rectangle p {
    margin-top: 5px;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
}


.rectangle p:hover {
    color: #ecec1c;
}

.rectangle:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .highlight-item {
        flex: 1 1 calc(33% - 20px);
        max-width: calc(33% - 20px);
    }
}

@media (max-width: 480px) {
    .highlight-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}


/* ---------------------------------------- Result Summary  ---------------------------------------- */

.result-card {
    border-radius: 15px;
    background: linear-gradient(135deg, #062155 0%, #2a5298 100%);
    color: white;
    max-width: 600px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:20px;
    margin-top:30px;
}

.result-card-title {
    padding-top:10px;
    font-size: 1.5rem;
    font-weight: bold;
    min-height: 50px;
}

.result-card-body h5 {
    font-size: 1.2rem;
}

.progress-bar {
    font-size: 1rem;
    background-color: darkgreen;
}

.btn-outline-light {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    color: #343a40;
}

.result-card-body div div h5{
    text-align: center;
}
.result-card-body div div p{
    text-align: center;
    border:1px;
    font-weight: 900;
    font-size: 20px;
}
hr{
    background-color: white;
    margin-top: -5px;
}

@media (max-width: 768px) {
    .result-card-body .row {
        margin-bottom: 1rem;
    }
}




/* ---------------------------------- Mock Test Landing Page ---------------------------------------------*/
#sidebar {
    min-height: 100vh;
}

#sidebar h3 {
    margin-bottom: 1.5rem;
}

#sidebar .components li a {
    display: block;
    padding: 10px;
    font-size: 1.1rem;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}
.sidebar-toggle{
    max-height:30px;
}

#sidebar .components li a:hover {
    background: #1e3c72;
    color: #fff;
}

.card {
    border-radius: 15px;
    /*background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);*/
    background: linear-gradient(135deg, #648dda 0%, #2a5298 100%);    
    color: white;
    min-height: 300px;
}


.card-container {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.bg-completed{
    background: linear-gradient(135deg, #09170c 0%, #155608 100%);
}
.bg-inprogress{
    background: linear-gradient(135deg, #82852a 0%, #2f320a 100%);
}
.card-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-bottom: 2px solid #2a5298;
    
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-body h5 {
    font-size: 1.2rem;
}

.card-text {
    font-size: 1rem;
}

.card-body p small {
    color: #ccc;
}



@media (max-width: 768px) {
    #sidebar {
        min-width: 100%;
    }

    .card-body .row {
        margin-bottom: 1rem;
    }

    .navbar-bottom {
        position: fixed;
        bottom: 0;
        width: 100%;
        background: #1e3c72;
        z-index: 1000;
    }
}


.button-start {
    background: linear-gradient(45deg, #023e8a, #0077b6);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.button-start:hover {
    background: linear-gradient(45deg, #0077b6, #00b4d8);
    transform: scale(1.05);
}

.button-start:active {
    transform: scale(0.95);
}

.button-start:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

@media (max-width: 600px) {
    .button-start {
        padding: 6px 12px;
        font-size: 12px;
    }
}



/******************** Give Credit ******************************/
.credit-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    width: 90%;
}

.credit-container p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.credit-container a {
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
}

.credit-container a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .credit-container {
        padding: 15px;
        font-size: 14px;
    }
}




/* CSS for the loading spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}