/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #0066cc;
}

.header-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-content img {
    width: 100%;
    height: auto;
    display: block;
}

.hospital-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.summit-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 300;
}

.date-venue {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0;
}

.theme {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0;
    font-style: italic;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: #ff8c5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    background-color: rgba(0, 91, 159, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #ffcc00;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 2rem 10px;*/
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #005b9f;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #005b9f, #0083d3);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0083d3;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* About Section */
.about-content {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.invitation {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Faculty Section */
.faculty-tabs,
.faculty-tabs2 {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.tab-btn,
.tab-btn2 {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;

    color: #666;
    position: relative;
    margin: 0 0.5rem;
    font-size: 16px;
}

.tab-btn.active,
.tab-btn2.active {
    color: #005b9f;
}

.tab-btn.active::after,
.tab-btn2.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #005b9f;
}

.tab-content,
.tab-content2 {
    display: none;
}

.tab-content.active,
.tab-content2.active {
    display: block;
}

/* Grid layout for faculty sections */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

@media (max-width: 999px) {
    .faculty-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .profile-card {
        width: 100%;
    }
}

/* Force 2 cards per row on mobile */
@media (max-width: 767px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .faculty-tabs select,
    .faculty-tabs2 select {
        display: block;
        width: 100%;
        padding: 0.6rem;
        margin-bottom: 1rem;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .tab-buttons,
    .tab-buttons2 {
        display: none;
    }

    .profile-name {

        font-size: 12px !important;
    }

    .profile-card {
        width: 100%;
    }
}


#facultyDropdown,
#facultyDropdown2 {
    display: none;
}

/* Show dropdown only on screens smaller than 768px (mobile/tablet) */
@media (max-width: 768px) {
    .nav-container {
        justify-content: end;
    }

    #facultyDropdown,
    #facultyDropdown2 {
        display: block;
        width: 100%;
        padding: 10px;
        font-size: 14px;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .tab-buttons,
    .tab-buttons2 {
        display: none;
        /* Hide tab buttons on mobile */
    }
}

/* Card styling - apply to both .faculty-card and .profile-card */
.faculty-card,
.profile-card {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    width: 100%;
}

/* Hover effect */
.faculty-card:hover,
.profile-card:hover {
    transform: translateY(-5px);
}

/* Name & title styling */
.faculty-name,
.profile-name {
    border-radius: 10px;
    font-size: 14px;
    margin-top: 0.5rem;
    color: #ffffff;
    background-color: #f48120;
    padding: 10px 5px;
}

.faculty-title {
    color: #666;
    font-size: 0.9rem;
}

/* Make sure images are responsive */
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

/* CSS */
#agenda {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.agenda-heading {
    font-size: 32px;
    color: #004a99;
    margin-bottom: 30px;
    position: relative;
}

.agenda-heading::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #007bff;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.agenda-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #004a99;
    font-size: 16px;
    font-weight: 500;
}

.agenda-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.agenda-item small {
    display: block;
    margin-top: 8px;
    color: #444;
    font-size: 13px;
}

.notification-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: Arial, sans-serif;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f8ff;
    border-left: 5px solid #4da6ff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.icon {
    font-size: 20px;
    margin-right: 15px;
}

.check {
    color: #4da6ff;
}

.bell {
    font-size: 18px;
    color: #888;
}

.message {
    flex-grow: 1;
}

.message h4 {
    margin: 0;
    font-size: 16px;
    color: #0077cc;
}

.message p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #666;
}

.meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    color: #555;
}

/* Mobile Styles */
@media (max-width: 600px) {
    .notification-list {
        grid-template-columns: 1fr;
    }
}



/* Registration Section */
.registration-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.registration-info {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.registration-form {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fee-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #ddd;
}

.fee-category {
    font-weight: 600;
    color: #005b9f;
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-weight: 700;
    font-size: 1.2rem;
}

.fee-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.bank-details {
    margin-top: 2rem;
    background-color: #f5f9ff;
    padding: 1.5rem;
    border-radius: 8px;
}

.bank-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #005b9f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0083d3;
}

.qr-code {
    text-align: center;
    margin: 2rem 0;
}

.qr-code img {
    max-width: 200px;
    border: 1px solid #ddd;
    padding: 1rem;
    background-color: white;
}

/* Medicover Stats */
.stats-section {
    background-color: #005b9f;
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
}

.locations {
    margin-top: 3rem;
}

.location-group {
    margin-bottom: 2rem;
}

.location-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffcc00;
}

.location-list {
    list-style: none;
    columns: 2;
}

.location-list li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .summit-title {
        font-size: 2.2rem;
    }

    .tagline,
    .date-venue {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 91, 159, 0.95);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0.8rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .registration-container {
        flex-direction: column;
    }

    .location-list {
        columns: 1;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.8s ease-out;
}

.btn-readmore {
    background: #00539f;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    padding: 0 20px;
    line-height: 42px;
    border: none;
    display: inline-block;
}