body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.container {
    width: 80%;
    padding: 0px 10%;
    display: flex;
    flex-direction: column;
}

.logo {
    font-weight: 700;
    /* Bold for primary font */
    font-size: 24px;
}

.logo img {
    width: auto;
    height: 30px;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 300;
}
@media (max-width: 760px) {
    .container {
        width: 100%;
    }
    .nav-links a{
        font-size: 4vw;
    }
    .navbar {
        padding: 20px 2%;
    }
}
.banner-section {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-imgSQ {
    display: block;
    width: 100%;
}

.banner-imgHD {
    display: none;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.banner-title {
    font-weight: 700;
    font-size: 3em;
    margin: 0 0 20px;
}

.banner-description {
    font-weight: 300;
    font-size: 1.2em;
    max-width: 500px;
}

/* startups */
.startups-section {
    text-align: center;
    /* padding: 60px 0px; */
    background: #fff;
    margin-bottom: 20px;
}

.startup-section-title {
    width: 100vw;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    /* background-color: #000; */
    color: black;
    margin-bottom: 30px;
    margin-top: 0px;
}

.section-title {
    width: 100vw;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    background-color: #000;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 0px;
    padding: 20px 0px;
}

.startups-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: center;
    align-items: center;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.startup-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.startup-image {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.startup-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
    color: black;
    padding: 20px;
}



.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-weight: 300;
    font-size: 0.9em;
}

.startup-title {
    font-weight: 700;
    font-size: 1.1em;
    text-align: left;
}

.startups-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease;
}

.dot.active {
    background-color: #333;
}
@media (max-width: 1200px) {
    .startups-slider {
    justify-content: flex-start;
    margin-left:20px;
}
}
/* team */
.team-section {
    background: #fff;
    text-align: center;
}

.team-container {
    margin-bottom: 50px;
}

.team-name {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
    justify-content: center;
    gap: 20px;
}

.team-card {
    display: flex;
    width: 300px;
    height: min-content;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    overflow: hidden;
    /* border: 1px solid red; */
    flex-direction: column;
}

.team-card:hover {
    transform: scale(1.05);
}

.member-image {
    width: 100%;
    height: 65%;
    max-height:500px;;
    display: block;
    overflow-y: hidden;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 15px;
    text-align: start;
}

.member-role {
    font-weight: 700;
    font-size: 1.1em;
    margin: 5px 0;
}

.member-name {
    font-weight: 300;
    font-size: 1em;
    margin: 5px 0 15px;
}

.linkedin-button {
    display: inline-block;
    width: 80%;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s;
}

.linkedin-button:hover {
    background: #333;
}

/* footer */
.footer-section {
    background: #f2f2f2;
    padding: 50px 20px 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1 1 250px;
    max-width: 300px;
}

.footer-heading {
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.footer-column p {
    font-weight: 300;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-email {
    font-weight: 700;
    font-size: 1em;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    font-weight: 300;
    font-size: 0.9em;
}

.footer-email a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.footer-email a:hover {
    text-decoration: underline;
}