/*------logos------*/
.logo-bar {
    background: #f4f4f4;
    padding: 20px 40px;
    border-bottom: 2px solid #e0e0e0;
}
.logo-bar .container-fluid {
    padding: 0 40px;
}
.logo-bar .logo {
    height: 100px;
    padding: 8px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.logo-bar .col-auto:first-child .logo {
    height: 80px;
    padding: 10px 24px;
}
.logo-bar .col-auto:first-child .logo img {
    max-width: 200px;
}
.logo-bar .logo:last-child {
    border-left: 0px solid #d0d0d0;
    margin-left: 0px;
    padding-left: 40px;
}
.logo-bar .logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(112,15,26,0.18);
}
.logo-bar .logo img {
    height: 100%;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}



/*------navbar------*/
.navbar-custom {
    background: #700f1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar-custom .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 12px 34px;
    transition: background 0.3s;
    border-radius: 4px;
}
.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    background: #5a0c14;
    color: #fff;
}
.navbar-custom .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*------hero------*/
.hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #1a1a1a;
}
.hero-slides {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}
.hero-slide {
    width: calc(100% / 2);
    height: 100%;
    position: relative;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(112,15,26,0.75), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.hero-overlay h1 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: slideUp 1s ease forwards;
}
.hero-overlay p {
    font-size: 45px;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: slideUp 1s ease 0.3s forwards;
    opacity: 0;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 2px solid #fff;
}
.hero-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(112,15,26,0.7);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background 0.3s;
}
.hero-arrow:hover { background: #5a0c14; }
.hero-arrow.prev { left: 15px; }
.hero-arrow.next { right: 15px; }

/*------overview------*/
.overview-section {
    background: #f4f4f4;
}
.overview-section .row {
    display: flex;
    align-items: stretch;
}
.overview-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #700f1a;
    margin-bottom: 16px;
}
.overview-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #700f1a;
    margin-top: 10px;
    border-radius: 2px;
}
.overview-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    text-align: justify;
}
.outcomes-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.outcomes-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #700f1a;
    margin-bottom: 12px;
}
.outcomes-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}
.outcomes-list li {
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    padding: 6px 0;
}
.outcomes-list li::marker {
    color: #700f1a;
    font-weight: bold;
}
.video-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #000;
    margin-top: 11%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-local {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    cursor: pointer;
}
.video-local:hover ~ .video-play-btn {
    background: #cc0000;
    transform: translate(-50%, -50%) scale(1.08);
}
.video-thumb {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #000;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 56px;
    background: #ff0000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}
.video-play-btn svg {
    margin-left: 4px;
}
.video-thumb:hover .video-play-btn {
    background: #cc0000;
    transform: translate(-50%, -50%) scale(1.08);
}
.video-thumb:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -3px;
}
.video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    text-align: center;
    padding: 20px;
}
.video-fallback-inner {
    max-width: 320px;
}
.video-fallback-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #700f1a;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    padding-left: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.video-fallback-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.video-fallback-text {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.video-fallback-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff0000;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.video-fallback-btn:hover {
    background: #cc0000;
    color: #fff;
    transform: scale(1.05);
}
.video-wrapper.has-fallback {
    height: auto;
    padding-bottom: 0;
}
.video-wrapper.has-fallback .video-fallback {
    position: static;
    min-height: 260px;
}

/*------gala-video section (embedded OGala video)------*/
.news-thumb {
    overflow: hidden;
}
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*------video section (reusable YouTube player)------*/
.video-section {
    background: #f4f4f4;
}
.video-section h2 {
    text-align: center;
    font-size: 36px;
    color: #700f1a;
    margin-bottom: 40px;
}
.video-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #700f1a;
    margin: 10px auto 0;
    border-radius: 2px;
}
.youtube-player {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.youtube-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*------cards------*/
.tracks-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #700f1a;
    margin-bottom: 40px;
}
.tracks-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #700f1a;
    margin: 12px auto 0;
    border-radius: 2px;
}
.flip-card {
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.flip-card-front {
    background: linear-gradient(135deg, #006633, #004d26);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.card-bg-1 {
    background: linear-gradient(rgba(0, 60, 30, 0.7), rgba(0, 45, 22, 0.7)), url('../images/01b.jpg') center/cover;
}
.card-bg-2 {
    background: linear-gradient(rgba(0,102,51,0.5), rgba(0,77,38,0.5)), url('../images/02a.jpg') center/cover;
}
.card-bg-3 {
    background: linear-gradient(rgba(0,102,51,0.5), rgba(0,77,38,0.5)), url('../images/03a.jpg') center/cover;
}
.card-bg-4 {
    background: linear-gradient(rgba(0,102,51,0.5), rgba(0,77,38,0.5)), url('../images/slide1.jpg') center/cover;
}
.flip-card-front .card-icon {
    font-size: 50px;
    margin-bottom: 16px;
}
.flip-card-front h3 {
    font-size: 22px;
    font-weight: 700;
}
.flip-card-front .card-subtitle {
    font-size: 16px;
    margin-top: 0px;
    opacity: 0.9;color: #fff;
}
.flip-card-back {
    background: #fff;
    border: 3px solid #e0e0e0;
    color: #333;
    transform: rotateY(180deg);
    text-align: center;
}
.flip-card-back p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.flip-card-back .btn-sub {
    display: inline-block;
    padding: 10px 24px;
    background: #700f1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.flip-card-back .btn-sub:hover {
    background: #5a0c14;
    transform: scale(1.05);
}
.btn-call {
    display: inline-block;
    padding: 14px 40px;
    background: #8b1a2b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}
.btn-call:hover {
    background: #5a0c14;
    transform: scale(1.05);
    color: #fff;
}

/*------benefits (What's in It for You?)------*/
.benefits-section {
    background: #f4f4f4;
}
.section-head {
    text-align: center;
    margin-bottom: 45px;
}
.section-tag {
    display: inline-block;
    background: rgba(112,15,26,0.1);
    color: #700f1a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.section-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: #700f1a;
    margin-bottom: 12px;
}
.registration-section .section-head h2 {
    margin-bottom: 2px;
    line-height: 1.0;
}
.section-head h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #700f1a;
    margin: 12px auto 0;
    border-radius: 2px;
}
.read-carefully {
    font-size: 18px;
    font-weight: 400;
    color: #700f1a;
    line-height: 1.0;
}
.section-sub {
    color: #666;
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.benefit-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    border: 1px solid rgba(112,15,26,0.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5c2568, #7a3488);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(92,37,104,0.15);
    border-color: rgba(92,37,104,0.2);
}
.benefit-card:hover::before {
    transform: scaleX(1);
}
.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 42px;
    color: #fff;
    background: linear-gradient(135deg, #5c2568, #7a3488);
    transition: background 0.4s, color 0.4s, transform 0.4s;
}
.benefit-card:hover .benefit-icon {
    background: #fff;
    color: #5c2568;
    box-shadow: 0 0 0 2px #5c2568;
    transform: rotate(-6deg) scale(1.08);
}
.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #5c2568;
    margin-bottom: 10px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.benefit-card:hover h3 {
    color: #5c2568;
}
.benefit-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/*------registration section------*/
.registration-section {
    background: #ffffff;
    padding: 0;
}
.reg-subtitle {
    text-align: center;
    color: #333;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}
.reg-subhead {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 45px;
    text-transform: uppercase;
}
.fee-card {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 120px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}
.fee-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
    border-color: rgba(112, 15, 26, 0.2);
    background: #d6ecd7;
}
.consortium-card .fee-label {
    font-size: 22px;
    font-weight: 800;
}
.fee-label {
    font-size:18px;
    font-weight: 700;
    color: #700f1a;    
    letter-spacing: 0px;
}
.fee-price {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}
.fee-price-sm {
    font-size: 15px;
}
.fee-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
}
.fee-card-highlight {
    min-height: 172px;
    margin-top: 20px;
}
.reg-notes {
    text-align: center;
    max-width: 750px;
    margin: 40px auto 0;
}
.reg-notes p {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
}

/*------contact section------*/
.contact-section {
    background: #f4f4f4;
}
.contact-inline {
    display: inline-block;
    text-align: left;
}
.contact-inline p {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
}
.contact-inline a {
    color: #700f1a;
    text-decoration: none;
    font-weight: 500;
}
.contact-inline a:hover {
    text-decoration: underline;
}
.contact-inline-icon {
    color: #700f1a;
    font-size: 20px;
    margin-right: 8px;
}
.contact-ext {
    color: #700f1a;
    font-weight: 700;
}

/*------footer------*/
.footer {
    background: #700f1a;
    color: #fff;
}

/*------lazy-load------*/
.fade-in {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.95s ease, transform 0.95s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/*------media-queries------*/
@media (max-width: 991.98px) {
    .hero { height: 380px; }
    .hero-overlay h1 { font-size: 32px; }
    .hero-overlay p { font-size: 16px; }
    .fee-card { padding: 24px 16px; }
    .fee-price { font-size: 28px; }
    .consortium-card .fee-label { font-size: 20px; }
    .overview-section .row { flex-direction: column; }
    .overview-text { margin-bottom: 30px; }
    .video-wrapper { min-height: 300px; }
}
@media (max-width: 767.98px) {
    .hero { height: 300px; }
    .hero-overlay h1 { font-size: 26px; }
    .hero-overlay p { font-size: 14px; }
    .flip-card { height: 260px; }
    .logo-bar { padding: 15px 20px; }
    .logo-bar .container-fluid { padding: 0 15px; }
    .logo-bar .logo { height: 70px; padding: 8px 16px; }
    .logo-bar .col-auto:first-child .logo { height: 70px; padding: 8px 20px; }
    .logo-bar .col-auto:first-child .logo img { max-width: 150px; }
    .logo-bar .logo:last-child { border-left: none; margin-left: 0; padding-left: 16px; border-top: 2px solid #d0d0d0; padding-top: 16px; margin-top: 10px; }
    .logo-bar .col-auto:last-child { margin-top: 10px; }
    .registration-section { padding: 0; }
    .fee-card { padding: 22px 14px; min-height: 100px; }
    .fee-card-highlight { min-height: 130px; }
    .fee-price { font-size: 24px; }
    .fee-label { font-size: 14px; }
    .consortium-card .fee-label { font-size: 18px; }
    .reg-subhead { font-size: 16px; margin-bottom: 20px; }
    .reg-subtitle { font-size: 14px; margin-bottom: 25px; padding: 0 10px; }
    .overview-text { margin-bottom: 20px; }
    .overview-text h2 { font-size: 28px; }
    .video-wrapper { min-height: 250px; }
}
@media (max-width: 575.98px) {
    .hero { height: 240px; }
    .hero-overlay h1 { font-size: 22px; }
    .logo-bar { padding: 12px 10px; }
    .logo-bar .container-fluid { padding: 0 10px; }
    .logo-bar .row { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .logo-bar .col-auto { flex: 0 0 auto; width: auto; }
    .logo-bar .col-auto.d-flex { flex-direction: column; align-items: center; gap: 10px; }
    .logo-bar .logo { height: 60px; padding: 8px 15px; width: auto; max-width: 200px; }
    .logo-bar .col-auto:first-child .logo { height: 60px; padding: 8px 15px; }
    .logo-bar .col-auto:first-child .logo img { max-width: 120px; }
    .logo-bar .logo:last-child { border-left: none; border-top: 2px solid #d0d0d0; padding-top: 10px; margin-top: 5px; }
    .logo-bar .logo img { max-width: 100%; height: auto; }
    .section-head h2 { font-size: 28px; }
    .registration-section { padding: 0; }
    .fee-card { padding: 20px 12px; min-height: 90px; border-radius: 12px; }
    .fee-card-highlight { min-height: 120px; }
    .fee-price { font-size: 22px; }
    .fee-label { font-size: 13px; }
    .consortium-card .fee-label { font-size: 16px; }
    .reg-subhead { font-size: 14px; margin-bottom: 18px; }
    .reg-subtitle { font-size: 13px; margin-bottom: 20px; padding: 0 5px; }
    .benefit-card { padding: 26px 18px; }
    .benefit-icon { width: 60px; height: 60px; font-size: 36px; }
    .benefit-card h3 { font-size: 18px; }
    .overview-text { margin-bottom: 20px; }
    .overview-text h2 { font-size: 24px; }
    .overview-text p { font-size: 14px; }
    .video-wrapper { min-height: 220px; }
}

/*------landing page hero------*/
.landing-hero {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.landing-hero-bg {
    position: relative;
    width: 100%;
    height: 100%;
}
.landing-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;object-position: center center;
}
.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(112,15,26,0.85), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}
.landing-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.3);
}
.landing-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}
.landing-hero-date {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}
@media (max-width: 767.98px) {
    .landing-hero { height: 200px; }
    .landing-hero-content h1 { font-size: 28px; }
    .landing-hero-tag { font-size: 11px; padding: 6px 16px; }
    .landing-hero-date { font-size: 14px; }
}
@media (max-width: 575.98px) {
    .landing-hero { height: 180px; }
    .landing-hero-content h1 { font-size: 24px; }
}

/*------landing page content responsive------*/
.container h2 { color: #700f1a; font-size: 24px; font-weight: 700; margin-top: 30px; margin-bottom: 15px; }
.container h3 {
    color: #000;
    font-size: 19px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}
.tracks-section .container h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}
.container p {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 12px;
    text-align: justify;
}
.container ul {
    padding-left: 20px;
    margin-bottom: 0px;
}
.container ul li {
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    padding: 2px 0;
}

@media (max-width: 991.98px) {
    .container h2 { font-size: 22px; }
    .container h3 { font-size: 18px; }
    .container p { font-size: 15px; }
    .container ul li { font-size: 14px; }
}

@media (max-width: 767.98px) {
    .container { padding-left: 15px; padding-right: 15px; }
    .container h2 { font-size: 20px; margin-top: 25px; margin-bottom: 12px; }
    .container h3 { font-size: 17px; margin-top: 18px; margin-bottom: 8px; }
    .container p { font-size: 14px; line-height: 1.6; }
    .container ul { padding-left: 15px; }
    .container ul li { font-size: 13px; line-height: 1.5; padding: 3px 0; }
    .container ul ul { padding-left: 15px; }
    .container ul ul li { font-size: 13px; }
}

@media (max-width: 575.98px) {
    .container { padding-left: 12px; padding-right: 12px; }
    .container h2 { font-size: 18px; margin-top: 20px; margin-bottom: 10px; }
    .container h3 { font-size: 16px; margin-top: 15px; margin-bottom: 8px; }
    .container p { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
    .container ul { padding-left: 12px; margin-bottom: 12px; }
    .container ul li { font-size: 13px; line-height: 1.4; padding: 3px 0; }
    .container ul ul { padding-left: 12px; }
    .container ul ul li { font-size: 12px; }
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
}

/*------navbar responsive------*/
@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav .nav-link {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .navbar-custom .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 12px;
    }
    .navbar-custom .navbar-collapse {
        background: #700f1a;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 5px;
    }
}

@media (max-width: 575.98px) {
    .navbar-custom .navbar-nav .nav-link {
        padding: 10px 15px;
        font-size: 13px;
        text-align: center;
    }
}

/*------logo bar responsive------*/
@media (max-width: 767.98px) {
    .logo-bar { padding: 15px 20px; }
    .logo-bar .container-fluid { padding: 0 15px; }
    .logo-bar .col-auto { flex: 0 0 auto; }
}

@media (max-width: 575.98px) {
    .logo-bar { padding: 12px 10px; }
    .logo-bar .container-fluid { padding: 0 10px; }
    .logo-bar .logo { margin-bottom: 8px; }
}

/*------forms responsive------*/
.form-label { font-weight: 600; font-size: 14px; text-align: left !important; }
.form-control, .form-select { font-size: 14px; padding: 10px 12px; }
.btn-call { width: 100%; }
#proposalForm .form-label { text-align: left !important; display: block; }
#register .section-head { text-align: center; margin-top: 40px; }
#register .section-head h2::after { margin: 12px auto 0; }
#register .section-sub { text-align: center; }
#register .section-head h2 { font-size: 24px; }

@media (min-width: 576px) {
    .btn-call { width: auto; }
}

@media (max-width: 575.98px) {
    .form-label { font-size: 13px; margin-bottom: 4px; }
    .form-control, .form-select { font-size: 13px; padding: 8px 10px; }
    .form-check-inline { display: block; margin-bottom: 6px; }
    .form-check-inline .form-check-input { margin-left: 0; }
    .registration-section .container { padding-left: 15px; padding-right: 15px; }
    .registration-section .col-lg-8 { padding: 0; }
    #register .section-head h2 { font-size: 20px; }
    #register .section-sub { font-size: 13px; padding: 0; }
    #register .mb-3 { margin-bottom: 12px !important; }
    .modal-body { padding: 12px; }
    .modal-body h6 { font-size: 13px; }
    .modal-body .row .col-md-4,
    .modal-body .row .col-md-6 { margin-bottom: 8px; }
    .modal-body .form-label { font-size: 12px; }
    .modal-body .form-control, 
    .modal-body .form-select { font-size: 12px; padding: 7px 8px; }
    .modal-body .alert { font-size: 12px; padding: 8px; }
    .modal-body .form-check-label { font-size: 12px; }
    .section-sub { font-size: 13px; padding: 0; }
    .alert { font-size: 13px; padding: 10px; }
}

@media (max-width: 767.98px) {
    .form-check-inline { margin-right: 10px; }
    .modal-dialog { margin: 10px; }
}

/*------speaker cards------*/
.speaker-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.speaker-img {
    flex: 0 0 250px;
    text-align: center;
}
.speaker-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #700f1a;
    margin-bottom: 12px;
}
.speaker-img h2 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background: #e0e0e0;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.speaker-info {
    flex: 1;
}
.speaker-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #700f1a;
    margin-bottom: 5px;
}
.speaker-designation {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
    font-style: italic;
}
.speaker-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}
@media (max-width: 767.98px) {
    .speaker-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .speaker-img {
        flex: 0 0 auto;
        width: 200px;
    }
    .speaker-img img {
        height: 220px;
    }
    .speaker-info p {
        text-align: center;
    }
}
@media (max-width: 575.98px) {
    .speaker-card {
        padding: 15px;
        margin-bottom: 25px;
    }
    .speaker-img {
        width: 160px;
    }
    .speaker-img img {
        height: 180px;
    }
    .speaker-info h3 {
        font-size: 18px;
    }
    .speaker-designation {
        font-size: 14px;
    }
    .speaker-info p {
        font-size: 13px;
    }
}

/*------schedule table------*/
.schedule-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.schedule-table thead th {
    background: #700f1a;
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-weight: 600;
}
.schedule-table tbody td {
    padding: 12px 15px;
    vertical-align: top;
    border-color: #e0e0e0;
}
.schedule-table tbody td:first-child {
    text-align: center;
    white-space: nowrap;
}
.schedule-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.schedule-table tbody tr:hover {
    background-color: #f1f1f1;
}
.schedule-table tbody td strong {
    color: #000;
}
@media (max-width: 767.98px) {
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 8px 10px;
        font-size: 14px;
    }
}
@media (max-width: 575.98px) {
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 6px 8px;
        font-size: 13px;
    }
}
