:root {
    --primary-color: #94ddd7;
    --secondary-color: #4eb69f;
    --accent-color: #407722;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --glass-bg: rgba(148, 221, 215, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Global accent styling */
.bi {
    color: var(--accent-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color) !important;
}

h1.text-white, h2.text-white, h3.text-white, h4.text-white, h5.text-white, h6.text-white {
    color: var(--accent-color) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #d5d5d5 0%, #4eb69f1a 50%, #407722 100%);
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Glassmorphism Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section Split Screen */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.hero-content {
    padding: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: black;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-image {
    height: 100%;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-primary-custom {
    background: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 182, 159, 0.4);
}

.btn-primary-custom:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(64, 119, 34, 0.5);
    color: black;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid black;
    padding: 12px 30px;
    border-radius: 50px;
    color: black;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: black;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Three Column Layout */
.three-column-section {
    padding: 4rem 0;
}

.column-card {
    height: 100%;
    transition: all 0.3s ease;
}

.column-card:hover {
    transform: translateY(-10px);
}

.column-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.column-card h3 {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-section h2 {
    color: black;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-section p {
    color: black;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Accordion */
.accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(148, 221, 215, 0.25);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: black;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--glass-border);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.8);
}

/* Trust Badges */
.trust-badges {
    padding: 3rem 0;
}

.trust-badge {
    text-align: center;
    padding: 1.5rem;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-badge h4 {
    color: var(--text-dark);
    font-weight: 600;
}

/* Schedule Section */
.schedule-section {
    padding: 4rem 0;
}

.schedule-table {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
}

.schedule-table table {
    margin: 0;
}

.schedule-table th {
    background: var(--secondary-color);
    color: black;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.schedule-table td {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    padding: 1rem;
}

/* Programs Section */
.program-card {
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.program-card:hover img {
    transform: scale(1.1);
}

.program-card .card-body {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: black;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.8rem;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 182, 159, 0.25);
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}
.text-white{
	color: black!important;
}
/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: black;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

footer a {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: black;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin: 0 0 1rem 0;
}

.cookie-banner .btn {
    margin-right: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .column-card {
        margin-bottom: 2rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .glass-card {
        padding: 1rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Success Page */
.success-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-container>div {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    text-align: center;
    max-width: 600px;
}

.success-card i {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.success-card h1 {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.success-card p {
    color: black;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}