/* Prevent Footer Overlap - Sticky Footer Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Wizentra Brand Colors */
:root {
    --wizentra-blue: #00cfff;
    --wizentra-deep-blue: #1e4dd8;
    --wizentra-purple: #a244ff;
    --wizentra-white: #ffffff;
    --wizentra-text: #172046;
    --wizentra-light-purple: #c6a4ff;
    --font-heading: 'Montserrat', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #172046;

}

main {
    flex: 1 0 auto;
}



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--wizentra-gold);
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, var(--wizentra-blue), var(--wizentra-deep-blue), var(--wizentra-purple));
}

.navbar-brand img {
    height: 48px;
    margin-right: 10px;
}

.nav-link {
    color: var(--wizentra-white) !important;
    font-weight: 500;
}

    .nav-link.active, .nav-link:focus, .nav-link:hover {
        color: var(--wizentra-light-purple) !important;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, var(--wizentra-blue) 0%, var(--wizentra-purple) 100%);
    color: var(--wizentra-white);
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

    .hero-section .stars {
        position: absolute;
        right: 5%;
        top: 30%;
        font-size: 2em;
        color: var(--wizentra-light-purple);
        opacity: 0.5;
    }

/* Section Titles */
.section-title {
    color: var(--wizentra-deep-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 24px rgba(30,77,216,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 4px 32px rgba(162,68,255,0.13);
    }

.card-title {
    color: var(--wizentra-purple);
    font-weight: 600;
    font-size:20px
}

.span-text {
    color: var(--wizentra-deep-blue);
}

.portfolio .card-title {
    color: var(--wizentra-deep-blue);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--wizentra-blue), var(--wizentra-purple));
    border: none;
    color: var(--wizentra-white);
    font-weight: 600;
    transition: background 0.3s;
}

    .btn-primary:hover, .btn-primary:focus {
        background: linear-gradient(90deg, var(--wizentra-purple), var(--wizentra-blue));
    }

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--wizentra-blue), var(--wizentra-deep-blue), var(--wizentra-purple));
    color: var(--wizentra-white);
    margin-top: auto;
    position: relative !important;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

    .footer a {
        color: var(--wizentra-light-purple);
        margin: 0 10px;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* Responsive Tweaks */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .card {
        margin-bottom: 1rem;
    }


}

@media (max-width: 360px) {

    .wizentra-logo {
        max-width: 250px !important;
    }
}



    .section-gradient {
        background: linear-gradient(90deg, var(--wizentra-blue), var(--wizentra-deep-blue), var(--wizentra-purple));
        color: #fff;
    }

    .section-white {
        background: #fff;
        color: #172046;
    }

    .text-justify {
        text-align: justify;
    }

    .wizentra-logo {
        max-width: 450px !important;
    }

.rounded {
    border-radius: 25.25rem !important;
}