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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
    background: white;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    margin-right: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .nav-link { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link { 
        font-size: 1rem; 
        white-space: normal; 
    }
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="2" fill="url(%23a)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="30" cy="5" r="1.5" fill="url(%23a)"><animate attributeName="opacity" values="0;1;0" dur="2.5s" repeatCount="indefinite" begin="0.5s"/></circle><circle cx="70" cy="15" r="2.5" fill="url(%23a)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite" begin="1s"/></circle><circle cx="90" cy="8" r="1" fill="url(%23a)"><animate attributeName="opacity" values="0;1;0" dur="3.5s" repeatCount="indefinite" begin="2s"/></circle></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out;
    color: white;
    text-align: center;
    width: 100%;
    display: block;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.2s both;
    color: white;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.4s both;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: #667eea;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #667eea;
}

.social-proof {
    background: #2d3748;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.social-proof h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: white;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.stat {
    padding: 2rem;
    min-width: 150px;
    flex-shrink: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

.story {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: white;
}

.story h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: #2d3748;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.story-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.story-card p {
    color: #4a5568;
    line-height: 1.7;
}

.tabs-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 2rem;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.tab-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.footer p {
    color: white;
}

.organizers-section {
    margin-top: 2rem;
    text-align: center;
}

.organizers-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.organizer-link-minimal {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.organizer-link-minimal:hover {
    color: #a0aec0;
}

@media (max-width: 768px) {
    .cta-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.content h1 {
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
}

.consultant-table {
    width: 100% !important;
    max-width: 600px !important;
    margin: 2rem auto !important;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: table;
}

.consultant-table th {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.consultant-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.consultant-table tr:last-child td {
    border-bottom: none;
}

.consultant-table tr:hover {
    background: #f8fafc;
}

.consultant-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
}

.consultant-name:hover {
    text-decoration: underline;
}

/* Ensure consultant table is centered within content */
.content .consultant-table {
    margin: 2rem auto !important;
    display: table !important;
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
}

.content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content table th {
    background: #667eea;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.content table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
    line-height: 1.6;
}

.content table tr:last-child td {
    border-bottom: none;
}

.content table tr:hover {
    background: #f8fafc;
}

.content table a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.content table a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content table {
        font-size: 0.9rem;
    }
    
    .content table th,
    .content table td {
        padding: 1rem;
    }
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

.gallery-item {
    background: white;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Carousel Styles */
.carousel-section {
    background: #f8fafc;
    padding: 3rem 2rem;
    text-align: center;
}

.carousel-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 500;
}

.carousel-section h2 a {
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
}

.carousel-section h2 a:hover {
    background: #f7fafc;
    color: #667eea;
    transform: translateY(-1px);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: calc(100% / 3);
    padding: 0 8px;
    box-sizing: border-box;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}


.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #4a5568;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    color: #2d3748;
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}


@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(100% / 2);
    }
    
    .carousel-slide img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 2rem 1rem;
    }
    
    .carousel-slide {
        min-width: 100%;
        padding: 0;
    }
    
    .carousel-slide img {
        height: 280px;
        border-radius: 4px;
    }
    
    
    .carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .carousel-nav.prev {
        left: 8px;
    }
    
    .carousel-nav.next {
        right: 8px;
    }
}

/* Workshop Categories */
.workshop-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.workshop-category {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.workshop-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.workshop-category:hover {
    transform: translateY(-5px);
}

.workshop-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.workshop-category ul {
    padding-left: 1.2rem;
    margin: 0;
    list-style-position: inside;
}

.workshop-category li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .workshop-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workshop-category {
        padding: 1.5rem;
    }
    
    .workshop-category h3 {
        font-size: 1.3rem;
    }
}