/* ------------------------------------------------------------------- */
/* 1. ROOT VARIABLES & RESET                                           */
/* ------------------------------------------------------------------- */
:root {
    --primary-blue: #0e2f74;
    --primary-blue-dark: #0a2560;
    --accent-orange: #f56c0a;
    --accent-orange-dark: #d85c09;
    --text-main: #000000;
    --text-muted: #6c757d;
    --text-light: #cccccc;
    --text-grey: #999999;
    --bg-light: #f7f7f7;
    --white: #ffffff;
    --footer-bg: #0e1e3f;
    --footer-bottom-bg: #0a1733;
    --footer-border: #1a335f;
    --border-divider: #dddddd;
}

/* --- Hero Banner Styling --- */
.hero-benner {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: grid;
    align-items: center;
    padding: 60px 0;
	min-height: 75vh;
}

.conference-hero-box {
    padding: 40px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, .95);
    border: 1px solid var(--border-divider);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-sub-title {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--primary-blue);
    font-size: 42px;
    font-weight: 800;
    margin-top: 0;
    line-height: 1.1;
}

.cme-cpd-logos .logo-accreditation-wrapper {
    justify-content: center;
    margin-bottom: 20px;
}

.cme-cpd-logos .logo-item img {
    max-width: 100px;
}

.hero-theme-box {
    margin: 20px 0;
    padding: 15px 25px;
    border-left: 5px solid var(--accent-orange);
    background-color: var(--bg-light);
    display: inline-block;
    max-width: 100%;
    text-align: left;
}

.theme-label {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.hero-theme-text {
    font-size: 18px;
    color: #333333;
    font-style: italic;
    margin: 0;
}

.hero-details-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.hero-detail-block {
    display: flex;
    align-items: center;
    text-align: left;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}

.date-icon, 
.location-icon {
    font-size: 40px;
    color: var(--accent-orange);
    margin-right: 15px;
}

.hero-deadlines-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px dashed var(--text-light);
    border-bottom: 1px dashed var(--text-light);
}

.deadline-item {
    text-align: center;
}

.deadline-label {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.deadline-date {
    color: var(--accent-orange);
    font-size: 18px;
    font-weight: 700;
}

.hero-cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- End Hero Banner Styling --- */


/* --- About Section --- */
.download-buttons-group {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-divider);
    padding: 20px;
    border-radius: 6px;
}

.homepage-about-summary p {
    text-align: justify;
}


/* Download Buttons */
.download-label {
    font-weight: 600;
    color: var(--primary-blue);
}

.downloadbtns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.download-btn {
    background-color: #e8eaf6;
    color: var(--primary-blue);
    border: 1px solid #c5c7d8;
    padding: 12px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

.download-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.countdown-box {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 10px;
}

.timer-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.8;
    color: var(--white);
}

.timer-main-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.timer-unit {
    width: 23%;
}

.timer-value {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 0;
    border-radius: 5px;
    margin-bottom: 5px;
}

.timer-text {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- End About Section --- */


/* --- Scientific Sessions Section Styling --- */
/*section.sessions-section {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    position: relative;
}

section.sessions-section:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #0a1733;
    opacity: .7;
    position: absolute;
    top: 0;
}*/
/* --- Scientific Sessions Section Styling --- */
.session-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
}

.session-list li {
    font-size: 16px;
    color: var(--text-main);
    padding: 12px 0;
    border-bottom: 1px dashed var(--text-grey);
    display: flex;
    align-items: flex-start;
}

.session-list li i {
    color: var(--primary-blue);
    font-size: 1.2em;
    margin-top: 2px;
}

.sessions-cta-buttons {
    display: flex;
    gap: 30px;
}
/* --- End Scientific Sessions Section Styling --- */


/* --- Venue Attraction Section Styling --- */
.venue-content-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.venue-image-wrapper {
    overflow: hidden;
    border-radius: 6px;
    height: 100%;
    min-height: 440px;
}

.venue-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.venue-list-intro {
    color: var(--text-main);
    margin-bottom: 20px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.amenities-list li i {
    color: var(--accent-orange);
    font-size: 18px;
    width: 25px;
    text-align: center;
}

/* --- End Venue Attraction Section Styling --- */



/** --- Registration Section Styling --- */
.reg-package-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border-divider);
}

.reg-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.highlighted-package {
    border: 3px solid var(--primary-blue);
    box-shadow: 0 10px 25px rgba(14, 47, 116, 0.2);
}

.card-header-package {
    padding: 25px 20px 15px;
    background-color: #f9f9f9;
}

.highlighted-package .card-header-package {
    background-color: var(--primary-blue);
}

.package-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.highlighted-package .package-title {
    color: var(--white);
}

.package-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

.highlighted-package .package-subtitle {
    color: #f5c09a;
}

.package-price-box {
    padding: 20px 0;
    background-color: var(--white);
    border-top: 1px dashed var(--border-divider);
}

.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    color: var(--accent-orange);
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1em;
    color: var(--text-grey);
    font-weight: 500;
}

.card-body-package {
    padding: 10px 20px 30px;
}

.package-features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: grid;
    justify-content: center;
}

.package-features-list li {
    padding: 8px 0;
    color: var(--text-main);
    font-size: 1em;
    border-bottom: 1px dotted #e6e6e6;
}

.package-features-list li i.fa-check-circle {
    color: #28a745;
}

.package-features-list li.disabled i.fa-times-circle {
    color: #dc3545;
}

.register-btn {
    width: 100%;
    padding: 12px 0;
    font-weight: 700;
    font-size: 16px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    border: none;
}

.primary-btn-reg {
    background-color: var(--accent-orange);
    color: var(--white);
}

.primary-btn-reg:hover {
    background-color: var(--accent-orange-dark);
    color: var(--white);
}

.secondary-btn-reg {
    background-color: var(--primary-blue);
    color: var(--white);
}

.secondary-btn-reg:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
}

/** --- End Registration Section Styling --- */





/* --- Photo Gallery Section Styling --- */
.gallery-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.gallery-main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.gallery-sub-title {
    font-size: 1.1em;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 30px;
}

/* --- Gallery Item Styling (Grid Boxes) --- */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    padding-top: 75%;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

/* --- View All Photos Button --- */
.view-all-photos-btn {
    background-color: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background-color 0.3s, border-color 0.3s;
}

.view-all-photos-btn:hover {
    background-color: var(--accent-orange-dark);
    border-color: var(--accent-orange-dark);
}




/* --- Video Gallery Section Styling --- */
.video-gallery-section {
    background-color: var(--white);
    padding: 60px 0;
}

.video-gallery-main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.video-gallery-sub-title {
    font-size: 1.1em;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 30px;
}

/* --- Video Item Styling --- */
.video-item {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Thumbnail Wrapper */
.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Icon Overlay */
.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(14, 47, 116, 0.4);
    transition: background-color 0.3s;
}

.video-item:hover .play-icon-overlay {
    background-color: rgba(14, 47, 116, 0.6);
}

.play-icon-overlay i.fa-play {
    font-size: 2.5em;
    color: var(--accent-orange);
    border: 3px solid var(--accent-orange);
    border-radius: 50%;
    padding: 15px 18px 15px 22px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s;
}

.video-item:hover .play-icon-overlay i.fa-play {
    transform: scale(1.1);
}

/* Video Caption */
.video-caption {
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    text-align: center;
}


/* --- Modal/Lightbox Styling (Optional but recommended) --- */
/* Makes the video iframe fill the modal body without padding */
.modal-body {
    padding: 0 !important;
}

/* Optional: To make the close button invisible if using a dedicated lightbox */
.modal-content {
    background-color: transparent;
    border: none;
}

/* --- Get In Touch Section Styling --- */
.contact-section {
    background-color: #f0f4f8;
    padding: 60px 0;
}

.contact-main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-sub-title {
    font-size: 1.1em;
    color: var(--accent-orange);
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-content-box {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

/* --- Contact Details List --- */
.details-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5em;
    color: var(--accent-orange);
    width: 35px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-list .detail-text {
    margin-left: 10px;
}

.contact-list .detail-label {
    display: block;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 14px;
    text-transform: uppercase;
}

.contact-list .detail-value {
    display: block;
    color: #333333;
    line-height: 1.4;
}

/* --- Google Map Embed --- */
.google-map-embed {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-divider);
}

/* --- Contact Form Styling --- */
.contact-form-wrapper {
    padding: 0 15px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
}

.form-control {
    border-radius: 5px;
    border: 1px solid var(--border-divider);
    padding: 10px 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(245, 108, 10, 0.25);
}

.submit-message-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-message-btn:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
}




/* --- Partner Logo Section Styling --- */
/* 1. Logo Item Container */
.partner-logo-item {
    height: 120px;
    border: 1px solid var(--border-divider);
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: var(--white);
    border-radius: 6px;
}

/* Logo Image Scaling */
.partner-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    transition: opacity 0.3s;
}

/* Slide Spacing */
.slick-slide {
    margin: 0 10px;
}

/* Link Hover Effect */
.partner-slide a:hover .partner-logo {
    opacity: 0.7;
}

/* 2. Slider Arrow Styles */
.partner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.partner-arrow:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
}

/* Arrow Positioning */
.slick-prev.partner-arrow {
    left: -50px;
}

.slick-next.partner-arrow {
    right: -50px;
}

/* 3. Slider Dots Styles */
.slick-dots {
    text-align: center;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--text-grey);
    text-indent: -9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slick-dots li.slick-active button {
    background: var(--accent-orange);
}






/* --- Testimonial Section Styling --- */
.title-sec {
    background: var(--white);
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Card Container */
.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 25px;
    font-style: italic;
}

/* Quote Icon */
.quote-icon {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-right: 10px;
    vertical-align: top;
}

/* Author Footer */
.testimonial-author-footer {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-divider);
}

.author-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.author-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
}

.author-country {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-grey);
}

/* --- Slick Navigation Styling --- */
.testimonial-arrows-control {
    text-align: center;
    margin-top: 30px;
}

.testimonial-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    width: 100px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.testimonial-arrow:hover {
    background-color: var(--primary-blue-dark);
}

button.slick-prev.testimonial-arrow.slick-arrow {
    right: 110px;
    position: absolute;
    bottom: -60px;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
}

button.slick-next.testimonial-arrow.slick-arrow {
    position: absolute;
    bottom: -60px;
    right: 0px;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
}
/* --- End Testimonial Section Styling --- */

/*button.slick-prev.testimonial-arrow.slick-arrow {
    left: -15px;
    position: absolute;
    top: 50%;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    transform: translateY(-50%);
}

button.slick-next.testimonial-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    transform: translateY(-50%);
}*/

.package-subtitle,
.member-role {
	text-align: center;
}

.contact-section .section-sub-title {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-benner {
        padding: 40px 0;
    }

    .conference-hero-box {
        padding: 25px;
        max-width: 100% ;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-sub-title {
        font-size: 15px;
    }

    .hero-deadlines-container {
        gap: 10px;
        flex-direction: column;
    }

    .hero-details-container {
        gap: 10px;
        flex-direction: column;
    }

    .deadline-label {
        font-size: 14px;
    }
    .deadline-date {
        font-size: 15px;
    }
    .hero-cta-buttons {
        flex-direction: column;
    }
    .hero-theme-box {
        background-color: #fff;
    }
    
    .main-sections section {
        padding: 50px 15px;
    }

    #conference-countdown {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .timer-unit {
        width: 100%;
    }
    .downloadbtns {
    	display: grid;
    	grid-template-columns: 1fr;
    	grid-gap: 15px;
    }
    .download-btn:last-child {
        margin-bottom: 0;
    }
    .session-list {
        padding: 0;
        margin: 0;
        grid-template-columns: 1fr;
    }
    .session-list li {
        font-size: 15px;
        padding: 8px 0;
    }
    .sessions-cta-buttons {
        display: flex;
        gap: 20px;
        flex-direction: column;
        margin-top: 30px;
    }
    .sessions-cta-buttons .btn-conference.btn-secondary-outline,
    .sessions-cta-buttons .btn-conference.btn-primary-solid {
        text-align: center;
    }
    .venue-image-wrapper {
        height: auto;
        min-height: 220px;
    }
    .venue-img {
        height: 220px;
    }
    .venue-content-box {
        padding: 30px 15px;
    }
    .title-sec {
        margin-bottom: 30px;
    }
    .testimonial-text {
    	text-align: center;
    }

    .home .testimonials-section {
        padding-bottom: 100px !important;
    }
    
    button.slick-prev.testimonial-arrow.slick-arrow {
        left: 0 !important;
    }
    .contact-content-box {
        background-color: transparent;
        border-radius: 10px;
        box-shadow: none;
        padding: 0;
    }
    .contact-form-wrapper {
        padding: 0;
    }
    .home .testimonials-section .slick-slide {
        margin: 0;
    }
	.contact-section .section-main-title,
	.contact-section .section-sub-title {
		text-align: left;
	}
	.contact-section {
		padding: 40px 0;
	}
}



















