/* Theme Inner Banner styles */
:root{ --purple:#7C3AED; --nav:#0E2A47; --muted:#5B6B7B; }

.theme-inner-banner {
    background: #f6fcff;
    position: relative;
    z-index: 1;
    padding: 205px 0 115px;
    overflow: hidden;
    width: 100%;
    display: block;
    min-height: 320px;
    margin-top: 88px; /* Account for fixed header height */
}
@media (min-width: 992px) {
    .theme-inner-banner .banner-container {
        padding-right: 0;
        padding-left: 0;
    }
}
.theme-inner-banner .intro-title {
    font-family: 'gorditamedium', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 60px;
    letter-spacing: -.8px;
    margin-bottom: 15px;
    color: var(--nav);
    font-weight: 500;
}

.text-center {
    text-align: center !important;
}

.theme-inner-banner .page-breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.theme-inner-banner .page-breadcrumb li {
    color: var(--muted);
    font-size: 16px;
    font-weight: 400;
}

.theme-inner-banner .page-breadcrumb li a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-inner-banner .page-breadcrumb li a:hover {
    color: var(--nav);
    text-decoration: underline;
}

.theme-inner-banner .page-breadcrumb li.current-page {
    color: var(--nav);
    font-weight: 500;
}

.theme-inner-banner .page-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--muted);
    font-weight: 500;
}

.theme-inner-banner .shape-one {
    top: 222px;
    left: 12%;
    animation: jumpTwo 3s infinite linear;
}

.theme-inner-banner .shape-two {
    top: 222px;
    right: 10%;
    animation: jumpThree 3s infinite linear;
}

.shapes {
    position: absolute;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

/* Banner container styles - unique class to avoid conflicts */
.theme-inner-banner .banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility classes */
.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.style-none {
    list-style: none !important;
}

/* Animation keyframes */
@keyframes jumpTwo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes jumpThree {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive styles */
@media (max-width: 991px) {
    .theme-inner-banner {
        padding: 150px 0 80px;
    }
    
    .theme-inner-banner .intro-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .theme-inner-banner {
        margin-top: 72px !important; /* Adjust for smaller header height */
    }
}

@media (max-width: 640px) {
    .theme-inner-banner {
        padding: 120px 0 60px;
        margin-top: 72px !important; /* Adjust for smaller header height */
    }
    
    .theme-inner-banner .intro-title {
        font-size: 36px;
    }
    
    .theme-inner-banner .page-breadcrumb {
        flex-direction: column;
        gap: 5px;
    }
    
    .theme-inner-banner .page-breadcrumb li:not(:last-child)::after {
        display: none;
    }
}

/* WordPress admin bar adjustments */
html.admin-bar .theme-inner-banner {
    margin-top: 120px !important; /* Account for admin bar + header */
}



@media (max-width: 782px) {
    html.admin-bar .theme-inner-banner {
        margin-top: 134px !important; /* Account for smaller admin bar + header */
    }
}

