/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
a {
  color: white !important;         /* White font color */
  text-decoration: none !important; /* No underline */
  text-transform: uppercase;       /* All caps */

}

/* Optional: Hover effect (if needed) */
a:hover {
  opacity: 0.7;                   /* Slight fade on hover */
}
.body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
.header {
    background-color: #4d004d;
    color: white;
    padding: 1rem;
    text-align: center;
}

/* Main content area */
.main-content {
    display: flex;
    flex: 1;
    flex-wrap: wrap; /* Allow columns to wrap on small screens */
    background-color: #4d004d ;

}
.round-corners{
	border-radius: 20px 0 20px 0;
	width:100%;
}

/* Columns */
.left-column, .right-column {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background:linear-gradient(180deg, #4d004d, #ffccff);
    width: 30%;
    gap: 1rem;
    min-width: 200px; /* Or whatever your design requires */
    overflow: hidden; /* Prevents content collapse */
}

.center-column {
    flex: 3;
    padding: 1rem;
    background-color: #ffccff;
    border-radius: 20px 20px 0 0;
}

.corol-div {
    background-color: #ffcccc;
    border: 1px solid #ffb3b3;
}
.box-shadow{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}
.violetlight-div {
    background-color: #ffccff;
    border: 1px solid #ff99ff;
}
.hazeblue-div {
    background-color: #ccccff;
    border: 1px solid #9999ff;
}

/* Head styles for left and right columns */
.left-head, .right-head {
    padding: 0.5rem;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    position: absolute;
    top: 0; /* Forces it to the top */
    left: 0; /* Optional: Aligns left edge */
	width: 100%; /* Optional: Full width */
	z-index: 1;

}

.left-head {
    background-color: rgba(0, 0, 0, 0.1);
    height: 30px;
}
.font-size:hover {
  font-size: 18px;
}

.right-head {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Content styles */
.left-content, .right-content {
    padding: 2rem 0.5rem 0.5rem;
    font-size: 16px;
    
}

/* Footer styles */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    text-align: center;
}
/* Banner styles */
.banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    border-radius: 40px; 
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 1rem;
    z-index: 2;
}

.banner h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: none;
}

.banner-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.main-container {
    position: relative;
    min-height: 100vh;
    padding: 20px;
}

.menu {
    display: flex;
    gap: 10px;
    padding: 15px;
    position: absolute;
    top: 20px;
    right: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.menu-item {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6a0dad 0%, #8a2be2 50%, #9932cc 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.6);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
    transition: none;
}

.menu-item.active::before {
    animation: shine 1.2s;
}
.gradient-box {
	 position: relative;

    transition: background 0.5s ease;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Default hidden, shown via PHP if needed */
}

.cookie-banner button {
    margin: 0 10px;
    padding: 5px 15px;
    cursor: pointer;
}

.cookie-banner a {
    color: #4da6ff;
    text-decoration: underline;
}
.mb35 {
    margin-bottom: 35px;
}
.sectionpb {
    padding: 20px; 
    border-radius: 8px;
}
.mysticlilac{
    background-color: #dfb3e7
}

.mystichaze{
    background-color: #d4c1ec
}
.section4-div{
display: flex; flex-wrap: wrap; gap: 15px; margin-top: 15px;
}
.section4l-div{
flex: 1; min-width: 200px; padding: 15px; border-radius: 8px;
}
.section4l-mysticc{
background: linear-gradient(135deg, #FFD6A5, #FF9B85); 
}
.section4l-mysticg{
background: linear-gradient(135deg, #CBDFBD, #A5CBC3);
}
.section4l-mysticp{
background: linear-gradient(135deg, #FDC5F5, #F7AEF8); 
}

/* Reset and Base Styles */
.page-not-found-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

/* Header Styles */
.error-header {
    text-align: center;
    margin-bottom: 2rem;
}

.error-header h1 {
    font-size: 2.5rem;
    color: #d9534f;
    margin-bottom: 0.5rem;
}

.error-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Main Content Layout */
.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
    .error-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
}

/* Image Styles */
.error-image {
    text-align: center;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Message and Actions */
.error-message {
    max-width: 600px;
}

.error-message p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.suggested-actions {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.suggested-actions li {
    margin-bottom: 0.8rem;
}

.suggested-actions a {
    color: #337ab7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.suggested-actions a:hover {
    color: #23527c;
    text-decoration: underline;
}



/* SEO Section */
.seo-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.seo-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.popular-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.popular-links li {
    margin: 0;
}

.popular-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dd99ff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.popular-links a:hover {
    background-color: #9900e6;
    color: #000;
}
.astro-footer-compact {
    background: linear-gradient(135deg, #0f0524 0%, #2a1055 100%);
    color: #e2d4f7;
    padding: 1.5rem 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid #4a2582;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.footer-row:last-child {
    margin-bottom: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.star-icon {
    color: #d6b3ff;
    font-size: 1.2rem;
}

.site-name {
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-nav a {
    color: #c7a8ff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimer p {
    margin: 0;
    color: #a78bc9;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #d6b3ff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* about section */
/* Expertise Grid Layout */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.expertise-card {
    background: rgba(15, 14, 23, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-align: center;
}

/* Training List */
.training-list {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.training-list li {
    margin-bottom: 0.7rem;
    position: relative;
    color: #b8c4d9;
    line-height: 1.6;
}

.training-list li::before {
    content: "✧";
    color: #d4af37;
    position: absolute;
    left: -1.2rem;
}

/* Method Pills */
.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.method-pill {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 300;
    color: #d4af37;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #a7a9be;
    margin-top: 0.3rem;
}

/* Philosophy Section */
.philosophy {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    position: relative;
}

.philosophy h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.philosophy p {
    line-height: 1.8;
    position: relative;
    padding: 0 1rem;
}

.signature {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0e0ff;
    font-style: italic;
}

.seal-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: #d4af37;
}

.highlight {
    color: #d4af37;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .department-grid {
        grid-template-columns: 1fr;
    }
    
    .method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .method-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 1rem;
    }
}

    @keyframes glow {
        from {
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #9d65c9, 0 0 20px #9d65c9;
        }
        to {
            text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #9d65c9, 0 0 40px #9d65c9;
        }
    }

    @media (max-width: 768px) {
        .footer-main {
            flex-direction: column;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .social-links {
            margin-bottom: 1.5rem;
        }
    }
@font-face { font-family: horoscope; src: url('../fonts/Horoscopicus.ttf'); } 

@keyframes shine {
    0% {
		left: -100%;
	    }
	    20% {
		left: 100%;
	    }
	    100% {
	    left: 100%;
	    }
    }


/* Responsive adjustments */
@media (max-width: 768px) {

    .banner {
        height: 250px;
    }
    
    .banner h2 {
        font-size: 1.8rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    .menu {
        position: static;
        justify-content: center;
        padding: 10px 0;
    }
            
    .menu-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    .main-content {
        flex-direction: column;
    }
    
    .left-column, .right-column {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        min-width: 200px; /* Or whatever your design requires */
        overflow: hidden; /* Prevents content collapse */
}
    
    .left-column div, .right-column div {
        flex: 1;
    }    
}

@media (max-width: 480px) {

    
    /* Ensure buttons are visible */
    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    /* Fix gradient-box overflow */
    .gradient-box {
        width: 100% !important;
        max-width: 100% !important;
    }
    .banner {
        height: 200px;
    }
    
    .banner h2 {
        font-size: 1.5rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .banner-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .menu {
        gap: 5px;
    }
            
    .menu-item {
        padding: 8px 12px;
        font-size: 12px;
    } 
    .main-content {
        flex-direction: column;
    }
    
    .left-column, .right-column {
        flex-direction: column;
            width: 100%;
    }
    
    .left-column div, .right-column div {
        flex: 1;
    }    
}
.articleCenter{
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}
.headerP{
    font-size: 1.2em;
    color: #52796F;
}
.comingSoon{
    font-size:12px;
    background:#fff;
    padding:2px 5px;
    border-radius:10px;
    color:#9AC6E5;
}
.jointous{
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #5E2B7A, #2F3E46);
    color: white;
    border-radius: 8px;
    border: 1px solid #dfb3e7;
}
.jointous h2{
    font-family: 'Georgia', serif;
    font-size: 1.8em;
    margin-bottom: 15px;
}
.sign-up{
    font-size: 1.2em;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto 20px;
}
.want-deeper{
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto 20px;
}
.want-deeper p{
    font-style: italic;
    margin-bottom: 8px;
}
.signup-button{
    display: inline-block;
    background-color: #dfb3e7;
    color: #2F3E46;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;"
    onmouseover="this.style.backgroundColor='#f7aef8'; this.style.transform='scale(1.05)';"
    onmouseout="this.style.backgroundColor='#dfb3e7'; this.style.transform='scale(1)';"
}
.color1{color: #2F3E46;}
.color2{color: #DFB3E7;}

/* Style for the link itself */
.zodiac-link {
    color: #4A5568; /* A darker slate gray for text on light bg. Readable but subtle. */
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    margin: 0.2rem 0;
    transition: all 0.3s ease-out;
    font-weight: 500; /* Slightly bolder text for better contrast */
}

.zodiac-text {
    position: relative;
    z-index: 2;
    transition: inherit;
}

/* The "Shooting Star" effect - Now a contrasting blue/purple */
.zodiac-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Slightly thicker line for better visibility */

    /* New Contrasting Gradient: Deep Blue to Purple */
    background-image: linear-gradient(90deg, #2B6CB0, #6B46C1, #805AD5);

    border-radius: 2px;
    /* Darker glow that will stand out on light background */
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.7);

    transition: width 0.4s ease-out;
    z-index: 1;
}

/* The "Star" at the tip */
.zodiac-link::before {
    content: '';
    position: absolute;
    bottom: -3px; /* Adjusted positioning for the thicker line */
    left: 0;
    width: 8px; /* Slightly larger star */
    height: 8px;
    background: #3182CE; /* Bright blue center */
    border-radius: 50%;
    /* Glow color changed to blue */
    box-shadow: 0 0 8px 2px rgba(66, 153, 225, 0.8);
    opacity: 0;
    transform: translateX(-50%);
    z-index: 3;
    transition: opacity 0.3s ease-out;
}

/* Hover Effects */
.zodiac-link:hover {
    color: #2D3748; /* Even darker, near-black text on hover */
    /* Text shadow can be removed or made very subtle on light bg */
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.zodiac-link:hover::after {
    width: 100%;
}

.zodiac-link:hover::before {
    opacity: 1;
    left: 100%;
    transition: opacity 0.3s ease-out, left 0.4s ease-out;
}

/* Optional: "Lift" effect */
.zodiac-link:hover .zodiac-text {
    transform: translateY(-2px);
}




