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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0e27;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

header {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 98, 155, 0.95) 0%, rgba(0, 61, 92, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 98, 155, 0.3);
    z-index: 1000;
    animation: slideDown 0.8s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #00d4ff;
}

#canvas-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #00629B, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-overlay p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.5s both;
}

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

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #00629B);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: fadeInUp 1s ease 0.7s both;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.section {
    margin-bottom: 6rem;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.robot-canvas-section {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 98, 155, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.robot-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.robot-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: #00d4ff;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.feature h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature p {
    opacity: 0.9;
    line-height: 1.8;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.session-card {
    background: linear-gradient(135deg, rgba(0, 98, 155, 0.2), rgba(0, 61, 92, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.session-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.session-card:hover::before {
    left: 100%;
    top: 100%;
}

.session-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.session-card h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.session-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.session-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.session-info span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #00d4ff;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4ff, #00629B);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

footer {
    background: rgba(0, 61, 92, 0.5);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 1;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }
}
/* All previous CSS remains the same, adding these new styles at the end */

/* Session Details Styles */
.session-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 1.5rem;
}

.session-details.active {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
}

.clickable-session {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-session:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.program-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #00d4ff;
}

.program-section h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-item {
    margin-bottom: 1.5rem;
}

.program-item h5 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.program-item ul {
    list-style: none;
    padding-left: 0;
}

.program-item li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.program-item li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #00d4ff;
}

/* Resources Section Styles */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-category {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-category:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.resource-category h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.resource-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.resource-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-item div {
    flex: 1;
}

.resource-item strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 0.3rem;
}

.resource-item p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .program-section {
        padding: 1rem;
    }
    
    .resource-category {
        padding: 1.5rem;
    }
}
/* Add to existing styles.css */
.session-btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    width: auto;
    display: inline-block;
}


.session-card {
    text-align: center;
}

.session-card .btn {
    margin-top: 1.5rem;
}
.edsoc-logo img {
    height: 300px; /* Custom height */
    width: auto;
}
.hero-title {
  margin-top: -240px; /* Reduced from 150px to move it higher */
  font-size: clamp(6rem, 12vw, 8rem); /* More reasonable but still very large */
  font-weight: 400; /* Even bolder */
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00d4ff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.1; /* Tighter line height for big text */
  text-transform: uppercase; /* Makes it more impactful */
  letter-spacing: -2px; /* Slightly tighter letter spacing for big text */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2c4e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Stars Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* 3D Canvas Hero Section */
#hero-canvas {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 15px;
    margin: 2rem 0;
}

.canvas-container {
    position: relative;
    margin: 2rem auto;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    pointer-events: none;
}

.hero-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #00d4ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.hero-overlay .btn {
    pointer-events: all;
    text-shadow: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header - Compact */
header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 2rem;
}

.logo-text h1 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.logo-text p {
    font-size: 0.85rem;
    opacity: 0.7;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #00d4ff;
}

/* Compact Logo Bar */
.logo-bar {
    background: rgba(0, 212, 255, 0.05);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.logos-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.logos-compact a {
    opacity: 0.8;
    transition: all 0.3s;
}

.logos-compact a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.logos-compact img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Hero - More Compact */
.hero {
    background: linear-gradient(135deg, rgba(0, 98, 255, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 15px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: none; /* Hide this, will use canvas instead */
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #0062ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #00d4ff, #0062ff);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* Sections - Reduced Padding */
section {
    margin: 3rem auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00d4ff;
}

/* About Cards - 2 Column Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.5);
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #00d4ff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-logo {
    text-align: center;
    margin: 1rem 0;
}

.card-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    background: rgba(0, 212, 255, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.info-item strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 0.3rem;
}

/* Features - 3 Column */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature p {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Workshop - Single Card */
.workshop-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.workshop-card h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.workshop-card > p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.workshop-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.workshop-info span {
    background: rgba(0, 212, 255, 0.1);
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

/* Resources - 2 Column Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.resource-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.resource-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.resource-link:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(5px);
}

.resource-icon {
    font-size: 1.2rem;
}

/* Footer - Compact */
footer {
    background: rgba(10, 22, 40, 0.95);
    border-top: 2px solid rgba(0, 212, 255, 0.3);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logos img:hover {
    opacity: 1;
}

footer p {
    opacity: 0.7;
    margin: 0.3rem 0;
}

.credibility-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
    font-style: italic;
}

/* ============================================
   CONTRIBUTORS SECTION - Add this to style.css
   ============================================ */

/* Contributors Section */
#contributors {
    padding: 3rem 0;
}

.contributor-category {
    margin-bottom: 3rem;
}

.contributor-category h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.contributor-card {
    min-width: calc(33.333% - 1.35rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.contributor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
}

.contributor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0062ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    border: 3px solid rgba(0, 212, 255, 0.3);
}

.contributor-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.contributor-affiliation {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contributor-role {
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.slider-btn:hover:not(:disabled) {
    background: rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #00d4ff;
    width: 30px;
    border-radius: 5px;
}

/* Responsive Design for Contributors */
@media (max-width: 968px) {
    .contributor-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .contributor-card {
        min-width: 100%;
    }
    
    .contributor-category h3 {
        font-size: 1.3rem;
    }
    
    .contributor-name {
        font-size: 1.1rem;
    }
}