﻿body {
    margin: 0;
    padding: 0;
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    font-family: 'Times New Roman';
}

.header {
    background: linear-gradient(to bottom, #9cc3f2, #61a3f2);
    color: white;
    padding: 1px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.university-name {
    font-size: 26px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.title {
    background: linear-gradient(to bottom, #9cc3f2, #61a3f2);
    margin-top: 65px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 5px;
}

.title-table {
    width: 100%;
    border-collapse: collapse;
}

.logo-col {
    width: 80px;
    text-align: center;
    vertical-align: middle;
}

.center-col {
    text-align: center;
    vertical-align: middle;
}

.title-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.title-bottom {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.titlelogo {
    height: 60px;
    width: auto;
}

.main-container {
    flex: 1;
    justify-content: center;
    align-items: center;
}

.row {
    width: 100%;
    display: flex;
}

.box {
    width: 60%;
    margin: 0 auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    padding: 20px;
}

.border {
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.watermark-img {
    position: absolute;
    width: 300px;
    height: auto;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.label-bg {
    background: linear-gradient(to bottom, #9cc3f2, #61a3f2);
    color: white;
    font-weight: bold;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 10px;
    display: block;
    width: 100%;
    margin-top: 0;
}

.footers {
    font-size: 12px;
    bottom: 0;
    width: 100%;
    margin-top: 30px;
    left: 0;
    background: linear-gradient(to bottom, #9cc3f2, #61a3f2);
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}

    .footers p {
        margin: 0;
    }

.creat {
    color: white;
    font-weight: bold;
}

/*.flex-column{
    height: 100%;
}
*/
.speaker-scroll {
    height: 360px;
    overflow: hidden;
    position: relative;
    padding: 5px;
}

.speaker-list {
    animation: scrollSpeakers 120s linear infinite;
}

.speaker-item {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.speaker-photo {
    width: 70px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.speaker-info {
    text-align: left;
    flex: 1;
}

.speaker-name {
    font-weight: bold;
    color: #003366;
    font-size: 14px;
}

.speaker-designation {
    font-size: 12px;
    color: #555;
}

.speaker-org {
    font-size: 12px;
    color: #777;
}

@keyframes scrollSpeakers {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.contact-scroll {
    position: relative;
    min-height: 90px;
    overflow: hidden;
}

.contact-person {
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

    .contact-person:last-child {
        border-bottom: none;
    }

    .contact-person h5 {
        color: #003366;
        font-weight: bold;
        margin-bottom: 1px;
        font-size: 14px;
    }

    .contact-person.active {
        display: block;
    }

.designation {
    font-style: italic;
    margin-bottom: 1px;
    color: #666;
    font-size: 12px;
}

.contact-person a {
    color: #0066cc;
    text-decoration: none;
    word-break: break-all;
    font-size: 12px;
}

.venue-container {
    height: 120px;
    margin-left: 10px;
    text-align: left;
    padding: 10px;
}

.venue-details {
    color: #003366;
    margin-top: 7px;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
    font-size: 14px;
}

.diamond {
    color: #003366;
    margin-right: 5px;
    font-size: 12px;
    line-height: 20px;
}

.about-person {
    position: relative;
    left: 0;
    top: 0;
    opacity: 0;
    width: 95%;
    transition: opacity 1.5s ease-in-out;
    padding-right: 15px;
    display: none;
}

    .about-person.active {
        opacity: 1;
        display: block;
    }

.about-heading {
    color: #003366;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 50px;
    padding-left: 5px;
}

.about-content {
    line-height: 1.8;
    color: black;
    font-size: 14px;
    padding-left: 10px;
    text-align: justify;
}

.keytopics-container {
    width: 95%;
    margin: 5px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.topic-card {
    width: 90%;
    min-height: 20px;
    background: linear-gradient(to right,#ffffff,#f3f8ff);
    border-left: 6px solid #4A90E2;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .topic-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }

.topic-number {
    width: 30px;
    height: 30px;
    background: #4A90E2;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.topic-text {
    font-size: 14px;
    color: #1e3a5f;
    font-weight: 600;
}

.body-section {
    margin-bottom: 30px;
}

.body-title {
    color: #003366;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.committee-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow-y: auto;
}

.body-group {
    position: absolute;
    width: 100%;
    display: none;
    animation: fadeIn 1s;
    display: none;
}

.members-wrap {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 5px;
}

.member-card {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    border-left: 5px solid #4A90E2;
}

.member-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 15px;
}

.member-details {
    text-align: left;
}

.member-name {
    font-size: 18px;
    font-weight: bold;
    color: #003366;
}

.member-designation,
.member-event,
.member-org {
    font-size: 14px;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fee-section {
    width: 70%;
    margin: 10px auto;
}

.fee-title {
    text-align: center;
    color: #003366;
    margin-bottom: 5px;
    font-weight: bold;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

    .fee-table th {
        background: #4A90E2;
        color: white;
        padding: 5px;
        text-align: left;
        font-size: 13px;
    }

    .fee-table td {
        padding: 5px;
        border-bottom: 1px solid #ddd;
        font-size: 12px;
    }

    .fee-table tr:hover {
        background: #f5f9ff;
    }

    .fee-table td:last-child {
        font-weight: bold;
        color: #0066cc;
        text-align: center;
    }

.download-section {
    max-width: 850px;
    margin: 5px auto;
}

.download-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 5px;
    margin-top: 0;
    padding-top: 0;
}

.download-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-left: 5px solid #4A90E2;
    padding: 6px 9px;
    margin: 5px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    transition: .3s;
    width: 90%;
}

    .download-card:hover {
        transform: translateX(5px);
        background: #f8fbff;
    }

.download-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdf-icon {
    font-size: 20px;
}

.doc-name {
    font-size: 14px;
    font-weight: 600;
    color: #003366;
}

.download-btn {
    background: #4A90E2;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

    .download-btn:hover {
        background: #2c6cb0;
        color: white;
    }

.scheduledate {
    border: 1px solid #ccc;
    padding: 10px 15px;
    background: #fff;
    font-size: 16px;
    color: #003366;
    border-radius: 4px;
    min-height: 40px;
    text-align: left;
}

.highlights-date {
    border: 1px solid #ccc;
    padding: 10px 15px;
    background: #fff;
    color: #003366;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
}

.highlight-img {
    width: 90px;
    height: 80px;
    display: block;
    margin: 0 auto 10px auto;
}

.highlight-text {
    text-align: center;
    line-height: 1.5;
}
