/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #0A0A0A;
    color: #E0E0E0;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-logo-text .adroit-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.nav-logo-text .adroit-it {
    color: #0D8BFF;
}

.nav-logo-text .innovation-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    margin: 0 11px;
    text-decoration: none;
    color: #B0B0B0;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0D8BFF;
    text-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #0D8BFF;
    text-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #B0B0B0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #121225 50%, #0a0a1a 100%);
    margin-top: 80px;
}

.hero-background {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: 
        radial-gradient(circle at 10% 20%, rgba(13, 139, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, transparent 48%, rgba(13, 139, 255, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(138, 43, 226, 0.03) 50%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    animation: heroMesh 15s linear infinite;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(13, 139, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 20%);
    z-index: -1;
    animation: subtleMove 20s infinite alternate;
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(10px, 10px);
    }
}

@keyframes heroMesh {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 100px 100px, -100px -100px;
    }
}

.hero-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 50%, rgba(13, 139, 255, 0.02) 50%),
        linear-gradient(-45deg, transparent 50%, rgba(138, 43, 226, 0.02) 50%);
    background-size: 100px 100px;
    z-index: -2;
    opacity: 0.3;
}

.mouse-follower {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (hover: hover) and (min-width: 768px) {
    .hero:hover .mouse-follower {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .mouse-follower {
        display: none;
    }
 

.hero-scroll-indicator {
     margin-bottom: 10px;  
} 
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(20px);
    mix-blend-mode: screen;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.8) 0%, rgba(13, 139, 255, 0) 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8) 0%, rgba(138, 43, 226, 0) 70%);
    bottom: -80px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse, pulse 5s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.8) 0%, rgba(13, 139, 255, 0) 70%);
    top: 50%;
    left: 10%;
    animation: float 12s ease-in-out infinite, pulse 6s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.2;
        transform: scale(1.2);
    }
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-affiliation {
    margin-bottom: 20px;
    text-align: center;
}

.hero-logos {       
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.hero-logo {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    opacity: 1 !important;
}



.adroit-text {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.adroit-it {
    color: #0D8BFF; /* Blue color to match the navbar logo */
}

.innovation-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin-bottom: 5px;
}   



.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
    text-align: center;
    margin-bottom: 5px;
    overflow: visible;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-size: unset;
}



@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.hero-subtitle {
    font-size: 1.8rem;
    color: #E0E0E0;
    margin-bottom: 20px;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.7s forwards;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #B0B0B0;
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 2.0s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease 2.3s forwards;
}

.cta {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta:hover::before {
    width: 100%;
}

.primary {
    background: linear-gradient(135deg, #0D8BFF, #8A2BE2);
    color: white;
    box-shadow: 0 0 20px rgba(13, 139, 255, 0.5);
    animation: pulse 2s infinite;
}

.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 139, 255, 0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(13, 139, 255, 0.5); }
    50% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.8); }
    100% { box-shadow: 0 0 20px rgba(13, 139, 255, 0.5); }
}

.secondary {
    background: transparent;
    color: #0D8BFF;
    border: 2px solid #0D8BFF;
    box-shadow: 0 5px 15px rgba(13, 139, 255, 0.2);
}

.secondary:hover {
    background-color: rgba(13, 139, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 139, 255, 0.3);
}

.hero-scroll-indicator {
    margin-top:-5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.8s ease 2.6s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 10px;
}

.scroll-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.scroll-text-container:hover {
    transform: translateY(-5px);
}

.scroll-text {
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 5px;
    font-weight: 500;
}

.scroll-highlight {
    font-size: 1.1rem;
    color: #0D8BFF;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
    letter-spacing: 0.5px;
    animation: pulseGlow 2s infinite;
    position: relative;
}

.scroll-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0D8BFF, transparent);
    opacity: 0.7;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(13, 139, 255, 0.8);
    }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #0D8BFF;
    border-bottom: 2px solid #0D8BFF;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Recruitment Callout */
.recruitment-callout {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.recruitment-badge {
    background: linear-gradient(135deg, rgba(13, 139, 255, 0.15) 0%, rgba(13, 139, 255, 0.05) 100%);
    border: 1px solid rgba(13, 139, 255, 0.3);
    border-radius: 50px;
    padding: 25px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 139, 255, 0.2),
                0 0 0 1px rgba(13, 139, 255, 0.1) inset;
    backdrop-filter: blur(10px);
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.recruitment-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(13, 139, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.recruitment-header {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(13, 139, 255, 0.5);
    position: relative;
    z-index: 1;
}

.recruitment-header .highlight {
    color: #0D8BFF;
    text-shadow: 0 0 10px rgba(13, 139, 255, 0.7);
}

.recruitment-subtext {
    font-size: 1rem;
    color: #B0B0B0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.recruitment-cta {
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* About Section */
.about-section {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.1) 0%, rgba(13, 139, 255, 0) 70%);
    z-index: 0;
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.section-title span {
    color: #0D8BFF;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #B0B0B0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.about-description p {
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(13, 139, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-left: 4px solid #0D8BFF;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(13, 139, 255, 0.1);
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: #0D8BFF;
}

.mission-statement {
    font-weight: 600;
    font-size: 1.2rem;
    color: #0D8BFF;
    padding: 15px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #0D8BFF;
    grid-column: 1 / -1;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(13, 139, 255, 0.2);
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0% { border-color: #0D8BFF; box-shadow: 0 0 15px rgba(13, 139, 255, 0.2); }
    50% { border-color: #8A2BE2; box-shadow: 0 0 25px rgba(138, 43, 226, 0.3); }
    100% { border-color: #0D8BFF; box-shadow: 0 0 15px rgba(13, 139, 255, 0.2); }
}

.about-features-full {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-content: start;
}

.feature-item {
    padding: 25px;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 12px 35px rgba(13, 139, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.feature-item p {
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* Leadership Section */
 .leadership-section {
    padding: 10px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
    background-image: url('../images/rit.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.leadership-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.6);
    z-index: 0;
}

.leadership-section::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.leadership-section .container {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    width: 100%;
    max-width: none;
    margin-top: -15px;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: #F0F0F0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* Leadership Wrapper */
.leadership-wrapper {
    position: relative;
    width: 100%;
    padding: 0 20px;
}

/* Leadership Row */
.leadership-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    width: 100%;
}

.leadership-row.director-row {
    justify-content: center;
    margin: 0 auto 20px;
    max-width: 400px;
}

.leadership-row.director-row .leader-card {
    margin: 0 auto;
    width: 320px;
    min-width: 320px;
}

.leadership-row:not(.director-row) {
    justify-content: center;
    gap: 30px;
}

.leadership-row:not(.director-row) .leader-card {
    width: 320px;
    min-width: 320px;
}

/* Mobile Leadership Layout */
@media (max-width: 768px) {
    .leadership-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 10px;
        scrollbar-width: thin;
    }
    
    .leadership-wrapper::-webkit-scrollbar {
        display: block;
        height: 8px;
    }
    
    .leadership-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .leadership-wrapper::-webkit-scrollbar-thumb {
        background: rgba(13, 139, 255, 0.5);
        border-radius: 4px;
    }
    
    .leadership-row {
        display: flex;
        min-width: max-content;
        margin-bottom: 10px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 20px;
        padding: 10px 0;
    }
    
    .leadership-row.director-row {
        justify-content: center;
        max-width: none;
        width: auto;
    }
    
    .leadership-row.director-row .leader-card {
        margin: 0;
        width: 280px;
        min-width: 280px;
    }
    
    .leadership-row:not(.director-row) .leader-card {
        width: 280px;
        min-width: 280px;
    }
}

/* Leader Card */
.leader-card {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 320px;
    min-width: 320px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.leader-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 35px rgba(13, 139, 255, 0.2);
}

.leader-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 20px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.leader-card:hover .leader-image {
    border-color: #FFFFFF;
    box-shadow: 0 0 20px rgba(13, 139, 255, 0.5);
}

.leader-image img,
.placeholder-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder Avatar for Upcoming Roles */
.placeholder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 2rem;
    color: #B0B0B0;
}

.leader-info {
    padding: 0 20px 25px;
}

.leader-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.leader-role {
    font-size: 1rem;
    color: #0D8BFF;
    font-weight: 500;
    margin: 0 0 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(13, 139, 255, 0.1);
    color: #0D8BFF;
    border: 1px solid rgba(13, 139, 255, 0.2);
}

/* Scroll Buttons */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 139, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-button:hover {
    background: rgba(13, 139, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.scroll-button:active {
    transform: translateY(-50%) scale(1.05);
}

.scroll-button.left {
    left: 20px;
}

.scroll-button.right {
    right: 20px;
}

.scroll-button.hidden {
    display: none;
}

/* Objectives Section */
.objectives-section {
    padding: 25px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.objectives-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.1) 0%, rgba(13, 139, 255, 0) 70%);
    z-index: 0;
}

.objectives-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.objectives-section .tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.objectives-section .tab-button {
    padding: 15px 30px;
    background: rgba(30, 30, 30, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #B0B0B0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objectives-section .tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(13, 139, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.objectives-section .tab-button:hover::before {
    width: 100%;
}

.objectives-section .tab-button.active {
    background: linear-gradient(135deg, #0D8BFF, #8A2BE2);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(13, 139, 255, 0.3);
}

.objectives-section .tab-button:hover:not(.active) {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(13, 139, 255, 0.3);
    transform: translateY(-3px);
}

.objectives-section .tab-content {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.objectives-section .tab-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.objectives-section .tab-content.active-tab::before {
    transform: scaleX(1);
}

.objectives-section .tab-pane {
    display: none;
}

.objectives-section .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.objectives-section .tab-content-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.objectives-section .content-list {
    list-style: none;
    width: 100%;
    max-width: 600px;
}

.objectives-section .content-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1.1rem;
    color: #E0E0E0;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.objectives-section .content-item:hover {
    background: rgba(13, 139, 255, 0.1);
    transform: translateX(10px);
}

.objectives-section .content-item::before {
    content: "✓";
    color: #0D8BFF;
    font-weight: bold;
    margin-right: 10px;
}
/* Core Domains Section */
.core-domains-section {
    padding: 30px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.core-domains-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.domain-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.domain-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.domain-card.active {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.domain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.domain-card:hover::before {
    transform: scaleX(1);
}

.domain-card.active::before {
    transform: scaleX(1);
}

.domain-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.domain-card:hover .domain-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
}

.domain-card.active .domain-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.7);
}

.domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
    height: 2.4em;
}

.domain-description {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}





.domain-card:hover .domain-description {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.domain-card.active .domain-description {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

/* Teams Section */
.teams-section {
    padding: 35px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.teams-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.1) 0%, rgba(13, 139, 255, 0) 70%);
    z-index: 0;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.team-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.team-card.join-team-card {
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.team-card.join-team-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 40px rgba(13, 139, 255, 0.2);
}

.team-card.join-team-card.selected {
    border: 2px solid #0D8BFF;
    background: rgba(13, 139, 255, 0.1);
    box-shadow: 0 10px 25px rgba(13, 139, 255, 0.3);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 40px rgba(13, 139, 255, 0.2);
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.team-card:hover .team-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(13, 139, 255, 0.7);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.team-badge {
    display: inline-block;
    background: rgba(13, 139, 255, 0.1);
    color: #0D8BFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-purpose {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.team-toggle-btn {
    padding: 10px 20px;
    background: transparent;
    color: #0D8BFF;
    border: 2px solid #0D8BFF;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.3);
}

.team-toggle-btn:hover {
    background-color: rgba(13, 139, 255, 0.1);
    box-shadow: 0 0 15px rgba(13, 139, 255, 0.5);
    transform: translateY(-3px);
}

.team-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.6s ease;
    opacity: 0;
}

.team-details.expanded {
    max-height: 1000px;
    opacity: 1;
    padding-top: 20px;
}

.team-overview {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-responsibilities {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.team-responsibilities li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #B0B0B0;
}

.team-responsibilities li::before {
    content: "•";
    color: #0D8BFF;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

.team-note {
    font-style: italic;
    color: #B0B0B0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Hackathons & Projects Section */
.hackathons-projects-section {
    padding: 25px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.hackathons-projects-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.hackathons-projects-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 15px 30px;
    background: rgba(30, 30, 30, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #B0B0B0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(13, 139, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.tab-button:hover::before {
    width: 100%;
}

.tab-button.active {
    background: linear-gradient(135deg, #0D8BFF, #8A2BE2);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(13, 139, 255, 0.3);
}

.tab-button:hover:not(.active) {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(13, 139, 255, 0.3);
    transform: translateY(-3px);
}

.tab-content {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.tab-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.tab-content.active-tab::before {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.content-list {
    list-style: none;
    width: 100%;
    max-width: 600px;
}

.content-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1.1rem;
    color: #E0E0E0;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.content-item:hover {
    background: rgba(13, 139, 255, 0.1);
    transform: translateX(10px);
}

.content-item::before {
    content: "✓";
    color: #0D8BFF;
    font-weight: bold;
    margin-right: 10px;
}

.industry-logos {
    display: block;
    font-weight: 600;
    color: #0D8BFF;
    margin-top: 5px;
}

/* Projects Timeline Section */
.projects-timeline-section {
    padding: 20px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.projects-timeline-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.1) 0%, rgba(13, 139, 255, 0) 70%);
    z-index: 0;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
}

/* Timeline line */
.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0D8BFF, #8A2BE2);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline items */
.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.appear {
    opacity: 1;
    transform: translateY(0);
}

.timeline-node {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-node.active {
    background: #0D8BFF;
    box-shadow: 0 0 0 8px rgba(13, 139, 255, 0.3);
    animation: pulseNode 2s infinite;
}

.timeline-node.upcoming {
    background: #333;
    border: 2px solid #666;
}

.timeline-content {
    width: calc(50% - 50px);
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 40px rgba(13, 139, 255, 0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.project-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-status.active {
    background: rgba(13, 139, 255, 0.2);
    color: #0D8BFF;
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.3);
}

.project-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: #B0B0B0;
}

.project-description {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes pulseNode {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 139, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(13, 139, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 139, 255, 0);
    }
}

@keyframes glowing-border {
    0% {
        background-position: 0 0;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 400% 0;
        filter: hue-rotate(180deg);
    }
    100% {
        background-position: 0 0;
        filter: hue-rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {

.projects-timeline-section
{
    padding: 30px 0;
}

    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-node {
        left: 30px;
        top: 25px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hands-On Sessions Section (Commented Out for Future Use) */

.sessions-section { 
    padding: 25px 20px;
    background-color: #121212;
    position: relative;
    overflow: hidden;
    margin-top:20px;
    margin-bottom: 20px
}  
    
.sessions-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.sessions-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    padding: 0;
}

.session-tile {
    display: flex;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.session-tile:hover {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 40px rgba(13, 139, 255, 0.2);
    transform: translateY(-5px);
}

.session-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.session-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.session-header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.session-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.session-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid #0D8BFF;
    color: #0D8BFF;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    animation: pulseBadge 3s infinite;
}

.session-badge:hover {
    background: rgba(13, 139, 255, 0.1);
    box-shadow: 0 0 10px rgba(13, 139, 255, 0.3);
}

/* Tooltip for badges */
.session-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.9);
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.session-badge::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(30, 30, 30, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.session-badge:hover::after,
.session-badge:hover::before {
    opacity: 1;
    visibility: visible;
}

.session-description {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 139, 255, 0.2);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(13, 139, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 139, 255, 0);
    }
}

.session-meta {
    display: flex;
    gap: 20px;
}

.session-venue,
.session-datetime {
    font-size: 0.9rem;
    color: #0D8BFF;
    font-weight: 500;
}

.session-availability {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.availability-text {
    font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 500;
}

.availability-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.availability-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Color-coded availability */
.availability-progress[data-seats="12"] {
    width: 60%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.availability-progress[data-seats="5"] {
    width: 30%;
    background: linear-gradient(90deg, #FFC107, #FF9800);
}

.availability-progress[data-seats="2"] {
    width: 10%;
    background: linear-gradient(90deg, #F44336, #E91E63);
}

.book-seat-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #0D8BFF, #8A2BE2);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-left: 20px;
    box-shadow: 0 5px 15px rgba(13, 139, 255, 0.3);
}

.book-seat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 139, 255, 0.5);
}
*/

/* New Simplified Sessions Section */
.sessions-section {
    padding: 50px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.sessions-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.session-overview {
    background: transparent;
    text-align: center;
    margin: 0 auto;
    padding: 1px;
}

.session-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.session-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
}

.overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.overview-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

.rocket-emoji {
    display: none;
}

.overview-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 10px;
}

.overview-description {
    font-size: 1.1rem;
    color: #B0B0B0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(13, 139, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(13, 139, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #0D8BFF;
}

.feature-item span {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 500;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.coming-soon-text .tuned {
    font-size: 1.4rem;
    color: #0D8BFF;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.coming-soon-text .announcements {
    font-size: 1.1rem;
    color: #0D8BFF;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #0D8BFF;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.aws-highlight {
    position: relative;
    color: #FFA500; /* Orange color for AWS */
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}



/* Booking Modal (Commented Out for Future Use) */
/*
.booking-modal {
    max-width: 500px;
}

.session-details {
    margin-bottom: 30px;
}

.session-details h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.session-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #B0B0B0;
}

.info-item i {
    color: #0D8BFF;
    width: 20px;
}
*/

/* Mobile Responsive for Sessions */
@media (max-width: 768px) {

    .sessions-section
    {
        padding: 30px 10px;
    }
    .session-tile {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 8px;
    }
    
    .session-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .session-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .book-seat-btn {
        align-self: flex-start;
        margin-left: 0;
        margin-top: 15px;
    }
    
    .sessions-container {
        padding: 0;
    }
    
    .session-card {
        padding: 10px 15px;
        margin: 0 2px;
        max-width: 100%;
        
    }
    
    .overview-icon {
        display: none;
    }
    
    .mobile-with-icon {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .rocket-emoji {
        display: inline-block;
        font-size: 1.8rem;
    }
    
    .overview-title {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .overview-description {
        font-size: 1rem;
        max-width: none;
        padding: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        margin-top: 10px;
    }
    
    .coming-soon-text .tuned {
        font-size: 1.2rem;
    }
    
    .coming-soon-text .announcements {
        font-size: 0.9rem;
    }
}



/* Connect Section */
.connect-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.connect-section::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.1) 0%, rgba(13, 139, 255, 0) 70%);
    z-index: 0;
}

.connect-section::after {
    content: "";
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.connect-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.closing-line h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #0D8BFF, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.closing-line p {
    font-size: 1rem;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 139, 255, 0.3);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(13, 139, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 139, 255, 0.4);
    border-color: #0D8BFF;
}

.action-btn:hover::before {
    width: 100%;
}

.action-btn i {
    font-size: 1rem;
    color: #0D8BFF;
}

.club-identity {
    text-align: center;
    cursor: pointer;
    margin: 0;
}

.club-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.institute-name {
    font-size: 1rem;
    color: #0D8BFF;
    font-weight: 500;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    transform: translateY(5px);
    line-height: 1.3;
}

.club-identity:hover .institute-name,
.club-identity.active .institute-name {
    opacity: 1;
    max-height: 50px;
    transform: translateY(0);
}

.club-identity:hover .club-name,
.club-identity.active .club-name {
    color: #0D8BFF;
}

.social-media {
    width: 100%;
    margin: 0;
}

.social-media h3 {
    font-size: 1rem;
    color: #B0B0B0;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #B0B0B0;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #0D8BFF;
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(13, 139, 255, 0.4);
}

.navigation-links {
    width: 100%;
    margin: 0;
}

.navigation-links h3 {
    font-size: 1rem;
    color: #B0B0B0;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(13, 139, 255, 0.2);
    color: #0D8BFF;
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.7rem;
}

/* Copyright Line */
.copyright {
    font-size: 0.8rem;
    color: #B0B0B0;
    opacity: 0.7;
    line-height: 1.2;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

/* Mobile Responsive for Connect Section */
@media (max-width: 768px) {
    .connect-section {
        padding: 30px 0;
    }
    
    .closing-line h2 {
        font-size: 1.6rem;
    }
    
    .closing-line p {
        font-size: 0.9rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .club-name {
        font-size: 1.4rem;
    }
    
    .institute-name {
        font-size: 0.9rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Join Section */
.join-section {
    padding: 30px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 139, 255, 0.1) 0%, rgba(13, 139, 255, 0) 70%);
    z-index: 0;
}

.join-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.join-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Achievements & Recognition Section */
.achievements-section {
    padding: 10px 0;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.achievements-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.achievement-panel {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-panel:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.panel-link {
    display: flex;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

.panel-icon {
    font-size: 2.5rem;
    color: #8A2BE2;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.panel-content p {
    font-size: 1rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin: 0;
}

.panel-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8A2BE2;
    font-weight: 600;
    margin-left: auto;
    transition: all 0.3s ease;
}

.achievement-panel:hover .panel-action {
    transform: translateX(5px);
}

.panel-action i {
    transition: all 0.3s ease;
}

.achievement-panel:hover .panel-action i {
    transform: translateX(3px);
}
.intro-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    margin: 0 auto;
}

.intro-card:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 40px rgba(13, 139, 255, 0.2);
}

.intro-card h3 {
    font-size: 1.6rem;
    color: #0D8BFF;
    margin-bottom: 15px;
}

.intro-card p {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: rgba(13, 139, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(13, 139, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.3rem;
    color: #0D8BFF;
    margin-bottom: 8px;
}

.benefit-item span {
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 500;
    text-align: center;
}

.application-info {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.application-info h4 {
    color: #0D8BFF;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.application-info .deadline-date {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.guidelines-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.guideline-item i {
    color: #0D8BFF;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.teams-selection h3 {
    text-align: center;
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.teams-selection .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 25px;
    font-style: italic;
}



.teams-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.selection-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
}

.selection-card:hover {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(13, 139, 255, 0.3);
    box-shadow: 0 15px 40px rgba(13, 139, 255, 0.2);
    transform: translateY(-10px);
}

.selection-card.selected {
    border-color: #0D8BFF;
    background: rgba(13, 139, 255, 0.1);
    box-shadow: 0 10px 25px rgba(13, 139, 255, 0.3);
}

.card-header {
    padding: 25px 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.selection-card:hover .team-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(13, 139, 255, 0.7);
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
}

.card-body {
    padding: 20px;
}

.card-body .team-purpose {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
    margin-bottom: 0;
    min-height: 60px;
}

.application-info .apply-section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.apply-section {
    text-align: center;
    margin-top: 30px;
}

.apply-section .cta {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0D8BFF, #8A2BE2);
    color: white;
    box-shadow: 0 10px 20px rgba(13, 139, 255, 0.3);
    animation: pulse 2s infinite;
}

.apply-section .cta:hover {
    box-shadow: 0 15px 30px rgba(13, 139, 255, 0.5);
    transform: translateY(-5px);
}

.apply-section .cta:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666;
    animation: none;
    box-shadow: none;
}

.apply-hint {
    font-size: 1rem;
    color: #B0B0B0;
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 50px 0;
}

.modal-content {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 139, 255, 0.3);
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    animation: scaleIn 0.3s ease forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.close {
    color: #B0B0B0;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #0D8BFF;
    text-shadow: 0 0 10px rgba(13, 139, 255, 0.5);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 1.8rem;
}

.modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #0D8BFF;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(20, 20, 20, 0.6);
    color: #E0E0E0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0D8BFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 139, 255, 0.2);
}

.form-group input:valid,
.form-group select:valid {
    border-color: #28a745;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1rem;
    color: #B0B0B0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    background: rgba(30, 30, 30, 0.9);
    padding: 0 5px;
    color: #0D8BFF;
}

.form-group input:valid + label,
.form-group select:valid + label,
.form-group textarea:valid + label {
    color: #28a745;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) + label,
.form-group select:invalid:not(:focus):not(:placeholder-shown) + label {
    color: #dc3545;
}

.form-group input[readonly] {
    background-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
}

.form-group input[readonly] + label {
    color: #666;
}

#submitButton {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    background: linear-gradient(135deg, #0D8BFF, #8A2BE2);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 139, 255, 0.3);
}

#submitButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 139, 255, 0.5);
}

#submitButton:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    min-width: 300px;
}

.footer-column {
    margin-right: 40px;
    margin-bottom: 30px;
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: #0D8BFF;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0D8BFF;
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-social h4 {
    color: #0D8BFF;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #B0B0B0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #0D8BFF;
    color: #FFFFFF;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.appear {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-features-full {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .leadership-content {
        gap: 30px;
    }
    
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    

    .hero{
 height: 750px;
 max-height: 1000px;

    }
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .tab-navigation {
        gap: 10px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(20, 20, 20, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 15px;
        margin: 5px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .about-section {
        padding: 70px 0;
    }
    
    .hackathons-projects-section {
        padding: 70px 0;
    }
    
    .teams-section {
        padding: 30px 0;
    }
    
    .join-section {
        padding: 30px 0;
    }
    
    .objectives-section {
        padding: 30px 0;
    }
    
    .leadership-section {
        padding: 0px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features-full {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        padding: 15px;
    }
     .hero{
 height: 750px;
 max-height: 1000px;

    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-logos {
        gap: 20px;
        margin-bottom: 20px;
        margin-top:110px;
    }
    
    .hero-logo {
        max-height: 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta {
        width: 80%;
        max-width: 250px;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 80%;
        max-width: 300px;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leader-card {
        width: 300px;
        min-width: 300px;
        padding: 25px 20px;
    }
    
    .leader-image {
        width: 130px;
        height: 130px;
    }
    
    .scroll-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .objective-card {
        padding: 25px;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-right: 0;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Join Section Mobile */
    .join-content {
        gap: 30px;
    }
    
    .intro-card {
        padding: 20px;
    }
    
    .intro-card h3 {
        font-size: 1.4rem;
    }
    
    .intro-card p {
        font-size: 0.95rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-item {
        padding: 10px;
    }
    
    .benefit-item i {
        font-size: 1.2rem;
    }
    
    .benefit-item span {
        font-size: 0.8rem;
    }
    
    .teams-selection h3 {
        font-size: 1.4rem;
    }
    
    .teams-selection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-icon {
        font-size: 1.8rem;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .card-body .team-purpose {
        font-size: 0.85rem;
    }
    
    .apply-section .cta {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        padding: 20px;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .scroll-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Achievements Section Mobile */
    .achievements-section {
        padding: 20px 0;
    }
    
    .achievements-content {
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .panel-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .panel-action {
        margin-left: 0;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .about-section {
        padding:  35px 0;
        margin-top: 5px;
    }
    
    .hackathons-projects-section {
        padding: 50px 0;
    }
    
    .teams-section {
        padding: 30px 0;
    }
    
    .join-section {
        padding: 30px 0;
    }
    
    .achievements-section {
        padding: 20px 0;
    }
    
    .objectives-section {
        padding: 30px 0;
    }
    
    .leadership-section {
        padding: 0px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
     .hero{
        margin-top: -36px;
 height: 950px;
 max-height: 1000px;

    }

    .scroll-arrow
    {
        margin-top:-21px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    .hero-scroll-indicator
    {
        margin-top: -20px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .content-item {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .leader-card {
        width: 280px;
        min-width: 280px;
        padding: 20px 15px;
    }
    
    .leader-image {
        width: 120px;
        height: 120px;
    }
    
    .scroll-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .leader-name {
        font-size: 1.5rem;
    }
    
    .leader-role {
        font-size: 1rem;
    }
    
    .objective-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .objective-title {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .form-group label {
        top: 12px;
        left: 12px;
    }
    
    .status-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #BD9F67;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4B77A;
}

/* Social Side Navigation */
.social-sidenav {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: rgba(30, 30, 30, 0.8);
    border-left: 2px solid #BD9F67;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.social-sidenav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 8px 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #BD9F67;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-sidenav a:hover {
    background: #BD9F67;
    color: #0A0A0A;
    transform: translateX(-5px);
    box-shadow: 0 0 10px rgba(189, 159, 103, 0.5);
}

.social-sidenav a i {
    transition: all 0.3s ease;
}

.social-sidenav a:hover i {
    transform: scale(1.2);
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .social-sidenav {
        padding: 10px 5px;
    }
    
    .social-sidenav a {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin: 5px 0;
    }

    .core-domains-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .social-sidenav {
        padding: 8px 4px;
    }
    
    .social-sidenav a {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin: 4px 0;
    }
}

/* Responsive styles for Core Domains */
@media (max-width: 1024px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }

     .domain-icon {
        font-size: 2.5rem;
    }
    
    .domain-name {
        line-height: 1.2;
        height: 2.4em;
    }
}

@media (max-width: 768px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .domain-card {
        padding: 25px;
    }
    
    .domain-icon {
        font-size: 2.5rem;
    }
    
    .domain-name {
        font-size: 1.3rem;
        line-height: 1.2;
        height: 2.4em;
    }
}

@media (max-width: 480px) {
    .core-domains-section {
        padding: 30px 0;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .domain-card {
        padding: 20px;
    }
    
    .domain-icon {
        font-size: 2rem;
    }
    
    
    
    .domain-name {
        font-size: 1.2rem;
        line-height: 1.2;
        height: 2.4em;
    }
    
    .domain-description {
        font-size: 0.9rem;
    }
    

}
/* Industry Connections Section */
.aic-industry-section {
    padding: 50px 0;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%), radial-gradient(circle at center, rgba(13, 139, 255, 0.05) 0%, transparent 70%);
    border-top: 1px solid rgba(13, 139, 255, 0.2);
    border-bottom: 1px solid rgba(13, 139, 255, 0.2);
    box-shadow: 0 0 30px rgba(13, 139, 255, 0.1);
}

.aic-industry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.aic-industry-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 35px;
    opacity: 1;
    text-shadow: 0 0 15px rgba(13, 139, 255, 0.4);
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    border-radius: 12px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(13, 139, 255, 0.2);
}

.aic-industry-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0D8BFF, transparent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.aic-industry-logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.aic-industry-logos-scroll {
    display: flex;
    width: max-content;
    animation: aic-industry-scroll 50s linear infinite;
    margin-bottom: 10px;
}

.aic-industry-logos-scroll:hover {
    animation-play-state: paused;
}

@keyframes aic-industry-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.aic-industry-logo-item {
    flex: 0 0 auto;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aic-industry-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 1;
    filter: none;
}

.aic-industry-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
    .aic-industry-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .aic-industry-logo {
        height: 30px;
    }
    
    .aic-industry-logo-item {
        margin: 0 10px;
    }
}

/* Responsive styles for mobile phones */
@media (max-width: 480px) {
    .aic-industry-section {
        padding: 50px 0;
    }
    
    .aic-industry-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .aic-industry-logo {
        height: 25px;
    }
    
    .aic-industry-logo-item {
        margin: 0 8px;
    }
}

/* Social Notification */
.social-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 14px;
    animation: fadeInOut 2s forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}
