:root {
    --primary-blue: #449cef;
    --primary-green: #1f8626;
    --secondary-blue: #1a4b8c;
    --tertiary-blue: #94b9ff;
    --light-blue: #e8f4fe;
    --accent-yellow: #ffde37;
    --light-color: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.text-justify {
    text-align: justify;
}

.navbar {
    background-color: var(--secondary-blue);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 700;
    color: var(--secondary-blue) !important;
    font-size: 1.4rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s;
    margin: 0 8px;
    position: relative;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-yellow) !important;
}

.nav-link.active:after {
    width: 100%;
}

.navbar button{
    background-color: white;
}

.logo-container {
    display: flex;
    align-items: center;
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--accent-yellow);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#scrollTopBtn:hover {
    background-color: var(--primary-blue);
    color: var(--accent-yellow);
    transform: translateY(-4px);
}

.logo-text {
    font-weight: bold;
    color: white;
    line-height: 1.2;
    font-size: 14px;
}

/* footer css */
.spiritual-quote {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spiritual-quote:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.footer {
    background-color: var(--secondary-blue);
    color: white;
    padding: 70px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--accent-yellow);
}

.footer h5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.btn-primary {
        background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-blue)
    );
    border-color: var(--accent-yellow);
    color: var(--light-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 30px;
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--secondary-blue),
        var(--primary-blue)
    );    border-color: #b89454;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--accent-yellow);
}

@media (max-width: 767px) {
    .logo-container {
        justify-content: space-between;
        text-align: center;
        gap: 16px;
    }
    .footer {
        text-align: center;
    }

    .footer h5 {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1050;
    }
}
