/* Reset and Base Styles */

* {margin: 0;
    padding: 0;
    box-sizing: border-box;}

body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
min-height: 80px;
}

.nav-logo h2 {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 700;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
margin: 0;
padding: 0;
}

.nav-link {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
padding: 0.5rem 0;
display: flex;
align-items: center;
white-space: nowrap;
}

.nav-link:hover {
color: #667eea;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
transition: width 0.3s ease;
}

.nav-link:hover::after {
width: 100%;
}

.cta-button {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white !important;
padding: 12px 24px;
border-radius: 25px;
transition: all 0.3s ease;
font-weight: 600;
white-space: nowrap;
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
color: white;
}

/* Mobile CTA button specific hover styles */
@media (max-width: 768px) {
    .nav-link.cta-button:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        transform: translateX(5px) scale(1.05);
        color: black !important;
    }
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
padding: 8px;
border-radius: 8px;
transition: all 0.3s ease;
}

.hamburger:hover {
background: rgba(102, 126, 234, 0.1);
}

.hamburger span {
width: 25px;
height: 3px;
background: #333;
margin: 3px 0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 2px;
}

/* Animation keyframes */
@keyframes slideInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Desktop navigation menu items */
.nav-menu li {
    display: flex;
    align-items: center;
}

/* Prevent text selection on mobile */
.hamburger, .nav-menu {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Language Switcher */
.lang-switch {
display: flex;
align-items: center;
gap: 0.3rem;
margin: 0 0.5rem;
padding: 0.3rem 0.5rem;
border-radius: 8px;
transition: background-color 0.3s ease;
}

.lang-switch:hover {
background-color: rgba(102, 126, 234, 0.1);
}

.lang-option {
background: none;
border: none;
color: #333;
font-weight: 500;
cursor: pointer;
padding: 0.3rem 0.5rem;
border-radius: 4px;
transition: all 0.3s ease;
font-size: 0.9rem;
}

.lang-option:hover {
color: #667eea;
}

.lang-option.active {
background: #667eea;
color: white;
}

.lang-separator {
color: #ccc;
font-weight: 300;
}


.title-logo {
  max-height: 20px;  /* adjust for your layout */
}


/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
position: relative;
overflow: hidden;
}

.hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 4rem;
z-index: 2;
}

.hero-title {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
line-height: 1.6;
}

.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.btn {
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid transparent;
display: inline-block;
text-align: center;
}

.btn-primary {
background: white;
color: #667eea;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-secondary:hover {
background: white;
color: #667eea;
transform: translateY(-3px);
}

.btn-outline {
background: transparent;
color: #667eea;
border: 2px solid #667eea;
}

.btn-outline:hover {
background: #667eea;
color: white;
}

.hero-visual {
position: relative;
height: 400px;
}

.floating-elements {
position: relative;
width: 100%;
height: 100%;
}

.element {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
animation: float 6s ease-in-out infinite;
}

.element-1 {
width: 100px;
height: 100px;
top: 20%;
left: 10%;
animation-delay: 0s;
}

.element-2 {
width: 150px;
height: 150px;
top: 50%;
right: 20%;
animation-delay: 2s;
}

.element-3 {
width: 80px;
height: 80px;
bottom: 20%;
left: 60%;
animation-delay: 4s;
}

@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}

/* Sections */
section {
padding: 5rem 0;
}

.section-title {
text-align: center;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 3rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Services Section */
.services {
background: #f8f9ff;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}

.service-card {
background: white;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}

.service-icon i {
font-size: 1.8rem;
color: white;
}

.service-card h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #333;
}

.service-card p {
margin-bottom: 1.5rem;
color: #666;
line-height: 1.6;
}

.service-features {
list-style: none;
}

.service-features li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.5rem;
color: #666;
}

.service-features li::before {
content: '✓';
position: absolute;
left: 0;
color: #667eea;
font-weight: bold;
}

/* Workshops Section */
.workshops-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}

.workshop-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.workshop-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workshop-image {
height: 200px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
position: relative;
display: flex;
align-items: center;
justify-content: center;
}

.workshop-date {
background: white;
padding: 1rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.workshop-date .day {
display: block;
font-size: 2rem;
font-weight: 700;
color: #667eea;
}

.workshop-date .month {
display: block;
font-size: 0.9rem;
color: #666;
text-transform: uppercase;
}

.workshop-content {
padding: 2rem;
}

.workshop-content h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1rem;
color: #333;
}

.workshop-content p {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.6;
}

.workshop-meta {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}

.workshop-meta span {
display: flex;
align-items: center;
gap: 0.5rem;
color: #666;
font-size: 0.9rem;
}

.workshop-meta i {
color: #667eea;
}

/* About Section */
.about {
background: #f8f9ff;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-text p {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
line-height: 1.8;
}

.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.stat {
text-align: center;
}

.stat h3 {
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.stat p {
color: #666;
font-weight: 500;
}

.tech-stack {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}

.tech-item {
background: white;
padding: 1rem;
border-radius: 15px;
text-align: center;
font-weight: 600;
color: #667eea;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.tech-item:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

/* Appointment Section */
.appointment {
background: white;
}

.appointment-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}

.appointment-info h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #333;
}

.appointment-info p {
color: #666;
margin-bottom: 2rem;
line-height: 1.6;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 1rem;
}

.contact-item {
display: flex;
align-items: center;
gap: 1rem;
}

.contact-item i {
width: 20px;
color: #667eea;
}

/* Calendar Widget */
.calendar-widget {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}

.calendar-controls {
display: flex;
align-items: center;
gap: 1rem;
}

.calendar-btn {
background: #667eea;
color: white;
border: none;
width: 35px;
height: 35px;
border-radius: 50%;
cursor: pointer;
font-size: 1rem;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.calendar-btn:hover {
background: #764ba2;
transform: scale(1.1);
}

.calendar-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 0.5rem;
margin-bottom: 2rem;
}

.calendar-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}

.calendar-day:hover {
background: #f0f4ff;
transform: scale(1.1);
}

.calendar-day.available {
background: #e8f2ff;
color: #667eea;
}

.calendar-day.available:hover {
background: #667eea;
color: white;
}

.calendar-day.selected {
background: #667eea;
color: white;
}

.calendar-day.disabled {
color: #ccc;
cursor: not-allowed;
}

.calendar-day.disabled:hover {
background: transparent;
transform: none;
}

.time-slots {
margin-top: 2rem;
}

.time-slots h5 {
margin-bottom: 1rem;
color: #333;
}

#slots-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 0.5rem;
margin-bottom: 2rem;
}

.time-slot {
padding: 0.8rem;
border: 2px solid #e0e0e0;
border-radius: 10px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.9rem;
}

.time-slot:hover {
border-color: #667eea;
background: #f0f4ff;
}

.time-slot.selected {
background: #667eea;
color: white;
border-color: #667eea;
}

/* Contact Section */
.contact {
background: #f8f9ff;
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
}

.contact-form {
background: white;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
font-size: 1.8rem;
margin-bottom: 2rem;
color: #333;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-family: 'Inter', sans-serif;
font-size: 1rem;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #667eea;
}

.contact-map {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
color: #666;
text-align: center;
min-height: 400px;
}

.map-placeholder i {
font-size: 3rem;
color: #667eea;
margin-bottom: 1rem;
}


.nav-logo {
  height: 60px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}



/* section divider */
.section-divider {
  border: none;
  border-top: 2px solid #eee; /* light gray line */
  margin: 4rem 0;             /* add big spacing above and below */
}

/* Footer */
.footer {
background: #2c3e50;
color: white;
padding: 3rem 0 1rem;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-section h4 {
margin-bottom: 1rem;
color: #ecf0f1;
}

.footer-section p,
.footer-section li {
color: #bdc3c7;
line-height: 1.6;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section ul li a {
color: #bdc3c7;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: #667eea;
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-links a {
width: 40px;
height: 40px;
background: #34495e;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
transition: all 0.3s ease;
}

.social-links a:hover {
background: #667eea;
transform: translateY(-3px);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #34495e;
color: #bdc3c7;
}

/*Fullscreen video background */
.video-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1; /* Behind everything */
}

.video-background video {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.8; /* 👈 Lower opacity so content is visible */
}

/* Gradient overlay on top of video */
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(16, 24, 40, 0.7), rgba(59, 130, 246, 0.4));
z-index: 0; /* Still behind content, above video */
}

/* Hero content (always visible) */
.hero {
position: relative;
z-index: 1; /* 👈 Keeps text above video+overlay */
text-align: center;
color: white;
padding: 150px 20px;
}

/* Animation Classes */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}

.slide-left {
opacity: 0;
transform: translateX(-50px);
transition: all 0.6s ease;
}

.slide-left.visible {
opacity: 1;
transform: translateX(0);
}

.slide-right {
opacity: 0;
transform: translateX(50px);
transition: all 0.6s ease;
}

.slide-right.visible {
opacity: 1;
transform: translateX(0);
}

/* Loading Animation */
.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Enhanced Responsive Navigation */
@media (max-width: 768px) {
.hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active {
    left: 0;
}

/* Mobile navigation menu items */
.nav-menu li {
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }
.nav-menu li:nth-child(5) { animation-delay: 0.5s; }
.nav-menu li:nth-child(6) { animation-delay: 0.6s; }
.nav-menu li:nth-child(7) { animation-delay: 0.7s; }
.nav-menu li:nth-child(8) { animation-delay: 0.8s; }

.nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

/* Ensure proper text color on hover for CTA button in mobile nav */
.nav-link.cta-button:hover {
    color: white !important;
    background: rgba(102, 126, 234, 0.1);
}

.lang-switch {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
}

.cta-button {
    margin-top: 1rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    min-height: 50px;
    width: 100%;
    max-width: 250px;
}

.hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
}

.services-grid,
.workshops-grid {
    grid-template-columns: 1fr;
}

.about-content,
.appointment-content,
.contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero-buttons {
    justify-content: center;
}

.stats {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.tech-stack {
    grid-template-columns: repeat(2, 1fr);
}

}

@media (max-width: 480px) {
.container {
padding: 0 1rem;
}

.nav-container {
    padding: 0.8rem 1rem;
    min-height: 70px;
}

.nav-logo {
    height: 50px;
}

.logo-img {
    height: 35px;
}

.hero-title {
    font-size: 2rem;
}

.section-title {
    font-size: 2rem;
}

.service-card,
.contact-form {
    padding: 1.5rem;
}

.calendar-widget {
    padding: 1.5rem;
}

#slots-container {
    grid-template-columns: repeat(2, 1fr);
}

}



/* Registration Form Overlay (same style as appointment modal) */
.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.6); /* dark transparent */
  backdrop-filter: blur(4px); /* blur effect */
  display: none; /* toggled via JS */
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

/* Modal container */
.form-container {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 95%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
  position: relative;
}

/* Title */
.form-container h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

/* Labels */
.form-container label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Inputs + textarea */
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
  outline: none;
}

/* Buttons (reuse your .btn classes) */
.form-container .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Cancel button */
.form-container .btn.btn-outline {
  margin-top: 0.75rem;
}

/* Close button (X) */
.form-container .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
}

/* Animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.active {
  display: block !important;
}











/* Workshop Overview Section - Enhanced */
#workshops {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
#workshops::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

#workshops::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

#workshops .container {
  position: relative;
  z-index: 1;
}

/* Main Section Title with Gradient */
#workshops .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  animation: slideDown 0.8s ease-out;
}

#workshops .section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  margin: 20px auto 0;
  border-radius: 10px;
  animation: expandWidth 1s ease-out 0.3s both;
}

/* Subsection Headings with Icons */
#workshops .subsection-title {
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-left: 20px;
  animation: slideRight 0.6s ease-out;
}

#workshops .subsection-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
}

#workshops p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 20px;
  animation: fadeInUp 0.6s ease-out;
}

/* Workshop Topics List - Enhanced Cards */
#workshops .workshop-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
}

#workshops .workshop-topics li {
  background: white;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out both;
}

/* Staggered animation delay for each item */
#workshops .workshop-topics li:nth-child(1) { animation-delay: 0.1s; }
#workshops .workshop-topics li:nth-child(2) { animation-delay: 0.2s; }
#workshops .workshop-topics li:nth-child(3) { animation-delay: 0.3s; }
#workshops .workshop-topics li:nth-child(4) { animation-delay: 0.4s; }
#workshops .workshop-topics li:nth-child(5) { animation-delay: 0.5s; }

/* Gradient background on hover */
#workshops .workshop-topics li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

#workshops .workshop-topics li:hover::before {
  opacity: 1;
}

#workshops .workshop-topics li:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

/* Workshop Topics Icons - Animated */
#workshops .workshop-topics li i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.4s ease;
}

#workshops .workshop-topics li:hover i {
  transform: scale(1.2) rotate(10deg);
}

#workshops .workshop-topics li span {
  position: relative;
  z-index: 1;
}


#workshops .workshop-topics li:last-child {
  grid-column: span 2;
  justify-content: center; /* centers content inside */
  text-align: center;
}

/* Compliance Note - Premium Design */
#workshops .compliance-note {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 3rem 2.5rem;
  border-radius: 25px;
  margin-top: 4rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

/* Animated background pattern */
#workshops .compliance-note::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: movePattern 20s linear infinite;
}

#workshops .compliance-note h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#workshops .compliance-note p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

#workshops .compliance-note p strong {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(30px, 30px) rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #workshops {
    padding: 60px 15px;
  }

  #workshops .section-title {
    font-size: 2.2rem;
  }

  #workshops .subsection-title {
    font-size: 1.5rem;
    margin: 2rem 0 0.8rem;
  }

  #workshops .workshop-topics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  #workshops .workshop-topics li {
    padding: 1.5rem 1.2rem;
  }

  #workshops .compliance-note {
    padding: 2rem 1.5rem;
  }

  #workshops .compliance-note h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #workshops .section-title {
    font-size: 1.8rem;
  }

  #workshops .subsection-title {
    font-size: 1.3rem;
  }

  #workshops p {
    font-size: 1rem;
    padding-left: 10px;
  }

  #workshops .workshop-topics li {
    font-size: 1rem;
    padding: 1.2rem 1rem;
  }

  #workshops .workshop-topics li i {
    font-size: 2rem;
  }
}

/* Funding Section - Premium Design */
#funding {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

#funding::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

#funding .container {
  position: relative;
  z-index: 1;
}

/* Funding Section Title */
#funding .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  animation: slideDown 0.8s ease-out;
}

#funding .section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  margin: 20px auto 0;
  border-radius: 10px;
  animation: expandWidth 1s ease-out 0.3s both;
}

/* Funding Intro Text */
#funding .funding-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Funding Cards Grid */
.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Individual Funding Card */
.funding-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out both;
  border: 2px solid transparent;
}

.funding-card:nth-child(1) { animation-delay: 0.1s; }
.funding-card:nth-child(2) { animation-delay: 0.2s; }
.funding-card:nth-child(3) { animation-delay: 0.3s; }
.funding-card:nth-child(4) { animation-delay: 0.4s; }

/* Gradient top border */
.funding-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.funding-card:hover::before {
  transform: scaleX(1);
}

.funding-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

/* Card Icon */
.funding-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.4s ease;
}

.funding-card:hover .funding-card-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.funding-card-icon i {
  font-size: 2rem;
  color: white;
}

/* Card Title */
.funding-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Description */
.funding-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.funding-card p strong {
  color: #667eea;
  font-weight: 700;
}

/* Highlight Box for Amount */
.funding-highlight {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid #667eea;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 12px;
  font-weight: 600;
  color: #333;
}

/* CTA Card - Full Width */
.funding-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.funding-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: movePattern 20s linear infinite;
}

.funding-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: white;
  -webkit-text-fill-color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.funding-cta p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.95);
}

.funding-cta .btn {
  position: relative;
  z-index: 1;
  background: white;
  color: #667eea;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.funding-cta .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Warning/Alert Box for Limited Funding */
.funding-alert {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
  color: white;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  animation: fadeInUp 0.6s ease-out 0.3s both;
  margin-bottom: 2rem;
}

.funding-alert-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.funding-alert-icon i {
  font-size: 1.8rem;
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.funding-alert-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.funding-alert-content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* Timeline/Steps Section */
.funding-timeline {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.funding-timeline h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  opacity: 0.3;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.timeline-content strong {
  color: #667eea;
}

/* Pulse Animation for Alert Icon */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design for Funding Section */
@media (max-width: 768px) {
  #funding {
    padding: 60px 15px;
  }

  #funding .section-title {
    font-size: 2.2rem;
  }

  .funding-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .funding-card {
    padding: 2rem;
  }

  .funding-cta {
    padding: 2rem 1.5rem;
  }

  .funding-cta h3 {
    font-size: 1.6rem;
  }

  .funding-alert {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .timeline-step {
    padding-left: 0;
  }

  .timeline-step::before {
    left: 13px;
  }

  .funding-timeline {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  #funding .section-title {
    font-size: 1.8rem;
  }

  .funding-card h3 {
    font-size: 1.3rem;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }
}

































/*Förder date highlight */
.highlight {
  font-weight: 700;
  color: #2c3e50; /* dark text for emphasis */
}



.footer-links {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}



.legal-page {
  max-width: 800px;
  margin: 100px auto;
  padding: 20px;
  line-height: 1.6;
  color: #eee;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255,255,255,0.05);
}

.legal-page h1, .legal-page h2 {
  color: #fff;
}

.legal-page p {
  margin-bottom: 12px;
}

.legal-page .btn {
  display: inline-block;
  margin-top: 20px;
}












/* Founders Section Styles */
.founders-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

.founders-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
}

.founders-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 15px auto 0;
    border-radius: 10px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.founder-card:hover::before {
    transform: scaleX(1);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.founder-image {
    width: 100%;
    height: 115%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.1);
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-card:hover .founder-overlay {
    opacity: 1;
}

.founder-info {
    padding: 2rem;
    text-align: center;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.founder-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.founder-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-image-wrapper {
        height: 300px;
    }

    .founders-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .founders-title {
        font-size: 1.6rem;
    }

    .founder-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .founder-image-wrapper {
        height: 250px;
    }

    .founder-name {
        font-size: 1.3rem;
    }

    .founder-title {
        font-size: 0.9rem;
    }

    .founder-bio {
        font-size: 0.9rem;
    }
}







