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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #bdfff6, #ffffff,#b7d7f5);
    color: #003B71;
    min-height: 100vh;
    position: relative;
}

/* Remove animated background */
body::before {
    display: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 40px;
}

.nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav {
    display: none;
}

.nav-links a {
    color: #003B71;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    background: rgba(0, 59, 113, 0.1);
}

/* Ask AI Button Styles */
.nav-links a.ask-ai-btn {
    background: linear-gradient(90deg, #00e6ff, #0099ff);
    color: white !important;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
}


.nav-links a.ask-ai-btn:hover {
    background: linear-gradient(90deg, #00e6ff, #0099ff);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.search {
    position: relative;
    display: flex;
    align-items: center;
}

.search .search-icon {
    position: absolute;
    left: 12px;
    color: #003B71;
    font-size: 1rem;
    z-index: 2;
}

.search input {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #003B71;
    background: white;
    color: #003B71;
    width: 200px;
}

.search input::placeholder {
    color: rgba(0, 59, 113, 0.7);
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

footer {
    background: #003B71;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: white;
}

.contact-info, .connect {
    margin: 1rem;
}

.social-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav button {
    background: none;
    border: none;
    color: #003B71;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
}

.mobile-nav button:hover {
    background: rgba(0, 59, 113, 0.1);
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .mobile-nav {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(0, 59, 113, 0.1);
        justify-content: flex-start;
        gap: 1rem;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-container.active {
        transform: translateX(0);
    }

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

    .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        text-align: center;
        font-size: 1.1rem;
        color: #003B71;
        background: white;
        border-radius: 8px;
        border: 1px solid rgba(0, 59, 113, 0.1);
    }

    .nav-links a:hover {
        background: rgba(0, 59, 113, 0.1);
    }

    .search {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(0, 59, 113, 0.1);
        position: relative;
        border-radius: 8px;
        background: white;
    }

    .search .search-icon {
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        color: #003B71;
    }

    .search input {
        width: 100%;
        padding: 0.8rem 1rem 0.8rem 2.5rem;
        background: transparent;
        border: none;
        color: #003B71;
    }

    .search input::placeholder {
        color: rgba(0, 59, 113, 0.7);
    }

    
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
  }
  


.hero-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.hero-logo {
    width: 280px;
    height: auto;
    margin-top: 15%;
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-in-out;
}

.hero h1 {
    width: 40%;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #7D2181; 
    animation: slideUp 1s ease-out;
}


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

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

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        width: 80%;
    }
    
    .hero-logo {
        width: 220px;
    }
    
   
}

/* What is EMBS Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10%;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    flex-direction: row;
}

.about-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #7D2181;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #7D2181;
    text-align: justify;
    /* Adding text wrapping properties */
    text-wrap: balance;
    border-radius: 0 50px 50px 0;
    padding-right: 2rem;
}

.dna-image-container {
    position: relative;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Adding shape properties for text wrapping */
    shape-outside: circle(50%);
    float: right;
    margin-left: 2rem;
}

.dna-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}


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

@media screen and (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 3rem 5%;
    }
    
    .about-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .dna-image-container {
        width: 70%;
        order: 1;
        margin: 1.5rem auto;
        float: none;
    }
    
    .about-text {
        order: 2;
    }
}

@media screen and (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .dna-image-container {
        order: 1;
        width: 90%;
    }
    .about-text {
        width: 100%;
        font-size: 1.2rem;
        order: 2;
    }
}
/* Co-Founders Section */
.founders-section {
    padding: 5rem 5%;
    text-align: center;
    
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7D2181;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.founder-card {
    border-radius: 100px;
    padding: 2rem 1rem 0 1rem;
    height: 400px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.founder-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.founder-card p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

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

.social-icons a {
    color: white;
    font-size: 0.9rem;
    width: 25px;
    height: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.founder-image {
    width: 110%;
    height: 100%;
    margin-top: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 100px 100px;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


/* Card color variations */
.light-purple {
    background-color: #b565b9;
}

.lighter-purple {
    background-color: #d8a6dd;
}

.dark-purple {
    background-color: #5e2a62;
}

.medium-purple {
    background-color: #b565b9;
}

.lightest-purple {
    background-color: #e2c1e6;
}

/* Responsive adjustments */


@media screen and (max-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .founder-card {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .founder-card {
        height: 300px;
        width: 150px;
        border-radius: 100px;
        padding: 1rem 0.5rem;
    }
    
    .founder-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .founder-card p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .social-icons a {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
}

/* Counselor Section */
.counselor-section {
    padding: 5rem 5%;
    text-align: center;
   
}

.counselor-card {
    max-width: 450px;
    margin: 0 auto;
    background-color: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #d8a6dd; /* Updated to light purple border color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counselor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #b7e9ff;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counselor-image img {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: auto;
    border-radius: 50%;

}

.counselor-card h3 {
    color: #7D2181;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.counselor-card p {
    color: #7D2181;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .counselor-card {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .counselor-image {
        width: 120px;
        height: 120px;
    }
}
/* What We Do Section */
.what-we-do-section {
    padding: 5rem 5%;
    text-align: center;
   
}

.committees-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.committee-card {
    background-color: white;
    border-radius: 25px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #0096ED;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.committee-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.committee-icon img {
    max-width: 100%;
    max-height: 100%;
}

.committee-card h3 {
    color: #7D2181;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.section-title {
    font-size: 3.5rem;
    font-weight:800;
    color: #7D2181;
}
.committee-card p {
    color: #7D2181;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .committees-container {
        gap: 1.5rem;
    }
    
    .committee-card {
        width: calc(50% - 1.5rem);
    }
}

@media screen and (max-width: 768px) {
    .committee-card {
        width: 100%;
        max-width: 350px;
    }
}
/* Past Sessions Section */
.past-sessions-section {
    padding: 5rem 5%;
    text-align: center;
   
}

.session-content {
    max-width: 1200px;
    margin: 0 auto;
}

.session-description {
    width: 65%;
    color: #7D2181;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.session-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gallery-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 180px;
    transition: transform 0.3s ease;
}

.gallery-image.main-image {
    width: 350px;
    height: 220px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-image:hover {
    transform: translateY(-10px);
}

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

@media screen and (max-width: 992px) {
    .session-gallery {
        gap: 1rem;
    }
    
    .gallery-image {
        width: 200px;
        height: 150px;
    }
    
    .gallery-image.main-image {
        width: 280px;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .session-gallery {
        flex-direction: column;
    }
    
    .gallery-image, .gallery-image.main-image {
        width: 90%;
        height: 200px;
        max-width: 350px;
    }
}

/* Stay Updated Section */
.stay-updated-section {
    background-color: #7D2181;
    padding: 1.5rem 0;
    text-align: center;
    color: white;
}

.update-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.update-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.social-media-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-circle {
    width: 40px;
    height: 40px;
    text-decoration: none;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background-color: white;
    color: #7D2181;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .update-content {
        gap: 1rem;
    }
}
