/********** Template CSS **********/
:root {
    --primary: #bb3713;
    --light: #F0FBFC;
    --dark: #181d38;
}

.btn-primary:hover{
    background-color:#740707 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color: #bb3713;
    border: #bb3713;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.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  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* --------Page Header BG for Speaker's page--------- */
.page-header-speakers {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/img_7.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* --------Page Header BG for Speaker's page--------- */

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
/* SWIPER JS CSS */

.swiper {
  width: 100%;
  max-height: 600px;
}

.category .swiper-slide img{
    object-fit: contain!important;
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* SWIPER JS CSS */


.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}
/*** Team ***/


/*=================== Absstract submission================== */

.submission-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.submission-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.submission-intro h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.submission-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-section {
    background: white;
    padding: 40px;
    /* border-radius: 10px; */
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary);
}

.info-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.info-section h3 i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.info-section h4 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.info-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.requirement-card {
    background: #f8f9fa;
    padding: 25px;
    /* border-radius: 8px; */
    transition: transform 0.3s, box-shadow 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(187, 55, 19, 0.15);
}

.requirement-card h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.requirement-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.template-download {
    background: linear-gradient(135deg, var(--primary) 0%, #740707 100%);
    color: white;
    padding: 50px 40px;
    /* border-radius: 10px; */
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 8px 25px rgba(187, 55, 19, 0.3);
}

.template-download h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.template-download p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-download {
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    /* border-radius: 5px; */
}

.btn-download:hover {
    background: #f8f9fa;
    color: #740707;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-download i {
    margin-left: 10px;
}

.important-notes {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 30px;
    /* border-radius: 8px; */
    margin: 30px 0;
}

.important-notes h4 {
    color: #856404;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.important-notes h4 i {
    margin-right: 10px;
}

.important-notes ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.important-notes li {
    color: #856404;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Timeline & Award Section Styles */

/* Timeline Alert */
.timeline-alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.alert-icon {
    font-size: 2.5rem;
    color: #2196f3;
    flex-shrink: 0;
}

.alert-content h4 {
    color: #1565c0;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.alert-content p {
    color: #0d47a1;
    margin: 0;
    font-size: 1rem;
}

/* Dates Container */
.dates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.date-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(187, 55, 19, 0.15);
}

.date-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.date-info h5 {
    margin: 0 0 8px 0;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
}

.date-highlight {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.date-info small {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Presentation Options */
.presentation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.option-card:hover {
    border-color: var(--primary);
    background: rgba(187, 55, 19, 0.05);
    transform: translateY(-5px);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.option-card h5 {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.option-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Award Section */
.award-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 10px;
    padding: 35px;
    margin-top: 30px;
    border: 2px solid #ffc107;
}

.award-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.award-header i {
    font-size: 2rem;
    color: #f57c00;
}

.award-header h4 {
    color: #e65100;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.award-badge {
    background: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 2px solid #ff9800;
}

.award-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.award-badge span {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.award-content p {
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 20px;
}

.award-benefits {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.award-benefits h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.benefits-list li {
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: #4caf50;
    font-size: 1rem;
}

.award-highlights {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--dark);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.highlight-item small {
    color: #666;
    font-size: 0.85rem;
}

.award-eligibility {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.award-eligibility h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.award-eligibility p {
    color: #555;
    margin-bottom: 10px;
}

.eligibility-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.eligibility-list li {
    color: #555;
    padding: 8px 0;
    position: relative;
}

.eligibility-list li::before {
    content: "→";
    position: absolute;
    left: -20px;
    color: var(--primary);
    font-weight: bold;
}

.small-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dates-container {
        grid-template-columns: 1fr;
    }
    
    .presentation-options {
        grid-template-columns: 1fr;
    }
    
    .award-highlights {
        flex-direction: column;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .award-section {
        padding: 25px 20px;
    }

    .timeline-alert {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .submission-container {
        padding: 40px 15px;
    }

    .submission-intro,
    .info-section {
        padding: 25px 20px;
    }

    .submission-intro h2 {
        font-size: 1.5rem;
    }

    .info-section h3 {
        font-size: 1.3rem;
    }

    .template-download {
        padding: 35px 25px;
    }

    .template-download h3 {
        font-size: 1.5rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}


/* MODAL */

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-content {
            background: white;
            /* border-radius: 15px; */
            padding: 0;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
            position: relative;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary) 0%, #740707 100%);
            color: white;
            padding: 15px;
            /* border-radius: 15px 15px 0 0; */
            position: relative;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }

        .modal-header p {
            margin: 10px 0 0 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 20px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .form-group label i {
            margin-right: 8px;
            color: var(--primary);
        }

        .form-group input[type="text"],
        .form-group input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
            outline: none;
        }

        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(187, 55, 19, 0.1);
        }

        .file-upload-wrapper {
            position: relative;
            border: 2px dashed #e9ecef;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            background: #f8f9fa;
        }

        .file-upload-wrapper:hover {
            border-color: var(--primary);
            background: rgba(187, 55, 19, 0.05);
        }

        .file-upload-wrapper.dragover {
            border-color: var(--primary);
            background: rgba(187, 55, 19, 0.1);
        }

        .file-upload-wrapper input[type="file"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .file-upload-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .file-upload-text {
            color: #666;
            font-size: 1rem;
        }

        .file-upload-text strong {
            color: var(--primary);
        }

        .file-name {
            margin-top: 15px;
            padding: 10px;
            background: white;
            border-radius: 5px;
            color: var(--dark);
            font-weight: 500;
            display: none;
        }

        .file-name i {
            margin-right: 8px;
            color: var(--primary);
        }

        .modal-footer {
            padding: 0 40px 40px 40px;
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn-modal-submit {
            background: linear-gradient(135deg, var(--primary) 0%, #740707 100%);
            color: white;
            padding: 12px 35px;
            border: none;
            /* border-radius: 8px; */
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .btn-modal-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(187, 55, 19, 0.4);
        }

        .btn-modal-cancel {
            background: #6c757d;
            color: white;
            padding: 12px 35px;
            border: none;
            /* border-radius: 8px; */
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .btn-modal-cancel:hover {
            background: #5a6268;
        }

        @media (max-width: 768px) {
            .submission-container {
                padding: 40px 15px;
            }

            .submission-intro,
            .info-section {
                padding: 25px 20px;
            }

            .submission-intro h2 {
                font-size: 1.5rem;
            }

            .info-section h3 {
                font-size: 1.3rem;
            }

            .template-download {
                padding: 35px 25px;
            }

            .template-download h3 {
                font-size: 1.5rem;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                width: 95%;
                max-height: 95vh;
            }

            .modal-header,
            .modal-body {
                padding: 25px 20px;
            }

            .modal-footer {
                padding: 0 20px 25px 20px;
                flex-direction: column;
            }

            .btn-modal-submit,
            .btn-modal-cancel {
                width: 100%;
            }
        }

/* Absstract submission */


/*** Accomodation ***/

/* Section Headers */
.section-header {
    text-align: center;
    margin: 80px 0 60px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 0 auto;
}

.accommodation-section {
    /* padding: 80px 0; */
    background-color: white;
}

.suite-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.suite-container:last-child {
    margin-bottom: 0;
}

.suite-container-reverse {
    grid-template-columns: 1.8fr 1fr;
}

.suite-info {
    padding: 20px;
}

.suite-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.suite-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.suite-actions {
    display: flex;
    gap: 20px;
}

.btn-book {
    background-color: var(--primary);
    color: white;
    padding: 12px 35px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background-color: #740707;
}

.suite-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .suite-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .suite-container-reverse {
        grid-template-columns: 1fr;
    }

    .suite-container-reverse .suite-info {
        order: 1;
    }

    .suite-container-reverse .suite-gallery {
        order: 2;
    }

    .accommodation-section {
        padding: 10px 0;
    }

    .suite-title {
        font-size: 1.75rem;
    }

    .gallery-main {
        height: 400px;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .section-header {
        margin: 60px 0 20px;
    }
}

@media (max-width: 768px) {
    .accommodation-section {
        padding: 0px 0;
    }

    .suite-container {
        margin-bottom: 40px;
    }

    .suite-actions {
        flex-direction: column;
    }

    .btn-book {
        width: 100%;
        text-align: center;
    }

    .gallery-main {
        height: 300px;
    }

    .suite-title {
        font-size: 1.5rem;
    }

    .suite-description {
        font-size: 1rem;
    }

    .section-header h1 {
        font-size: 1.75rem;
    }

    .section-header {
        margin: 40px 0 10px;
    }
}

/*** Accomodation ***/


/* ============================================================
   Registration Page
   ============================================================ */

.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0px;
}

/* ===== Intro ===== */
.registration-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.registration-intro h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.registration-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== Pricing Block (wraps label + grid for each tier) ===== */
.pricing-block {
    margin-bottom: 55px;
}

/* ===== Section Label (icon + heading + subtitle) ===== */
.pricing-section-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.pricing-section-label .label-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pricing-section-label .label-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.pricing-section-label .label-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* Early Bird theme */
.pricing-block.early .label-icon {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.pricing-block.early .label-text h3 { color: #e65100; }
.pricing-block.early .label-text p  { color: #bf360c; }

/* Regular theme */
.pricing-block.regular .label-icon {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    color: var(--dark);
}

.pricing-block.regular .label-text h3 { color: var(--dark); }
.pricing-block.regular .label-text p  { color: #555; }

/* ===== Pricing Grid ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== Pricing Card ===== */
.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

/* Top colour bar */
.pricing-card .card-bar {
    height: 5px;
}

.pricing-block.early  .card-bar { background: linear-gradient(90deg, #ff9800, #e65100); }
.pricing-block.regular .card-bar { background: linear-gradient(90deg, var(--primary), #740707); }

/* Card body */
.card-body {
    padding: 30px 22px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-type {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 6px;
}

.card-price {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.2;
}

.pricing-block.early  .card-price { color: #e65100; }
.pricing-block.regular .card-price { color: var(--primary); }

.card-note {
    text-align: center;
    color: #888;
    font-size: 0.82rem;
    margin-bottom: 22px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li i {
    color: #4caf50;
    font-size: 0.85rem;
}

/* Register button */
.card-btn {
    width: 100%;
    padding: 11px 16px;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    letter-spacing: 0.5px;
}

.pricing-block.early  .card-btn { background: linear-gradient(135deg, #ff9800, #e65100); }
.pricing-block.early  .card-btn:hover {
    background: linear-gradient(135deg, #f57c00, #bf360c);
    box-shadow: 0 4px 14px rgba(230,81,0,0.35);
}

.pricing-block.regular .card-btn { background: linear-gradient(135deg, var(--primary), #740707); }
.pricing-block.regular .card-btn:hover {
    background: linear-gradient(135deg, #a03010, #5a0505);
    box-shadow: 0 4px 14px rgba(187,55,19,0.35);
}

/* Popular badge */
.pricing-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    color: white;
    padding: 4px 36px;
    transform: rotate(45deg);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.pricing-block.early  .pricing-badge { background: #e65100; }
.pricing-block.regular .pricing-badge { background: var(--dark); }

/* ===== Conference Dinner ===== */
.dinner-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #ffc107;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.dinner-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dinner-header i {
    font-size: 2.5rem;
    color: #f57c00;
}

.dinner-header h4 {
    color: #e65100;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.dinner-content p {
    color: #555;
    margin: 0;
}

.dinner-content small {
    color: #666;
    font-size: 0.85rem;
}

.dinner-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== Info Section ===== */
.info-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary);
}

.info-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.info-section h3 i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.info-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== Dietary Options ===== */
.dietary-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.dietary-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dietary-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== Warning Box ===== */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.warning-box h5 {
    color: #856404;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.warning-box h5 i {
    margin-right: 10px;
}

.warning-box p {
    color: #856404;
    margin: 0;
}

/* ===== Cancellation Policy ===== */
.cancellation-policy {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.cancellation-policy h4 {
    color: #721c24;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.cancellation-policy h4 i {
    margin-right: 10px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.policy-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.policy-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.policy-item p {
    color: #555;
    margin: 10px 0 0 0;
}

/* ===== Register CTA Banner ===== */
.register-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #740707 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(187, 55, 19, 0.3);
}

.register-cta h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.register-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-register-now {
    background: white;
    color: var(--primary);
    padding: 18px 50px;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
}

.btn-register-now:hover {
    background: #f8f9fa;
    color: #740707;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-register-now i {
    margin-left: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .registration-container {
        padding: 10px 15px;
    }

    .registration-intro,
    .info-section {
        padding: 25px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-section-label {
        flex-direction: column;
        text-align: center;
    }

    .dinner-card {
        flex-direction: column;
        text-align: center;
    }

    .dinner-header {
        flex-direction: column;
    }

    .register-cta {
        padding: 40px 25px;
    }

    .register-cta h3 {
        font-size: 1.8rem;
    }
}


/* ************Registration************* */

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}