/********** Template CSS **********/
:root {
    --primary: #fb4b58;
    --secondary: #f9b81e;
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: #f9b81e;
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 0px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

/* Hide on mobile (screens ≤ 767px) */
@media (max-width: 767px) {
  .section-title h5::after {
    display: none !important;
  }
}

/* Your existing desktop styles */
.section-title h5::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  right: -75px;
  bottom: 11px;
  background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item {
    transition: 0.3s ease-in-out;
}

.icon-box {
    border: 2px solid #fb4b58;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 40px 80px 10px;
}

.icon-box i {
    color: #fb4b58;
}

.service-item:hover .icon-box {
    background: #fb4b58;
    color: white;
}

.service-item:hover i,
.service-item:hover h5 {
    color: white;
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius: 100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background: url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}


/*----------------galler-----------------*/

.gallery-container {
    padding: 30px;
    text-align: center;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    height: 90vh;
}

.modal-body img {
    width: 95%;
    /* Increased width */
    height: auto;
    /* Auto height for proper aspect ratio */
    max-height: 70vh;
    /* Limited max height to avoid overflow */
    border-radius: 8px;
    margin: auto;
}


/* Navigation Buttons */
.modal-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 0px;
    /* Added padding to create more gap */
}


.modal-controls button {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    /* padding: 15px 25px; */
    cursor: pointer;
    /* border-radius: 50%; */
    font-size: 28px;
    transition: background 0.3s ease;
}

.modal-controls button:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Close Button */
.btn-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
}


/*------Keynotes------*/
.conference-chairs-section {
    background: radial-gradient(ellipse at center, #59297d 0, #310c44 100%);
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
    margin: auto;
}

.conference-chairs-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.conference-chairs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.conference-chair {
    /* width: 200px; */
    text-align: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.conference-chair:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.conference-chair img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #f9b81e;
}

.conference-chair h5 {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.conference-chair h6 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .conference-chairs-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .conference-chair {
        flex: 0 0 auto;
    }
}


/*---------------Registration---------------*/
.conf-reg-container {
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.conf-reg-header {
    background-color: #fb4b58;
    color: white;
    padding: 2rem;
    text-align: center;
}

.conf-reg-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.conf-reg-subtitle {
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff;
}

.conf-reg-form-container {
    background-color: white;
    padding: 2rem;
}

.form-control:focus {
    border-color: #fb4b58;
    box-shadow: 0 0 0 0.25rem rgba(251, 75, 88, 0.25);
}

.conf-reg-btn {
    background-color: #fb4b58;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
    color: #ffffff;
}

.conf-reg-btn:hover {
    background-color: #fb4b58;
    transform: translateY(-2px);
    color: #ffffff;
}

.conf-reg-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.conf-reg-feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.conf-reg-feature-text {
    font-size: 0.95rem;
}

.conf-reg-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #6c757d;
}

.conf-reg-divider::before,
.conf-reg-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.conf-reg-divider::before {
    margin-right: 1rem;
}

.conf-reg-divider::after {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .conf-reg-container {
        margin: 0;
        border-radius: 0;
    }

    .conf-reg-header {
        padding: 1.5rem;
    }

    .conf-reg-form-container {
        padding: 1.5rem;
    }
}


/*--------topics dissussion----------*/
.discussion-section {
    position: relative;
}

.discussion-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.discussion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.discussion-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #fb4b58;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.discussion-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.discussion-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #fb4b58;
    position: relative;
    overflow: hidden;
}

.discussion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.discussion-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fb4b58;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.discussion-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.discussion-icon {
    font-size: 2rem;
    color: #fb4b58;
    margin-right: 15px;
}

.discussion-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.discussion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discussion-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: #000000;
    border-bottom: 1px dashed #ecf0f1;
    display: flex;
    align-items: center;
}

.discussion-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #fb4b58 !important;
    margin-right: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .discussion-title {
        font-size: 2rem;
    }

    .discussion-subtitle {
        font-size: 1rem;
    }

    .discussion-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .discussion-section {
        padding: 40px 0;
    }

    .discussion-title {
        font-size: 1.8rem;
    }

    .discussion-card-header {
        flex-direction: column;
        text-align: center;
    }

    .discussion-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Base Styles */
.attendee-section-wrapper {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, #59297d 0, #310c44 100%);
}

.attendee-fade-in {
    animation: attendeeFadeIn 1s ease-out;
}

@keyframes attendeeFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Styles */
.attendee-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.attendee-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.attendee-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.attendee-image-container:hover .attendee-main-image {
    transform: scale(1.03);
}

/* Content Styles */
.attendee-content-wrapper {
    padding: 0 30px;
}

.attendee-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.attendee-main-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #e74c3c;
    bottom: -10px;
    left: 0;
}

.attendee-intro-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* List Styles */
.attendee-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.attendee-list-item {
    padding: 12px 0;
    font-size: 1rem;
    color: #ffffff;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: center;
}

.attendee-list-item:last-child {
    border-bottom: none;
}

.attendee-check-icon {
    color: #e74c3c;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Button Styles */
.attendee-cta-wrapper {
    margin-top: 20px;
}

.attendee-primary-btn {
    display: inline-flex;
    align-items: center;
    background-color: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.attendee-primary-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.attendee-btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.attendee-primary-btn:hover .attendee-btn-icon {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .attendee-main-title {
        font-size: 2.2rem;
    }

    .attendee-content-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .attendee-section-wrapper {
        padding: 60px 0;
    }

    .attendee-row {
        flex-direction: column;
    }

    .attendee-image-col {
        margin-bottom: 40px;
    }

    .attendee-main-title {
        font-size: 2rem;
        text-align: center;
    }

    .attendee-main-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .attendee-intro-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .attendee-main-title {
        font-size: 1.8rem;
    }

    .attendee-list-item {
        font-size: 0.95rem;
    }

    .attendee-check-icon {
        font-size: 1rem;
        margin-right: 10px;
    }
}


/* Base Styles */
.why-attend-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.why-attend-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.why-attend-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-attend-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.why-attend-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.why-attend-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Card Styles */
.why-attend-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-attend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-attend-card-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.why-attend-card-header:hover {
    background-color: #f5f7fa;
}

.why-attend-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.why-attend-icon i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.why-attend-card-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.why-attend-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-attend-toggle i {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.why-attend-card-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-attend-card-content p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Active State */
.why-attend-card.active .why-attend-card-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.why-attend-card.active .why-attend-toggle {
    transform: rotate(45deg);
}

.why-attend-card.active .why-attend-toggle i {
    color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-attend-title {
        font-size: 2rem;
    }

    .why-attend-subtitle {
        font-size: 1rem;
    }

    .why-attend-grid {
        grid-template-columns: 1fr;
    }

    .why-attend-card-header {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .why-attend-section {
        padding: 3rem 0;
    }

    .why-attend-title {
        font-size: 1.8rem;
    }

    .why-attend-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }

    .why-attend-card-title {
        font-size: 1.1rem;
    }
}


/*-----------------sponsor page-------------------*/
/* Hero Section */
.sponsor-hero {
    text-align: center;
    margin-bottom: 50px;
}

.sponsor-hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sponsor-hero p {
    font-size: 1.2rem;
    color: #000000;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid #fb4b58;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #fb4b58;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Packages Section */
.packages-section {
    margin: 60px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: #eef2f7;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.tab-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.tab-btn.active {
    background: #2c7be5;
    color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.package-header {
    background: #fb4b58;
    color: white;
    padding: 20px;
    text-align: center;
}

.package-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
    color: #ffffff;
}

.package-price span {
    font-size: 1rem;
    font-weight: normal;
    color: #7a8ca5;
}

.package-body {
    padding: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.package-features li:before {
    content: "✓";
    color: #fb4b58;
    margin-right: 10px;
    font-weight: bold;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 12px;
    background: #f9b81e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s;
}

.btn-package:hover {
    background: #fb4b58;
}

/* CTA Section */
.cta-section {
    background: #fb4b58;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    color: white;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #fb4b58;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
}

/* Custom Sponsor Section */
.custom-section {
    text-align: center;
    margin: 60px 0;
}

.custom-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.custom-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #7a8ca5;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .sponsor-hero h1 {
        font-size: 2rem;
    }

    .benefits-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}


/* Conference Header */
.conference-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #2c3e50;
    color: white;
    border-radius: 8px;
}

.conference-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.conference-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hotel Card */
.hotel-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Image */
.hotel-hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    position: relative;
}

.hotel-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
}

/* Main Content */
.hotel-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 30px;
}

@media (max-width: 768px) {
    .hotel-content {
        grid-template-columns: 1fr;
    }
}

/* Details Section */
.hotel-details h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    border-bottom: 2px solid #fb4b58;
    padding-bottom: 8px;
}

.hotel-details p {
    margin-bottom: 20px;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

/* Conference Info Sidebar */
.conference-sidebar {
    background: #f8fafd;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
}

.conference-sidebar h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #fb4b58;
    padding-bottom: 8px;
}

.sidebar-item {
    margin-bottom: 20px;
}

.sidebar-item h3 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.transport-options {
    margin-top: 15px;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 5px;
}

/* Room Gallery */
.room-gallery {
    margin-top: 40px;
    padding: 0 30px 30px;
}

.room-gallery h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #fb4b58;
    padding-bottom: 8px;
}

.rooms {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.room-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    height: 200px;
    background: #ddd;
    background-size: cover;
    background-position: center;
}

.room-details {
    padding: 15px;
}

.room-type {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.room-features {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.room-features span {
    display: block;
    margin-bottom: 3px;
}

/* Map Section */
.map-container {
    margin-top: 40px;
    padding: 0 30px 30px;
}

.map-container h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #fb4b58;
    padding-bottom: 8px;
}

.map-wrapper {
    height: 400px;
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-weight: bold;
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    background: #fb4b58;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #fb4b58;
}


/*-- Board page--*/
.board-members {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.member-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light);
    margin: 0 auto 20px;
    display: block;
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------sponsor page------------*/
/* Sponsors Hero */
.sponsors-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.sponsors-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sponsors-hero .lead {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Sponsors Content */
.sponsors-section {
    padding: 60px 0;
    background-color: white;
}

/* Sponsorship Tiers */
.sponsor-tier {
    margin-bottom: 50px;
}

.tier-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    display: inline-block;
}

.tier-platinum .tier-title {
    color: #091E3E; /* Platinum color */
}

.tier-gold .tier-title {
    color: #ffd700; /* Gold color */
}

.tier-silver .tier-title {
    color: #091E3E; /* Silver color */
}

/* Sponsor Logos Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.sponsor-logo {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: grayscale(0%);
    transition: var(--transition);
}

/* Platinum sponsors - larger */
.tier-platinum .sponsors-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.tier-platinum .sponsor-logo {
    height: 180px;
    padding: 30px;
}

/* Gold sponsors */
.tier-gold .sponsor-logo {
    height: 140px;
    padding: 20px;
}

/* Silver sponsors */
.tier-silver .sponsors-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.tier-silver .sponsor-logo {
    height: 100px;
    padding: 15px;
}

/* Become Sponsor CTA */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.btn-sponsor {
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-sponsor:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-sponsor i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .tier-platinum .sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .sponsors-hero h1 {
        font-size: 2.2rem;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .tier-platinum .sponsor-logo {
        height: 150px;
    }
    
    .tier-gold .sponsor-logo {
        height: 120px;
    }
    
    .tier-silver .sponsor-logo {
        height: 80px;
    }
}


/*-- chairs page --*/
.chair-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border-top: 4px solid #fb4b58;
    padding: 10px;
}

.chair-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.chair-item h5 {
    font-weight: 700;
    color: #fb4b58;
    margin-bottom: 10px;
}

.chair-item h5 small {
    font-weight: 400;
    color: #fb4b58;
}

.chair-item p {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.chair-item .img-fluid {
    border-radius: 50%;
    max-width: 180px;
    height: 180px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.chair-item:hover .img-fluid {
    border-color: #fb4b58;
}



@media (max-width: 767.98px) {
    .section-header h3 {
        font-size: 1.8rem;
    }

    .chair-item {
        margin-bottom: 30px;
    }
}


/*-- featured speaker page --*/

.speaker-card {
    border: 2px solid #fb4b58;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    padding: 10px;
    min-height: 370px;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.speaker-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img {
    transform: scale(1.03);
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fb4b58;
    margin-bottom: 5px;
    margin-top: 5px;
    text-align: center;
}

.speaker-title {
    font-size: 0.95rem;
    color: #6c757d;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .featured-speakers {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .speaker-img {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .featured-speakers {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .speaker-img {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-title:after {
        height: 3px;
        bottom: -8px;
    }
}

/* Privacy Policy page */


.privacy-section {
    background-color: #fff;
}

.privacy-header {
    margin-bottom: 50px;
    text-align: center;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fb4b58;
    margin-bottom: 20px;
}

.privacy-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
    border: 2px solid #fb4b58;
    padding: 10px;
    border-radius: 5px;
}

.policy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
}

.policy-text {
    margin-bottom: 15px;
}

.policy-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-list li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

@media (max-width: 767.98px) {
    .privacy-section {
        padding: 50px 0;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .policy-title {
        font-size: 1.3rem;
    }
}


/* Submission page */

/* Hero Section */
.submission-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
        url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.submission-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}


/* Form Card */
.submission-card {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    height: 100%;
}

.form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-submit {
    background-color: var(--secondary);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Sidebar */
.sidebar-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
}

.download-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: 2rem;
}

.download-btn:hover {
    background-color: #1a252f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.topic-item {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
}

.topic-item:before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Guidelines */
.guidelines-section {
    padding: 3rem 0;

}

.guideline-title {
    color: #091E3E;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

/* Contact Info */
.contact-section {
    background-color: var(--primary);
    color: white;
    padding: 2.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .submission-hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .submission-hero {
        padding: 80px 0;
    }

    .submission-hero h1 {
        font-size: 2rem;
    }

    .submission-container {
        padding: 40px 0;
    }
}

/* Poster presenters page */

/* Hero Section */
.poster-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
        url('https://images.unsplash.com/photo-1532094349884-543bc11b234d');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.poster-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}


/* Guidelines Card */
.guidelines-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}


.guideline-item {
    margin-bottom: 1.5rem;
}

.guideline-item h4 {
    color: #091E3E;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.guideline-item ul {
    padding-left: 1.5rem;
}

.guideline-item li {
    margin-bottom: 0.5rem;
}

/* Example Poster Image */
.poster-example {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.poster-example img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.poster-example:hover img {
    transform: scale(1.02);
}

.poster-example-caption {
    background: var(--light);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary);
    color: white;
    padding: 2.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .poster-hero h1 {
        font-size: 2.2rem;
    }

    .guidelines-card,
    .poster-example {
        padding: 1.5rem;
    }
}


/* Code of Conduct page */


/* Hero Section */
.conduct-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.conduct-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Code of Conduct Card */
.conduct-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.conduct-item {
    margin-bottom: 1.5rem;
}

.conduct-item h3 {
    color: #091E3E;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.conduct-item ul {
    padding-left: 1.5rem;
}

.conduct-item li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary);
    color: white;
    padding: 2.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .conduct-hero h1 {
        font-size: 2.2rem;
    }

    .conduct-card {
        padding: 1.5rem;
    }
}

/* Program page */

/* Hero Section */
.program-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1431540015161-0bf868a2d407');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.program-hero .lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Day Navigation */
.day-nav-container {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
   
}

.day-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.day-nav::-webkit-scrollbar {
    display: none;
}

.day-nav .nav-link {
    color: var(--primary);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    margin-right: 10px;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: var(--transition);
}

.day-nav .nav-link:hover {
    background: rgba(44, 62, 80, 0.1);
}

.day-nav .nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Schedule Cards */
.schedule-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    border-left: 5px solid var(--primary);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.schedule-card.keynote {
    border-left-color: var(--secondary);
}

.schedule-card.break {
    border-left-color: #f39c12;
}

.schedule-card.workshop {
    border-left-color: var(--accent);
}

.schedule-card.poster {
    border-left-color: #2ecc71;
}

.schedule-time {
    background: var(--light);
    padding: 15px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    min-width: 120px;
}

.schedule-content {
    padding: 20px;
    flex: 1;
}

.session-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.session-speaker {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.session-speaker i {
    margin-right: 8px;
}

.session-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.session-location i {
    margin-right: 8px;
}

.session-description {
    margin-top: 10px;
    color: #555;
    font-size: 0.95rem;
}

.session-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
    color: var(--primary);
}

/* Download Section */
.download-section {
    padding: 60px 0;
    color: #091E3E;
    text-align: center;
}

.download-btn {
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--primary);
}

.download-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .program-hero h1 {
        font-size: 2.5rem;
    }
    
    .schedule-card {
        flex-direction: column;
    }
    
    .schedule-time {
        min-width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .program-hero {
        padding: 80px 0;
    }
    
    .program-hero h1 {
        font-size: 2rem;
    }
    
    .day-nav .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/*----------------Registration page-------------*/
.payment-methods {
    margin: 20px 0;
}

.payment-method {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #f9f9f9;
}

.payment-method:hover {
    border-color: #bdbdbd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.payment-method.active {
    border-color: #4CAF50;
    background-color: #f0f9f0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.payment-details {
    flex: 1;
}

.payment-details h5 {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 600;
}

.payment-description {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.payment-selector {
    position: relative;
    width: 24px;
    height: 24px;
}

.selection-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid #9e9e9e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-method.active .selection-indicator {
    border-color: #4CAF50;
    background-color: #4CAF50;
    box-shadow: inset 0 0 0 3px white;
}

@media (max-width: 768px) {
    .payment-method-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .payment-selector {
        margin-top: 10px;
    }
}

.currency-selection label {
    margin-right: 15px;
}

.registration-table th,
.registration-table td {
    text-align: center;
    vertical-align: middle;
}

.accommodation-option {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.accommodation-option h5 {
    margin-bottom: 15px;
}

.accommodation-option label {
    display: block;
    margin-bottom: 10px;
}

.accommodation-option input[type="radio"] {
    margin-right: 10px;
}

/*--------coupon code-------*/
/* Coupon Section */
.coupon-input-group {
    display: flex;
    max-width: 400px;
    margin-bottom: 10px;
}

.coupon-input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-apply {
    background-color: #f9b81e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-apply:hover {
    background-color: #1e8fc6;
}

.coupon-message {
    font-size: 0.9rem;
    min-height: 20px;
}

.coupon-applied {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coupon-applied a {
    color: #e74c3c;
    text-decoration: none;
}

/* Total Section */
.total-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.total-amount input {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    border: none;
    background: transparent;
    color: #25aae1;
}

/* Captcha Section */
.captcha-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-display {
    display: flex;
    align-items: center;
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: bold;
}

.captcha-display button {
    background: none;
    border: none;
    color: white;
    margin-left: 10px;
    cursor: pointer;
}

/* Terms Section */
.terms-section {
    margin-bottom: 20px;
}

.terms-section a {
    color: #25aae1;
    text-decoration: none;
}

.terms-section a:hover {
    text-decoration: underline;
}

.errAgrre {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}


.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 1rem;
    background-color: white;
}

.payment-method:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 170, 225, 0.2);
}

.payment-method.active {
    border-color: var(--primary-color);
    background-color: rgba(37, 170, 225, 0.05);
}

/* .payment-method img {
    max-height: 50px;
    margin-bottom: 0.5rem;
} */

.payment-method p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.currency-option {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    border: 1px solid #ced4da;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 170, 225, 0.25);
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.registration-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.registration-table td {
    padding: 1rem;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.registration-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.registration-table tr:hover {
    background-color: rgba(37, 170, 225, 0.05);
}

.registration-option {
    display: flex;
    align-items: center;
}

.price-option {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-option label {
    margin-left: 0.5rem;
    cursor: pointer;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-control button:hover {
    background-color: #1a8fc7;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    margin: 0 0.5rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    padding: 0.25rem;
}

.accommodation-option {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.accommodation-option h5 {
    color: white;
    margin-bottom: 1rem;
}

.accommodation-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.accommodation-price h6 {
    color: white;
    margin-bottom: 0.5rem;
}

.accommodation-price label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.accommodation-price label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accommodation-price input[type="radio"] {
    margin-right: 0.5rem;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
}

.total-price-label {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.total-price-amount {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #f9b81e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.coupon-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.coupon-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coupon-input .form-control {
    flex: 1;
}

.coupon-message {
    font-weight: 500;
}

.coupon-message.success {
    color: var(--success-color);
}

.coupon-message.error {
    color: var(--danger-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.captcha-image {
    font-weight: bold;
    font-size: 1.5rem;
    background-color: var(--dark-bg);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    letter-spacing: 0.2em;
    text-align: center;
}

.captcha-refresh {
    background-color: var(--dark-bg);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.captcha-refresh:hover {
    background-color: #495057;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.terms-checkbox input {
    margin-right: 0.5rem;
}

.terms-error {
    color: var(--danger-color);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: none;
}

@media (max-width: 768px) {
    .payment-methods {
        flex-direction: column;
    }

    .registration-table {
        font-size: 0.9rem;
    }

    .registration-table th,
    .registration-table td {
        padding: 0.5rem;
    }

    .accommodation-options {
        flex-direction: column;
    }
}

/* Animation for payment method selection */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 170, 225, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 170, 225, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 170, 225, 0);
    }
}

.pulse-animation {
    animation: pulse 1s;
}

/* Styling for required field indicators */
.required-field::after {
    content: " *";
    color: var(--danger-color);
}

/* Card styling for accepted payment methods */
.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 
.payment-method {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.payment-method:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.1);
}

.payment-method.active {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
}

.payment-method img {
    max-height: 40px;
    margin-bottom: 10px;
}

.payment-method p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
} */

.currency-option {
    margin-right: 15px !important;
    margin-bottom: 10px;
}

.form-check-input.currsel {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.1em;
}

.form-check-label.paycurrency {
    font-weight: 500;
    cursor: pointer;
}

.company-info {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.company-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.company-info p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.company-info strong {
    color: #555;
}

.accepted-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.accepted-cards img {
    height: 30px;
    width: auto;
}

@media (max-width: 768px) {
    .payment-method {
        margin-bottom: 15px;
    }

    .company-info {
        margin-top: 30px;
    }
}

.company-info p {
    margin-bottom: 0.5rem;
}

/* Responsive table container */
.table-responsive-container {
    overflow-x: auto;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
}


.category-header {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

.category-header td {
    padding: 10px 15px;
}

.form-check {
    margin-bottom: 0;
}

.form-check-input {
    margin-right: 8px;
}

/* Number Input */
.number-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-input button {
    background-color: #25aae1;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-input button:hover {
    background-color: #1e8fc6;
}

.number-input input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
    padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}


.conference-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.conference-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.conference-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.conference-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.conference-content {
    padding: 2.5rem;
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 2rem 0.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


.benefits-list {
    list-style-type: none;
}

.benefits-list li {
    padding: 0.2rem 0;
    /* border-bottom: 1px solid var(--light-gray); */
    display: flex;
    align-items: flex-start;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 12px;
}

.package-card {
    background: linear-gradient(to right, rgba(67, 97, 238, 0.05), rgba(67, 97, 238, 0.02));
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.package-highlight {
    font-weight: 600;
    color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.alert-section {
    background: linear-gradient(to right, rgba(247, 37, 133, 0.05), rgba(247, 37, 133, 0.02));
    border-left: 4px solid var(--warning);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-title {
    color: var(--warning);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.alert-title i {
    margin-right: 10px;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-info i {
    margin-right: 8px;
    color: var(--accent);
}

.note-box {
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.note-title {
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.note-title i {
    margin-right: 10px;
}

.icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.icon-text i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    /* body {
        padding: 1rem;
    } */

    .conference-header {
        padding: 1.5rem;
    }

    .conference-header h1 {
        font-size: 1.8rem;
    }

    .conference-content {
        padding: 1.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }
}

/*-----catergory-----------*/
.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 100px;
}

.registration-header {
    background-color: #fb4b58;
    color: white;
    padding: 1rem;
    text-align: center;
}

.registration-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.registration-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.registration-table thead tr {
    background-color: var(--primary);
    color: white;
}

.registration-table th,
.registration-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.registration-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.registration-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.registration-table tbody tr:hover {
    background-color: var(--primary-light);
}

.category-header {
    background-color: var(--category-blue) !important;
    color: white !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.registration-type {
    text-align: left !important;
    font-weight: 500;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.radio-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-container input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.price-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(76, 201, 240, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

.price-tag i {
    margin-right: 5px;
    color: var(--primary);
}

.early-bird {
    background-color: rgba(76, 175, 80, 0.1);
}

.mid-reg {
    background-color: rgba(255, 152, 0, 0.1);
}

.spot-reg {
    background-color: rgba(244, 67, 54, 0.1);
}

.members-col {
    background-color: rgba(67, 97, 238, 0.05);
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control button {
    background: var(--primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 0.3rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.disabled-option {
    opacity: 0.6;
}

.deadline-badge {
    display: inline-block;
    background: var(--light-gray);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    color: var(--gray);
}

.tixflow-container {

    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    margin-top: 40px;
    border: 2px solid #fb4b58;

}

.tixflow-fieldset {
    margin-bottom: 12px;
}

.tixflow-label {
    display: block;
    margin-bottom: 3px;
    font-weight: 700;
    color: #333;
    font-size: 17px;
}

.tixflow-required {
    color: #e53e3e;
}

.tixflow-inputwrap {
    position: relative;
    display: flex;
    align-items: center;
}

.tixflow-icon {
    position: absolute;
    left: 14px;
    color: #718096;
    font-size: 16px;
}

.tixflow-control {
    width: 100%;
    padding: 5px 15px 5px 42px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.25s ease;
    background-color: white;
    color: #4a5568;
}

.tixflow-control:focus {
    border-color: #4299e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}

select.tixflow-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 1em;
    padding-right: 35px;
}

.tixflow-textarea {
    min-height: 110px;
    padding-top: 12px;
}

@media (max-width: 768px) {
    .tixflow-container {
        padding: 20px 15px;
    }

    .tixflow-control {
        padding: 12px 12px 12px 38px;
    }
}

.summary-panel {
    background-color: #fff;
    border: 1px solid #fb4b58;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.summary-title {
    color: #fb4b58;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 15px;
}

.summary-content {
    margin-bottom: 20px;
}

.summary-column {
    padding: 0 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    font-weight: 600;
    color: #555;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.summary-discount {
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.summary-discount small {
    color: #888;
    font-size: 0.85em;
}

.total-discount .summary-label {
    color: #fb4b58;
}

.total-discount .summary-value {
    color: #e74c3c;
    font-weight: 700;
}

.discount-code .summary-value {
    color: #3498db;
    font-weight: 600;
}

.summary-divider {
    border: 0;
    border-top: 1px dashed #ddd;
    margin: 15px 0;
}

.summary-total {
    text-align: center;
    margin-top: 20px;
}

.summary-total h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
}

.summary-total span {
    color: #fb4b58;
    font-size: 24px;
}

@media (max-width: 768px) {
    .summary-column {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .summary-item {
        flex-direction: column;
    }
    
    .summary-value {
        margin-top: 5px;
        text-align: right;
    }
}


/*-----Great Reasons to Attend--*/
:root {
        --primary-accent: #fb4b58;
        --secondary-accent: #f9b81e;
        --hover-effect: 0 4px 12px rgba(251, 75, 88, 0.08);
    }

     .great-reasons-attend {
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
    }

    .great-reasons-attend-card {
      border: none;
      border-radius: 10px;
      transition: all 0.3s ease-in-out;
      background: white;
      padding: 1rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .great-reasons-attend-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--hover-effect);
    }

    .great-reasons-attend-icon {
      width: 45px;
      height: 45px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.75rem;
      background: rgba(251, 75, 88, 0.08);
      color: var(--primary-accent);
      font-size: 1.1rem;
    }

    .great-reasons-attend-card:hover .great-reasons-attend-icon {
      background: rgba(249, 184, 30, 0.12);
      color: var(--secondary-accent);
    }

    .great-reasons-attend-card-title {
      font-weight: 600;
      color: #2a2a2a;
      font-size: 0.95rem;
      margin-bottom: 0;
    }


    /*-------------hotel info home page------------*/
    :root {
      --el-primary: #fb4b58;
      --el-secondary: #f9b81e;
            --el-bg: #F8F9FF;
    }


    .el-container {
      padding: 1.2rem 1rem;
      max-width: 1200px;
      margin: auto;
    }

    .el-header {
      text-align: center;
      margin-bottom: 1rem;
    }

    .el-main-title {
      font-size: 1.8rem;
      color: var(--el-primary);
      margin-bottom: 0.25rem;
    }

    .el-subtitle {
      font-size: 1rem;
      margin-bottom: 0.1rem;
    }

    .el-address {
      font-size: 0.85rem;
      color: #666;
    }

    .el-grid-system {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1rem;
    }

    .el-hotel-card, .el-map-transport-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .el-image-frame {
      height: 180px;
      overflow: hidden;
    }

    .el-main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s;
    }

    .el-info-panel {
      padding: 0.8rem 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .el-info-title {
      display: flex;
      align-items: center;
      font-size: 1rem;
      gap: 0.4rem;
      color: var(--el-primary);
      margin: 0.8rem 0 0.4rem;
    }

    .el-time-info {
      display: flex;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .el-time-item {
      flex: 1;
      background: #f0f4ff;
      border-radius: 6px;
      padding: 0.4rem;
      font-size: 0.85rem;
      text-align: center;
    }

    .el-feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem 1rem;
      padding: 0;
      margin: 0;
      list-style: none;
      flex-grow: 1;
    }

    .el-feature-item {
      background: #f0f4ff;
      padding: 0.35rem 0.5rem;
      border-radius: 6px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      justify-content: flex-start;
    }

    .el-map-container {
      height: 180px;
    }

    .el-interactive-map {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .el-transport-info {
      padding: 0.8rem 1rem;
    }

    .el-accordion-item {
      margin-bottom: 0.4rem;
      background: #f0f4ff;
      border-radius: 6px;
      font-size: 0.9rem;
    }

    .el-accordion-header {
      width: 100%;
      ;
      color: #091e3e;
      padding: 0.5rem 1rem;
      text-align: left;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
    }

    .el-accordion-content {
    display: none;
}
.el-accordion-item.active .el-accordion-content {
    display: block;
}

    .el-airport-details,
    .el-shuttle-details {
      font-size: 0.85rem;
      color: #333;
      line-height: 1.3;
    }

    .el-airport-link {
      color: var(--el-secondary);
      text-decoration: underline;
    }


    
    /*----------faq------------*/
     .conf-faq-section {
      padding: 2rem 1rem;
    }

    .conf-container {
      max-width: 1140px;
      margin: auto;
    }

    .conf-faq-title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .conf-faq-subtitle {
      text-align: center;
      font-size: 1rem;
      color: #6c757d;
      margin-bottom: 2rem;
    }

    .conf-row {
      display: flex;
      flex-wrap: wrap;
      margin: -0.75rem;
    }

    .conf-col-md-6 {
      width: 100%;
      padding: 0.75rem;
    }

    @media (min-width: 768px) {
      .conf-col-md-6 {
        width: 50%;
      }
    }

    .conf-faq-card {
      border: 1px solid #dee2e6;
      border-radius: 8px;
      background-color: #fff;
      overflow: hidden;
    }

    .conf-accordion-button {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      width: 100%;
      font-weight: 500;
      background-color: #ffffff;
      border: none;
      cursor: pointer;
      outline: none;
      transition: background-color 0.3s ease;
    }

    .conf-accordion-button.active {
      color: #fb4b58;
      background-color: #e7f1ff;
      border-bottom: 1px solid #dee2e6;
    }

    .conf-toggle-icon {
      transition: transform 0.3s ease;
    }

    .conf-accordion-button.active .conf-toggle-icon {
      transform: rotate(180deg);
    }

    .conf-accordion-body {
      padding: 0.75rem 1rem;
      background-color: #fefefe;
      display: none;
    }

    .conf-accordion-body.show {
      display: block;
    }


   