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

/* Smooth scrolling with header offset */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed header when scrolling to sections */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

/* Header */
header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 75px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c41e3a; /* IIT Dhanbad Red */
    letter-spacing: -0.5px;
}

.logo a {
    color: #c41e3a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #a01a32;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #c41e3a;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    z-index: 1001;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

/* Add invisible bridge to prevent gap */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.2s ease;
}

/* Keep dropdown open when hovering over it */
.dropdown-content:hover {
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-content a {
    color: #5a6c7d;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #c41e3a;
    padding-left: 24px;
}

/* Hero Section */
.hero {
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #2c3e50;
    background: #f8f9fa;
    margin-top: 75px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #5a6c7d;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: #c41e3a;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 1px solid #c41e3a;
}

.cta-button:hover {
    background: white;
    color: #c41e3a;
}

.cta-button.secondary {
    background: white;
    color: #c41e3a;
    border: 1px solid #c41e3a;
}

.cta-button.secondary:hover {
    background: #c41e3a;
    color: white;
}

/* Main Content */
.main-content {
    background: white;
    padding: 80px 0;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: -0.5px;
}

/* Stats Section - New Design */
.stats-section-new {
    background: white;
    padding: 2rem 0;
    margin: 0;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #c41e3a;
}

.stat-icon {
    color: #c41e3a;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #c41e3a;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-weight: 400;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #c41e3a, transparent);
    flex-shrink: 0;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background-color: #e1e8ed;
    margin: 4rem 0;
    border: none;
}

/* Portfolio Logos Section */
.portfolio-logos {
    background: white;
    padding: 3rem 0;
    overflow: hidden;
}

.portfolio-logos h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 400;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    animation: slide 35s linear infinite;
    width: calc(200% + 4rem);
    will-change: transform;
    backface-visibility: hidden;
}

.logo-item {
    flex: 0 0 auto;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    min-width: 234px;
}

.logo-item img {
    max-height: 117px;
    max-width: 234px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.logo-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Portfolio Page Styles */
.portfolio-hero {
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #2c3e50;
    background: #f8f9fa;
    margin-top: 75px;
}

.portfolio-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.portfolio-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.startup-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.startup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #c41e3a;
}

.startup-logo {
    margin-bottom: 1.5rem;
}

.startup-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.startup-card:hover .startup-logo img {
    transform: scale(1.05);
}

.startup-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.startup-info p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.startup-link {
    display: inline-block;
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid #c41e3a;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.startup-link:hover {
    background: #c41e3a;
    color: white;
}

.startup-status-acquired {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.startup-status-inactive {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 2rem;
}

.portfolio-cta h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.portfolio-cta p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Pitch Page Styles */
.pitch-hero {
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #2c3e50;
    background: #f8f9fa;
    margin-top: 75px;
}

.pitch-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.pitch-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.pitch-hero .cta-button {
    margin-top: 1rem;
}

/* Angels Slider */
.angels-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.angels-track {
    display: flex;
    animation: slideAngels 30s linear infinite;
    width: calc(200% + 2rem);
    will-change: transform;
    backface-visibility: hidden;
}

.angel-card {
    flex: 0 0 auto;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.angel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.angel-photo {
    margin-bottom: 1rem;
}

.angel-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.angel-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.angel-card p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.4;
}

@keyframes slideAngels {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.angels-slider:hover .angels-track {
    animation-play-state: paused;
}

/* Pitch Intro */
.pitch-intro {
    text-align: center;
    max-width: 75%;
    margin: 0 auto;
    padding: 2rem 0;
}

.pitch-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #5a6c7d;
    font-weight: 400;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
}

/* How It Works */
.how-it-works {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps-list {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #c41e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.how-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Qualification Criteria */
.qualification-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.qualification-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.qualification-content h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.qualification-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-style: italic;
}

.criteria-list {
    margin-bottom: 3rem;
}

.criterion {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    text-align: left;
}

.criterion-icon {
    width: 32px;
    height: 32px;
    background: #c41e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.criterion-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.criterion-text p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item:hover {
    border-color: #c41e3a;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #c41e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #a01a32;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: white;
}

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Membership Page Styles */
.membership-hero {
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #2c3e50;
    background: #f8f9fa;
    margin-top: 75px;
}

.membership-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.membership-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.membership-hero .cta-button {
    margin-top: 1rem;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    font-weight: 400;
    margin-bottom: 3rem;
    margin-top: -1rem;
}

/* Members Slider */
.members-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.members-track {
    display: flex;
    animation: slideMembers 30s linear infinite;
    width: calc(200% + 2rem);
    will-change: transform;
    backface-visibility: hidden;
}

.member-card {
    flex: 0 0 auto;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-photo {
    margin-bottom: 1rem;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.member-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-card p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.4;
}

@keyframes slideMembers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.members-slider:hover .members-track {
    animation-play-state: paused;
}

/* Benefits Section */
.benefits-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e1e8ed;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #c41e3a;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Resources Page Styles */
.resources-hero {
    height: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #2c3e50;
    background: #f8f9fa;
    margin-top: 75px;
}

.resources-hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0;
    color: #2c3e50;
    letter-spacing: -1px;
}

/* Resources Container */
.resources-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.resource-category {
    padding: 1.5rem 0;
}

.resource-category h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f9fa;
    text-align: left;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.resource-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.resource-list a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.resource-list a:hover {
    color: #c41e3a;
    padding-left: 0.5rem;
}

/* Team Page Styles */
.team-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    color: #2c3e50;
    background: #f8f9fa;
    margin-top: 75px;
}

.team-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
    letter-spacing: -1px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #c41e3a;
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.1rem;
    color: #c41e3a;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #5a6c7d;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e1e8ed;
}

.member-social .social-link:hover {
    background: #c41e3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* New Team Card Design */
.team-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #c41e3a;
}

.member-photo-new {
    margin-bottom: 1.5rem;
    text-align: center;
}

.member-photo-new img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    transition: all 0.3s ease;
}

.team-card:hover .member-photo-new img {
    transform: scale(1.05);
    border-color: #c41e3a;
}

.member-info-new h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.member-title-new {
    font-size: 1rem;
    color: #c41e3a;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.member-bio-new {
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.member-social-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #5a6c7d;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e1e8ed;
}

.social-link-new:hover {
    background: #c41e3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* Why ISM Angels Section */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Why ISM Angels Section */
.why-section h2 {
    margin-bottom: 3rem;
}

.why-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.why-image {
    text-align: center;
}

.campus-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.why-choose {
    margin-top: 3rem;
}

.why-choose h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6c7d;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.feature h4 a:hover {
    color: #c41e3a;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.feature-content p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Get Involved Section */
.involved-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.involved-option {
    padding: 2.5rem;
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.involved-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.involved-option h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.involved-option p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.involved-option .cta-button {
    display: inline-block;
    margin-top: 1rem;
}

/* Leave us a note Section */
.contact-form-container {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    background: #c41e3a;
    color: white;
    padding: 14px 32px;
    border: 1px solid #c41e3a;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: white;
    color: #c41e3a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

/* Footer */
footer {
    background: #c41e3a;
    color: white;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid #a01a32;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-logo a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-pitch {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-menu {
    display: flex;
    gap: 2rem;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: white;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0.2rem 0;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background: #f8f9fa;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #e1e8ed;
    }

    /* Hero Section */
    .hero {
        height: 400px;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    /* Stats Section - New Design */
    .stats-container {
        flex-direction: column;
        gap: 2rem;
        max-width: 400px;
    }
    
    .stat-card {
        min-width: auto;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent, #c41e3a, transparent);
    }

    /* Why ISM Angels Section */
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-image {
        order: -1;
    }
    
    .campus-image {
        height: 250px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Get Involved Section */
    .involved-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .involved-option {
        padding: 2rem;
    }

    /* Contact Form */
    .contact-form-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-menu-column {
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .portfolio-logos h2 {
        font-size: 1.6rem;
    }
    
    .logo-item {
        min-width: 195px;
        height: 140px;
    }
    
    .logo-item img {
        max-height: 98px;
        max-width: 195px;
    }
    
    .logo-name {
        font-size: 0.8rem;
        max-width: 180px;
    }
    
    .portfolio-hero h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-hero p {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .startup-card {
        padding: 1.5rem;
    }
    
    .portfolio-cta {
        padding: 3rem 1.5rem;
    }
    
    .portfolio-cta h2 {
        font-size: 1.8rem;
    }
    
    .pitch-hero h1 {
        font-size: 2.2rem;
    }
    
    .pitch-hero p {
        font-size: 1rem;
    }
    
    .pitch-intro {
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .how-it-works {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .how-image {
        order: -1;
    }
    
    .how-image img {
        height: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .angel-card {
        min-width: 180px;
        padding: 1rem;
    }
    
    .angel-photo img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .involved-option {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 1.2rem;
        width: 24px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .startup-card {
        padding: 1.25rem;
    }
    
    .startup-logo img {
        width: 120px;
        height: 120px;
    }
    
    .portfolio-cta {
        padding: 2rem 1rem;
    }
    
    .portfolio-cta h2 {
        font-size: 1.6rem;
    }
    
    .pitch-hero h1 {
        font-size: 1.8rem;
    }
    
    .pitch-hero p {
        font-size: 0.9rem;
    }
    
    .angel-card {
        min-width: 160px;
        padding: 0.75rem;
    }
    
    .angel-photo img {
        width: 80px;
        height: 80px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .criterion {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .criterion-icon {
        align-self: center;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .membership-hero h1 {
        font-size: 2.2rem;
    }
    
    .membership-hero p {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-card {
        min-width: 180px;
        padding: 1rem;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
    }
    
    .membership-hero h1 {
        font-size: 1.8rem;
    }
    
    .membership-hero p {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .member-card {
        min-width: 160px;
        padding: 0.75rem;
    }
    
    .member-photo img {
        width: 80px;
        height: 80px;
    }
    
    .team-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .member-photo img {
        width: 150px;
        height: 150px;
    }
    
    .team-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    /* Resources Page Mobile */
    .resources-hero {
        height: 150px;
    }
    
    .resources-hero h1 {
        font-size: 2rem;
    }
    
    .resource-category {
        padding: 1.5rem 0;
    }
    
    .resource-category h2 {
        font-size: 1.3rem;
    }
    
    .resource-list a {
        font-size: 0.95rem;
    }
    
    .team-member {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .member-photo img {
        width: 120px;
        height: 120px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-title {
        font-size: 1rem;
    }
    
    .member-bio {
        font-size: 0.9rem;
    }
    
    .team-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .member-photo-new img {
        width: 180px;
        height: 180px;
    }
}
