/* .card-no-logo::before {
  display: none;
}

.card-no-logo .card-body {
  padding-top: 1.5rem;
}

.card-no-logo .card-title {
  margin-top: 0;
} */

/* .card-no-logo .logo-placeholder {
  height: 70px;
  margin-bottom: 1.5rem;
} */
#book-a-space-button {
    font-size: 14px;
    border-color: #ffffff;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px 20px;
    text-align: center;
    z-index: 9;
    right: 0px;
    bottom: 45%;
    position: fixed;
    font-size: 18px;
    border-radius: 40px 0px 0px 40px;
    background-color: #75c598;
    color: #ffffff;
    cursor: pointer;
}

#book-a-space-button:hover {
    background-color: #194687;
}

@media only screen and (max-width: 1440px) {
    #book-a-space-button {
        font-size: 12px;
        width: auto;
    }
}

.header-style3 .navbar-nav > li > a:hover {
    color: #75c598;
}

.breadcrumb {
    display: inline-block;
    position: relative;
    padding: 15px 60px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

.breadcrumb ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrumb ul li {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.breadcrumb ul li a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb ul li:last-child a {
    color: #75c596;
}

.breadcrumb ul li:after {
    content: '/';
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: Font Awesome\ 5 Free;
    padding: 0 10px 0 10px;
}

.breadcrumb ul li:last-child:after {
    content: none;
}

.butn-style3.secondary {
    color:#194687;
}

.navbar-nav li.active > a {
    color: #75c596 !important;
}

.bg-blue {
    background: #003067;
}

.bg-lightgreen {
    background: #e6ffd5;
}

.bg-lightblue {
    background: #59b3e4;
}

.card-style-special {
    background: #fff;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-style-special::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    transition: opacity 0.3s ease;
    opacity: 0.5;

    pointer-events: none; /* 🚀 this makes it non-blocking */
}

.card-style-special:hover::before {
    opacity: 1;
}

.card-style-special:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Logo banner: softer against green background */
.logo-banner {
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-banner img {
    height: 100%;
    object-fit: contain;
}

/* Text inside cards */
.card-title a {
    color: #1b3d1f; /* darker greenish tone for titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #76c598; /* still keep your brand blue accent */
}

.card-text {
    color: #444;
    line-height: 1.6;
}

.btn-special {
    background: #76c598; /* green button */
    color: #fff;
    border-radius: 50px;
    padding: 0.55rem 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-special:hover {
    background: #1e6e2b;
    color: #fff;
}

.btn-special i {
    transition: transform 0.3s ease;
}

.btn-special:hover i {
    transform: translateX(4px);
}

/* WHAT TO EXPECT */
.expect-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background: #fff;
    padding: 3.5rem 1.5rem 2rem; /* more top padding to fit the circle */
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.expect-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 25px;
    mask-composite: exclude; 
}

.expect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12),
                0 0 18px rgba(58,199,121,0.35);
}

.expect-card .expect-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* keeps round shape */
    background: #fff;
    padding: 2px;

    position: absolute;
    top: -45px;   /* floats above */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.expect-card h4 {
    margin-top: 1rem;
    font-weight: 700;
    color: #1b3d1f;
}

.expect-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* END */

/* KEY HIGHLIGHTS */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1e88e5 0%, #002a5c 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #6ddf89 0%, #76c598 100%);
}
.btn-success {
    background:#03a93c;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
.btn-gradient-success:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}

.highlight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
}
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.sub-card {
    padding: 1rem;
    border: 1px solid #eaeaea;
    border-radius: .75rem;
    background: #f9f9f9;
    transition: background 0.3s;
}
.sub-card:hover {
    background: #f1faff;
}

.programme-table-content {
    color: #ffffff;
}

.programme-fulltable {
    margin-bottom: 30px;
    color: #ffffff;
}

.printing .programme-fulltable {
    color:#000000;
}

.programme-timeslot {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.programme-details-title {
    color: #58afe1;
}

.programme-details-people {
    color: #000;
}

.programme-time {
    flex-basis: 90px;
    padding-right: 5px;
    border-right: 2px solid #D5DAE4;
    color: #002a5c;
    font-weight:bold;
}

.timeline-divider {
    color: #000;
}

.programme-details {
    flex-basis: calc(100% - 90px);
    padding-left: 20px;
}

.timeline li {
    margin-bottom: .5rem;
}

.conf-tabs .nav-link, .conf-iwe-tabs .nav-link {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-right: 5px;
    font-weight: 600;
    background-color: #f1f5f9;
    transition: all 0.3s ease-in-out;
}

.conf-tabs .nav-link {
    color: #002a5c;
}

.conf-iwe-tabs .nav-link {
    color: #76c598;
}

.conf-tabs .nav-link:hover, .conf-iwe-tabs .nav-link:hover {
    color: #fff;
}

.conf-tabs .nav-link:hover, .conf-tabs .nav-link.active {
    background: linear-gradient(135deg, #4dabf7 0%, #002a5c 100%);
}

.conf-iwe-tabs .nav-link:hover, .conf-iwe-tabs .nav-link.active {
    background: linear-gradient(135deg, #6ddf89 0%, #76c598 100%);
}

.conf-tabs .nav-link.active, .conf-iwe-tabs .nav-link.active {
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Smooth scroll effect when switching tabs */
.tab-content {
  scroll-behavior: smooth;
}
/* END */

/* EXPLORE */
.explore-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    transition: all 0.3s ease;
}

/* Icon + Title */
.explore-btn .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: opacity 0.4s ease;
}

.explore-btn .desc {
    position: absolute;
    top: 50%;               /* Center vertically */
    left: 50%;              /* Center horizontally */
    transform: translate(-50%, 30px);  /* Start slightly below center */
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 90%;         /* Wider */
    text-align: center;     /* Center text */
    line-height: 1.5;
    font-size: 0.95rem;
}
.seacare-btn {
    background: linear-gradient(135deg, #1e88e5 0%, #002a5c 100%);
}
.iwe-btn {
    background: linear-gradient(135deg, #4ade80 0%, #76c598 100%);
}

.explore-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,42,92,0.4);
    color: #fff;
}
.explore-btn i {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    display: block;
}
.explore-btn p {
    font-weight: 400;
    opacity: 0.9;
    margin-top: .5rem;
}

/* Book A Space */
.border-contact{
    border-radius: 20px;
    border: 1px solid #26D0CE;
    padding:20px 20px;
}

#list-contact .row {
    display: flex;
    flex-wrap: wrap;
}

#list-contact .col-lg-4,
#list-contact .col-md-6,
#list-contact .col-sm-12 {
    display: flex;
    flex: 1 0 auto;
}

/* Ensure the .contactus-content elements take full height */
.contactus-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contactus-content {
    font-weight: 600;
    margin-bottom: 30px;
}

.contactus-content p {
    font-size: 14px;
    color: #2E2E2E;
    margin-bottom: 0;
}

.grecaptcha-badge {
    bottom: 75px !important;
    z-index: 999 !important;
}

.bg-very-light-bluegray {
    background-color: #e3e8f3;
}

.text-gold {
    color: #FFC905;
}

/* Programme Table Design */
.programme-table-wrapper {
    margin-top: 20px;
}

.programme-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent!important;
}

.programme-table thead th {
    padding: 15px;
    text-align: left;
    border-bottom: 3px solid #000;
    font-weight: bold;
    font-size: 1.1em;
    color: #000;
}

.programme-table thead th:last-child {
    text-align: center;
}

.programme-table tbody td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: top;
}

.programme-time-cell {
    font-weight: 600;
    color: #000;
}

.programme-agenda-cell {
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    font-size: 1.5rem;
}

.programme-location-cell {
    color: #000;
    text-align: center;
    vertical-align: middle !important;
}

.programme-table tbody td {
    border-bottom: 1px solid #000;
}

.session-track {
    font-size: 0.95em;
    font-weight: bold;
    margin-bottom: 5px;
    font-style: italic;
}

.session-number {
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFC905;
}

.session-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.session-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.95em;
}

.session-speakers,
.session-moderators {
    color: #000;
    margin-top: 5px;
}

/* Reference of Speaker */
.speaker-content {
    font-weight:500;
    color: rgba(0, 0, 0, 60%)
}

.speaker-name {
    color: rgba(0, 0, 0, 90%)
}

@media screen and (max-width:1136px) {
    .butn-style3.medium {
        padding: 13px 13px;
        font-size: 12px;
    }

    .navbar-nav > li > a {
        font-size: 13px;
    }

    .navbar > ul > li.has-sub > a:after {
        top: 26px;
        right: -3px;
    }
}

@media screen and (min-width: 992px) {
    .explore-btn:hover .content {
        opacity: 0;
    }
    .explore-btn:hover .desc {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width:991px) {
    .card-style-special {
        padding: 1rem;
    }

    .explore-btn {
        align-items: center;
    }
    .explore-btn .content {
        opacity: 1 !important;
        flex-direction: row;
        gap: .5rem;
    }
    .explore-btn .desc {
        position: static;
        opacity: 1 !important;
        transform: none !important;
        margin-top: .5rem;
        max-width: 100%;
    }
}

@media screen and (max-width:769px) {
    .programme-agenda-cell {
        font-size: 1.3rem;
    }
    .programme-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -15px;
    }
    .programme-table {
        min-width: 600px;
    }
}