.page-banner {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
    background: linear-gradient(135deg, #0b4b8c, #06274f);
    color: #fff;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-subtitle {
    display: inline-block;
    color: #ffd54f;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-title {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 18px;
}

.page-title span {
    color: #ffd54f;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.title-divider span {
    width: 90px;
    height: 3px;
    background: #ffd54f;
    border-radius: 5px;
    animation: lineMove 2s infinite;
}

.title-divider i {
    color: #ffd54f;
    font-size: 22px;
}

.page-description {
    max-width: 760px;
    margin: auto;
    font-size: 17px;
    line-height: 30px;
    color: rgba(255, 255, 255, .9);
}

.breadcrumb-custom {
    margin-top: 30px;
    font-size: 15px;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-custom span {
    margin: 0 8px;
    color: #ffd54f;
}

.breadcrumb-custom strong {
    color: #ffd54f;
}

@keyframes lineMove {
    0% {
        transform: scaleX(.4);
        opacity: .5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(.4);
        opacity: .5;
    }
}

@media(max-width:768px) {
    .page-banner {
        padding: 60px 0 50px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-description {
        font-size: 14px;
        line-height: 24px;
    }

    .title-divider span {
        width: 40px;
    }
    
    .page-subtitle {
        font-size: 12px;
    }
}

.about-left-side {
    height: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.about-left-side p {
    text-align: justify;
    font-size: 1.0em;
    line-height: 1.8;
    color: #ababab;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 500;
}

.committee-area {
    height: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.committee-table {
    border-collapse: separate;
    border-spacing: 0 12px;
    width: 100%;
}

.committee-table th {
    border: none;
}

.committee-table td {
    border: none;
}

@media (max-width: 768px) {
    .committee-table {
        font-size: 0.85rem;
    }
    
    .committee-heading th {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .committee-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .committee-table td i {
        font-size: 1rem;
        margin-right: 8px;
    }
}

/* Heading Style */

.committee-heading th {
    background: linear-gradient(90deg, #0d6efd, #0b5ed7);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 15px 22px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.committee-heading i {
    margin-right: 10px;
    font-size: 20px;
}

/* Member Style */

.committee-table td {
    background: #fff;
    padding: 16px 22px;
    border-left: 5px solid #0d6efd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
    font-size: 15px;
    color: #555;
    transition: .3s;
}

.committee-table td strong {
    color: #111;
}

.committee-table td i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 18px;
}

.committee-table tr td:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, .12);
}

.contact-card-committee {
    background: #fff;
    border: 2px solid #0d6efd20;
    border-radius: 22px;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;
}

.contact-card-committee:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, .15);
}

.contact-card-committee .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.contact-card-committee .contact-subtitle {
    display: block;
    color: #0d6efd;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.contact-card-committee h2 {
    font-size: 27px;
    font-weight: 700;
    color: #0b2345;
    margin-bottom: 8px;
}

.contact-card-committee h5 {
    color: #444;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-card-committee p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-card-committee .contact-mail {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.contact-card-committee .contact-mail:hover {
    background: #083d8c;
    color: #fff;
}

.contact-card-committee .contact-mail i {
    margin-right: 10px;
}

.technical-lecture-session-inner .topic-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 22px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    overflow: hidden;

    border: 1px solid rgba(2, 20, 73, .12);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .06),
        0 25px 50px rgba(13, 110, 253, .08);

    transition: all .4s ease;
}

@media (max-width: 768px) {
    .technical-lecture-session-inner .topic-card {
        padding: 25px 20px;
    }
    
    .technical-lecture-session-inner .topic-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .technical-lecture-session-inner .topic-card p {
        font-size: 14px;
    }
}

.technical-lecture-session-inner .topic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #021449, #00c6ff);
}

/* Decorative Circle */
.technical-lecture-session-inner .topic-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .05);
    top: -70px;
    right: -70px;
    transition: .4s;
}

.technical-lecture-session-inner .topic-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 18px 35px rgba(2, 20, 73, .12),
        0 35px 70px rgba(13, 110, 253, .15);
}

.technical-lecture-session-inner .topic-card:hover::after {
    transform: scale(1.3);
}

.technical-lecture-session-inner .topic-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef4ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.technical-lecture-session-inner .topic-card p {
    color: #ababab;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.venue-section {
    background: #fafafa;
}

.venue-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    border-top: 3px solid #0b5ed7;
    transition: .35s;
}

.venue-card:hover {
    transform: translateY(-8px);
}

.venue-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.venue-icon {
    width: 60px;
    height: 60px;
    background: #0b5ed7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px #0d6efd;
}

.venue-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.venue-subtitle {
    display: inline-block;
    margin-top: 8px;
    background: #EEE;
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.venue-detail {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.venue-detail i {
    width: 40px;
    height: 40px;
    background: #00c6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.venue-detail h5 {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
}

.venue-detail p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.venue-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.venue-tags span {
    padding: 7px 18px;
    font-size: 14px !important;
    background: #EEE;
    border-radius: 50px;
    color: #000;
    font-weight: 600;
}

.venue-tags i {
    margin-right: 6px;
    color: #000;
}

.venue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 260px;
    height: 40px;
    margin: auto;
    background: linear-gradient(135deg, #0b5ed7, #0d6efd);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.venue-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(179, 0, 0, .35);
}

.venue-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.venue-image:hover img {
    transform: scale(1.08);
}

.venue-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .05));
}

.venue-caption {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #0B5ED7;
    padding: 18px 30px;
    border-radius: 12px;
    color: #fff;
}

.venue-caption h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.venue-caption p {
    margin: 5px 0 0;
    font-size: 16px;
}

@media(max-width:991px) {
    .venue-image {
        min-height: 350px;
    }
}

@media(max-width:768px) {
    .venue-card {
        padding: 20px;
    }

    .venue-header {
        flex-direction: column;
        text-align: center;
    }

    .venue-header h3 {
        font-size: 20px;
    }

    .venue-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px;
    }

    .venue-caption h3 {
        font-size: 18px;
    }

    .venue-btn {
        width: 100%;
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .venue-image {
        min-height: 250px;
    }
}

@media(max-width:768px) {
    .contact-card-committee {
        padding: 25px 20px;
    }

    .contact-card-committee .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-card-committee h2 {
        font-size: 24px;
    }

    .contact-card-committee h5 {
        font-size: 16px;
    }

    .contact-card-committee p {
        font-size: 15px;
    }

    .contact-card-committee .contact-mail {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.submission-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 40px;
    background: #fff;
    border-radius: 18px;
    border-left: 2px solid #0B5ED7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

@media (max-width: 768px) {
    .submission-section {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
        text-align: center;
    }
    
    .submission-text h3 {
        font-size: 1.25rem;
    }
    
    .submission-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 10px 20px;
    }
}

.submission-text {
    flex: 1;
}

.submission-text h3 {
    font-size: 25px;
    font-weight: 700;
    color: #222;
    margin-bottom: -2px;
}

.submission-action {
    flex-shrink: 0;
}

.submission-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 35px;
    background: linear-gradient(135deg, #0B5ED7, #0d6efd);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 10px 25px #00c6ff;
}

.submission-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px #0b5ed7;
}

@media(max-width:768px) {

    .submission-section {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .submission-btn {
        width: 100%;
        justify-content: center;
    }

}

.important-date-table {
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
}

.important-date-table th,
.important-date-table td {
    padding: 18px 22px;
    vertical-align: middle;
    border-color: #ececec;
}

.important-date-table th {
    background: #fafafa;
    font-weight: 600;
    color: #333;
}

.important-date-table td {
    background: #fff;
    text-align: center;
}

.important-date-table .date-pill {
    display: inline-block;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}

.important-date-table tr:hover {
    background: #f8fbff;
}

@media(max-width:768px) {

    .important-date-table th,
    .important-date-table td {
        padding: 14px;
        font-size: 15px;
    }

    .important-date-table th {
        width: 60%;
    }

    .important-date-table .date-pill {
        font-size: 13px;
        padding: 7px 14px;
    }
}

.contact-card,
.map-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    height:100%;
}

.contact-card{
    padding:35px;
    position:relative;
}

.contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#143d6b;
}

.contact-title{
    font-size:30px;
    font-weight:700;
    color:#143d6b;
    margin-bottom:12px;
}

.contact-text{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:35px;
    font-size:15px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:16px 0;
    border-bottom:1px dashed #e8edf3;
    transition:.3s;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item:hover{
    padding-left:8px;
}

.contact-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#f3f7fc;
    border:1px solid #dbe7f4;
    color:#143d6b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.3s;
}

.contact-item:hover .contact-icon{
    background:#143d6b;
    color:#fff;
}

.contact-item h5{
    margin:0 0 4px;
    font-size:17px;
    font-weight:600;
    color:#222;
}

.contact-item p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.map-card{
    padding:8px;
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:none;
    border-radius:12px;
}

@media(max-width:991px){

    .contact-card{
        padding:25px;
    }

    .contact-title{
        font-size:24px;
    }

    .map-card iframe{
        min-height:350px;
    }

}
