:root {
            --primary: #6C63FF;
            --secondary: #f83abf;
            --accent: #36D1DC;
            --dark: #2D2B55;
            --light: #F8F9FC;
            --text: #333344;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .top-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: var(--transition);
        }
        
        .top-nav.scrolled {
            padding: 10px 5%;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .lazy-bg {
  background-color: #f0f0f0; /* or a subtle skeleton gradient */
}
        .nav-menu li a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color:  #9575CD;;
            transition: var(--transition);
            transform: translateX(-50%);
        }
        
        .nav-menu li a:hover, 
        .nav-menu li a.active {
            color:  #9575CD;
        }
        
        .nav-menu li a:hover::after,
        .nav-menu li a.active::after {
            width: 70%;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--dark);
            transition: var(--transition);
        }
        
        /* Page Sections */
        .page-section {
            min-height: 100vh;
            padding: 100px 5% 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        /* Home Section */
        #home {
            background-color: #ebe3fb;
        }
        
        .banner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }
        
        .banner-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .banner-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
          
        }
        
        .banner-text {
            flex: 1;
            min-width: 300px;
        }
        
        .banner-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .banner-text h1 span {
            color:  #f00b76;
            position: relative;
        }
        
        .banner-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(255, 99, 203, 0.2);
            z-index: -1;
        }
        
        .banner-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text);
            max-width: 500px;
        }
        
        .cta-button {
            background-color: #f00b76;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .cta-button:hover {
            background: #d287f3;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
        }
        
        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 10px;
            padding-top: 10px;
           
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            display: inline-block;
              padding-top: 5px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background:   #9575CD;
            border-radius: 2px;
            
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
           
        }
        
        /* About Section */
        #about {
            background: white;
        }
        
        .about-hero {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/pexels-rethaferguson-3810753.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 3rem;
            border-radius: 15px;
        }
        
        .about-hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .about-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        .mission-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-top: 2rem;
            flex-wrap: wrap;
           
        }
        
        .mission-text {
            flex: 1;
            min-width: 300px;
        }
        
        .mission-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .mission-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .mission-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .mission-image:hover img {
            transform: scale(1.05);
        }
        
     
        
       /* Courses Section */
#courses {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(54, 209, 220, 0.03) 100%);
}

.courses-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.courses-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.subtitle {
    color: var(--text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Course Filter Styles */
.courses-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #C8A2F5;
    background-color: white;
    color: #9B6DD6;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.filter-btn:hover {
    background-color: #C8A2F5;
    color: white;
}

.filter-btn.active {
    background-color: #9B6DD6;
    color: white;
    border-color: #9B6DD6;
}
.program-card.hidden {
    display: none;
}

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

.program-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    object-fit: cover;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.program-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    z-index: 3;
    bottom: 0;
    left: 0;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.program-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.program-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-meta span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.program-meta a {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.program-meta a:hover {
    background: rgba(255, 255, 255, 0.3);
}
        
        /* Blogs Section */
        #blogs {
            background: white;
        }
        
        .search-bar {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .search-bar input {
            padding: 12px 25px;
            border: 1px solid #ddd;
            border-radius: 30px;
            width: 350px;
            max-width: 90%;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        
        .tag {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }
        
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }
        
        .card p {
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .author {
            font-size: 0.85rem;
            color: #777;
            border-top: 1px solid #eee;
            padding-top: 1rem;
        }
        
        .load-more {
            display: block;
            margin: 2rem auto 0;
            padding: 12px 35px;
            border: none;
            background-color:   #9575CD;;
            color: white;
            border-radius: 30px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .load-more:hover {
            background: #5651e5;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
        }
        
       
        
        .forum-section, .events-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .forum-header, .events-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .forum-header h3, .events-header h3 {
            color: var(--dark);
            font-size: 1.8rem;
        }
        
        .forum-posts {
            display: grid;
            gap: 1.5rem;
        }
        
        .forum-post {
            display: flex;
            gap: 1.2rem;
            padding: 1.5rem;
            border-radius: 12px;
            background: #f8f9fc;
            transition: var(--transition);
        }
        
        .forum-post:hover {
            background: #f0f2f7;
            transform: translateX(5px);
        }
        
        .post-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .post-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .post-content {
            flex-grow: 1;
        }
        
        .post-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .post-author {
            font-weight: 600;
            color: var(--dark);
        }
        
        .post-date {
            color: #6c757d;
            font-size: 0.85rem;
        }
        
        .post-text {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        
        .post-actions {
            display: flex;
            gap: 1.5rem;
        }
        
        .post-action {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #6c757d;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        
        .post-action:hover {
            color: var(--primary);
            cursor: pointer;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .event-card {
            padding: 1.8rem;
            border-radius: 12px;
            background: #f8f9fc;
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
            height: 100%;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .event-date {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
        }
        
        .event-title {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }
        
        .event-description {
            margin-bottom: 1.5rem;
            color: var(--text);
            font-size: 0.95rem;
        }
        
        .btn {
            display: inline-block;
            background-color:  #9575CD;
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }
        
        .btn:hover {
            background: #5651e5;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--text);
            background: var(--dark);
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .banner-text h1 {
                font-size: 2.8rem;
            }
            
            .mission-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .banner {
                flex-direction: column;
                text-align: center;
            }
            
            .banner-text {
                order: 2;
            }
            
            .banner-image {
                order: 1;
            }
            
            .banner-text p {
                margin: 0 auto 2rem;
            }
            
            .forum-header, .events-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .programs-header h1 {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .banner-text h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .programs-grid, .blog-grid, .community-grid, .events-grid, .team-grid {
                grid-template-columns: 1fr;
            }
            
            .forum-post {
                flex-direction: column;
                text-align: center;
            }
            
            .post-header {
                justify-content: center;
            }
            
            .post-actions {
                justify-content: center;
            }
        }
        

#skills {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(54, 209, 220, 0.03) 100%);
}

.skills-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.role-card {
    background: white;
    border: 1px solid rgba(149, 117, 205, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(149, 117, 205, 0.15);
}

.role-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.role-icon svg {
    width: 22px;
    height: 22px;
}

.role-body {
    flex: 1;
}

.role-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.role-desc {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.arrow-wrap {
    display: flex;
    justify-content: center;
    margin: 4px 0;
}

@media (max-width: 480px) {
    .role-card {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ── Contact Section ── */
#contact {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(54, 209, 220, 0.03) 100%);
}
 
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
 
.contact-card {
    background: white;
    border: 1px solid rgba(149, 117, 205, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(149, 117, 205, 0.08);
}
 
.contact-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.contact-card-sub {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
 
.form-group {
    margin-bottom: 1.2rem;
}
 
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
 
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(149, 117, 205, 0.3);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: white;
    transition: var(--transition);
    outline: none;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9575CD;
    box-shadow: 0 0 0 3px rgba(149, 117, 205, 0.1);
}
 
.form-group textarea {
    height: 110px;
    resize: vertical;
}
 
.submit-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}
 
/* ── Footer ── */
footer {
    background: var(--dark);
    color: white;
    padding: 0;
}
 
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 5%;
    flex-wrap: wrap;
}
 
.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}
 
.footer-logo {
    height: 50px;
    width: auto;
   
}
 
.footer-socials {
    display: flex;
    gap: 12px;
}
 
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
 
.footer-socials a:hover {
    background: #9575CD;
    transform: translateY(-3px);
}
 
.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: white;
}
 
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
 
.footer-links ul li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}
 
.footer-links ul li a:hover {
    color: #9575CD;
    padding-left: 4px;
}
 
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 5%;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
 
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
 
@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
 
    .slack-banner {
        flex-direction: column;
        text-align: center;
    }
 
    .slack-banner-content {
        flex-direction: column;
        text-align: center;
    }
 
    .slack-btn {
        width: 100%;
    }
}
    .founder-section {
            margin-top:2rem;
            padding:4rem 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(54, 209, 220, 0.03) 100%);
            border-radius: 30px;
        }
        
        .founder-wrapper {
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .founder-image {
            flex: 0 0 300px;
            text-align: center;
        }
        
        .founder-image img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 20px 40px rgba(149, 117, 205, 0.2);
            border: 4px solid white;
            object-fit: cover;
            aspect-ratio: 1 / 1;
        }
        
        .founder-content {
            flex: 1;
            min-width: 300px;
        }
        
        .founder-badge {
            display: inline-block;
            background: #f83abf;
            color: white;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
        }
        
        .founder-content h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        
        .founder-title {
            font-size: 1.2rem;
            color: #f83abf;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .founder-bio {
            margin-bottom: 2rem;
        }
        
        .founder-bio p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 1.2rem;
        }
        
        .founder-quote {
            font-style: italic;
            padding: 1.5rem 2rem;
            background: white;
            border-left: 5px solid #f83abf;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 1.5rem 0;
        }
        
        .founder-quote i {
            color: #f83abf;
            margin-right: 10px;
        }
        
        .founder-social {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .founder-social a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
           
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9575CD;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .founder-social a:hover {
            background: #9575CD;
          
            transform: translateY(-3px);
        }
        
       
        @media (max-width: 768px) {
            .founder-wrapper {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            
            .founder-image {
                flex: 0 0 auto;
            }
            
            .founder-stats {
                justify-content: center;
            }
            
            .founder-social {
                justify-content: center;
            }
            
            .founder-quote {
                text-align: left;
            }
        }
        /* ── Slack Banner ── */
.slack-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #4A154B;
    padding: 24px 32px;
    border-radius: 24px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}

.slack-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slack-icon i {
    font-size: 2.5rem;
    color: white;
}

.slack-banner h3 {
    color: white;
    margin-bottom: 6px;
}

.slack-banner p {
    color: rgba(255, 255, 255, 0.8);
}

.slack-btn {
    background: white;
    color: #4A154B;
    white-space: nowrap;
}

.slack-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #4A154B;
}

/* ── Form Card ── */
.form-card {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ── Prevent horizontal overflow on contact page ── */
#contact {
    overflow-x: hidden;
}

.contact-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.contact-card {
    box-sizing: border-box;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.contact-card-title i {
    color: #9575CD;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-full {
    width: 100%;
}

.form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 768px) {
    .slack-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .slack-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .slack-btn {
        width: 100%;
        text-align: center;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-card-title {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem; /* prevents iOS zoom on focus */
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .submit-btn .btn {
        font-size: 1rem;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .contact-wrapper {
        padding: 0 0.5rem;
    }

    .contact-card {
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}
