/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #121212;
}

/* Ensure fixed header doesn't overlap page content on very small screens */
@media (max-width: 480px) {
    body {
        padding-top: 72px;
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f0f0f0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #E11D48, #16A34A, #F97316);
    border-radius: 2px;
}

/* Sector Color Variables */
:root {
    --fintech-color: #2563EB;
    --medtech-color: #E11D48;
    --agritech-color: #16A34A;
    --infratech-color: #F97316;
    --infratech-secondary: #4B5563;
    --text-dark: #f0f0f0;
    --text-light: #cccccc;
    --bg-light: #1f1f1f;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
    gap: 10px;
}

.tec-logo {
    height: 40px;
    width: auto;
}

.nav-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--fintech-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fintech-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1003;
}

body.menu-open {
    overflow: hidden;
}


.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./Assets/mbs26/mbs26_hero.png') center/cover no-repeat;
    opacity: 0.45;
    z-index: -1;
}

.hero-container {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-date {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--fintech-color), var(--medtech-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-sectors {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.sector-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: rgba(51, 49, 49, 0.45); /* slightly darker for better contrast */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.03);
}

.sector-icon:hover {
    transform: translateY(-10px);
}

.sector-icon i {
    font-size: 2.5rem;
}

.sector-icon.fintech i { color: var(--fintech-color); }
.sector-icon.medtech i { color: var(--medtech-color); }
.sector-icon.agritech i { color: var(--agritech-color); }
.sector-icon.infratech i { color: var(--infratech-color); }

.sector-icon span {
    font-weight: 600;
    font-size: 1rem;
}

/* Scrolling Bar */
.scrolling-bar {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

.scrolling-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.scrolling-content span {
    color: white;
    font-weight: 600;
}

.scrolling-content i {
    color: var(--fintech-color);
    font-size: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #1f1f1f;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr; /* make single column so text spans full width */
    gap: 2rem;
    align-items: flex-start;
}

/* Center the about text now that the image has been removed */
.about .container { /* allow about section container to span full page width */
    max-width: 100%;
    padding: 0 40px;
}

.about-text {
    max-width: none;
    margin: 0;
    text-align: left; /* span left-to-right */
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-point i {
    font-size: 1.5rem;
    color: var(--fintech-color);
    margin-top: 5px;
}

.about-point h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-point p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Sectors Section */
.sectors {
    padding: 5rem 0;
    background: #121212;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sector-card {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.fintech-card::before { background: var(--fintech-color); }
.medtech-card::before { background: var(--medtech-color); }
.agritech-card::before { background: var(--agritech-color); }
.infratech-card::before { background: var(--infratech-color); }

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.sector-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.fintech-card .sector-icon-large i { color: var(--fintech-color); }
.medtech-card .sector-icon-large i { color: var(--medtech-color); }
.agritech-card .sector-icon-large i { color: var(--agritech-color); }
.infratech-card .sector-icon-large i { color: var(--infratech-color); }

.sector-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.sector-desc {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.sector-details {
    margin-top: 1rem;
}

.sector-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.sector-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.sector-details li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.sector-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--agritech-color);
    font-weight: bold;
}

.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.sector-card:hover .sector-overlay {
    opacity: 1;
}

/* Rules Section */
.rules {
    padding: 5rem 0;
    background: #1f1f1f;
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.rules-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.rule-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #2e2e2e;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.rule-item i {
    font-size: 1.5rem;
    color: var(--fintech-color);
    margin-top: 5px;
}

.rule-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.rule-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.sector-expectations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expectation-card {
    background: #2e2e2e;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid;
}

.fintech-expectation { border-color: var(--fintech-color); }
.medtech-expectation { border-color: var(--medtech-color); }
.agritech-expectation { border-color: var(--agritech-color); }
.infratech-expectation { border-color: var(--infratech-color); }

.expectation-card h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expectation-card h4 i {
    color: inherit;
}

.fintech-expectation h4 { color: var(--fintech-color); }
.medtech-expectation h4 { color: var(--medtech-color); }
.agritech-expectation h4 { color: var(--agritech-color); }
.infratech-expectation h4 { color: var(--infratech-color); }

.expectation-card ul {
    list-style: none;
}

.expectation-card li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.expectation-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

/* Registration Section */
.registration {
    padding: 5rem 0;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.registration-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.registration-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.registration-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fintech-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.registration-form {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #2e2e2e;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #2e2e2e;
    color: #f0f0f0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fintech-color);
}

.form-group input[type="email"],
.form-group input[type="tel"] {
    margin-bottom: 0.5rem;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px;
    background: #2e2e2e;
    border: 2px dashed #555;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f0f0f0;
}

.file-label:hover {
    border-color: var(--fintech-color);
    background: rgba(37, 99, 235, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--fintech-color), var(--medtech-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: #1f1f1f;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--fintech-color), var(--medtech-color), var(--agritech-color), var(--infratech-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--fintech-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item:nth-child(2) .timeline-dot { border-color: var(--medtech-color); }
.timeline-item:nth-child(3) .timeline-dot { border-color: var(--agritech-color); }
.timeline-item:nth-child(4) .timeline-dot { border-color: var(--infratech-color); }
.timeline-item:nth-child(5) .timeline-dot { border-color: var(--fintech-color); }
.timeline-item:nth-child(6) .timeline-dot { border-color: var(--medtech-color); }

.timeline-content {
    width: 45%;
    background: #2e2e2e;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--fintech-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Judging Section */
.judging {
    padding: 5rem 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.criterion-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.criterion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.criterion-header h3 {
    color: var(--text-dark);
}

.criterion-weight {
    background: var(--fintech-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fintech-color), var(--medtech-color));
    border-radius: 5px;
    width: 0;
    transition: width 1s ease;
}

.criterion-card:nth-child(2) .progress-fill { background: linear-gradient(90deg, var(--medtech-color), var(--agritech-color)); }
.criterion-card:nth-child(3) .progress-fill { background: linear-gradient(90deg, var(--agritech-color), var(--infratech-color)); }
.criterion-card:nth-child(4) .progress-fill { background: linear-gradient(90deg, var(--infratech-color), var(--fintech-color)); }
.criterion-card:nth-child(5) .progress-fill { background: linear-gradient(90deg, var(--fintech-color), var(--medtech-color)); }

.criterion-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.bonus-criterion {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.bonus-criterion h3 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Prizes Section */
.prizes {
    padding: 5rem 0;
    background: #1f1f1f;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prize-category {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.prize-category:hover {
    transform: translateY(-5px);
}

.prize-category.highlight {
    background: linear-gradient(135deg, var(--fintech-color), var(--medtech-color));
    color: white;
    transform: scale(1.05);
}

.prize-category.highlight h3,
.prize-category.highlight li,
.prize-category.highlight .prize-value {
    color: white;
}

.prize-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prize-category:nth-child(1) .prize-icon { color: var(--fintech-color); }
.prize-category:nth-child(2) .prize-icon { color: white; }
.prize-category:nth-child(3) .prize-icon { color: var(--agritech-color); }

.prize-category h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.prize-category ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.prize-category li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

.prize-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fintech-color);
}

/* Judges Section */
.judges {
    padding: 5rem 0;
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.judge-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.judge-card:hover {
    transform: translateY(-5px);
}

.judge-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--fintech-color);
}

.judge-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.judge-expertise {
    color: var(--fintech-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.judge-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Resources Section */
.resources {
    padding: 5rem 0;
    background: #1f1f1f;
}

.resources-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: #2e2e2e;
    border: 2px solid #555;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f0f0f0;
}

.tab-btn.active {
    background: var(--fintech-color);
    color: white;
    border-color: var(--fintech-color);
}

.tab-btn:hover:not(.active) {
    border-color: var(--fintech-color);
    color: var(--fintech-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.resource-category {
    background: #2e2e2e;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.resource-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-category h3 i {
    color: var(--fintech-color);
}

.resource-category ul {
    list-style: none;
}

.resource-category li {
    padding: 0.5rem 0;
}

.resource-category a {
    color: var(--fintech-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-category a:hover {
    color: var(--medtech-color);
    text-decoration: underline;
}

/* Team Section */
.team {
    padding: 5rem 0;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--fintech-color);
}

.team-member h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--fintech-color);
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex; 
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--fintech-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--medtech-color);
    transform: translateY(-3px);
}

.map-container {
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.map-placeholder {
    width: 60%;
    height: 60%;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--fintech-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {

    .map-container {
        height: 160px;           /* smaller height on mobile */
    }

    .map-container iframe {
        border-radius: 10px;     /* tighter radius for small screens */
    }

    .map-placeholder {
        width: 90%;              /* use more horizontal space */
        height: 100%;            /* fill container height */
        border-radius: 10px;
        padding: 12px;
    }

    .map-placeholder i {
        font-size: 2rem;         /* scale icon down */
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 140px;
    }
}


/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 0.3rem 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--fintech-color);
}

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

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

.footer-social a:hover {
    background: var(--fintech-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    flex-direction: column;
    background: #121212;
    width: 260px;
    text-align: center;
    transition: left 0.3s ease;
    padding-top: 6rem;
    z-index: 1002;
    }


    /* Make links readable on white background */
    .nav-menu .nav-link {
    color: #f0f0f0;
    font-size: 1.1rem;
    padding: 0.75rem 0;
}


    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-sectors {
        gap: 1.5rem;
    }

    .sector-icon {
        padding: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .registration-content {
        grid-template-columns: 1fr;
    }

    .registration-stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: 100% !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .prize-category.highlight {
        transform: none;
    }

    .judges-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .resources-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sector-icon i {
        font-size: 2rem;
    }

    .hero-sectors {
        gap: 1rem;
    }

    .scrolling-content {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .rules-list {
        grid-template-columns: 1fr;
    }

    .sector-expectations {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 1.5rem;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Scroll-triggered animations */
.scroll-trigger {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-trigger.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced glowing effects */
.sector-card {
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fintech-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 99, 235, 0.4) !important;
}

.medtech-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(225, 29, 72, 0.4) !important;
}

.agritech-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(22, 163, 74, 0.4) !important;
}

.infratech-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(249, 115, 22, 0.4) !important;
}

/* Enhanced CTA button glow */
.cta-button {
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6), 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.05);
}

/* Glowing navigation links */
.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
    transform: translateY(-2px);
}

/* Timeline animations */
.timeline-item {
    opacity: 0;
    transition: all 0.6s ease;
}

.timeline-item:nth-child(odd) {
    transform: translateX(-50px);
}

.timeline-item:nth-child(even) {
    transform: translateX(50px);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced judge card hover */
.judge-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.judge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.judge-card:hover .judge-photo i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Prize card enhancements */
.prize-category {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prize-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.prize-category:not(.highlight):hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(37, 99, 235, 0.2);
}

.prize-category.highlight:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.02);
}

/* Form input animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    transform: scale(1.02);
}

/* Social link pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.social-link:hover,
.footer-social a:hover {
    animation: pulse 1s infinite;
}

/* CTA button pulse glow */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4), var(--shadow-lg);
    }
}

/* Dark Footer for MBS Page */
.footer {
    background: #121212 !important;
    border-top: 1px solid #333;
}

.footer-section h3 {
    color: #f0f0f0 !important;
}

.footer-section p,
.footer-section li {
    color: #cccccc !important;
}

.footer-section a {
    color: #cccccc !important;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--fintech-color) !important;
    text-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--fintech-color) !important;
    border-color: var(--fintech-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    color: #999 !important;
}

/* Enhanced hero section */
.hero {
    transition: transform 0.1s ease-out;
}

/* Sector icon hover enhancements */
.sector-icon {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sector-icon:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sector-icon:hover i {
    filter: drop-shadow(0 0 10px currentColor);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Resource tab hover effects */
.tab-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.tab-btn:hover::after {
    left: 100%;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact item hover effects */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item:hover i {
    color: var(--fintech-color);
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
}

/* Expectation card hover */
.expectation-card {
    transition: all 0.3s ease;
}

.expectation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Rule item hover */
.rule-item {
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.rule-item:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Criterion card hover */
.criterion-card {
    transition: all 0.3s ease;
}

.criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* File upload hover enhancement */
.file-label {
    transition: all 0.3s ease;
}

.file-label:hover {
    border-color: var(--fintech-color);
    background: rgba(37, 99, 235, 0.1);
    transform: scale(1.02);
}

/* Submit button enhancements */
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .scroll-trigger {
        transform: translateY(30px);
    }

    .timeline-item {
        transform: translateX(0) !important;
    }

    .cta-button:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .sector-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

.brochure-wrapper {
    margin-top: 10px;
}

.brochure-link {
    display: inline-block;
    text-decoration: none;
    background-color: #2563eb;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.brochure-link:hover {
    background-color: #1e40af;
    transform: translateY(-1px);
}

.registration-form {
    margin-top: 24px;
    text-align: center;
}

.register-now-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.4);
}
.scroll-hint {
    margin-top: 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
    animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.scroll-hint a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.scroll-hint a:hover {
    text-decoration: underline;
}

