/* ==========================
   BUILDEXPO & ALLIANCE GLOBAL
========================== */

#beBanner {
    width: 100%;
    display: block;
    height: auto;
}

/* NAVBAR */
.be-navbar {
    width: 100%;
    background: #061735;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 9999;
}

.be-navbar.be-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: beSlideDown .3s ease;
}

@keyframes beSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

#beNavSpace {
    height: 0;
}

/* CONTAINER */
.be-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MENU */
.be-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.be-nav-list > li {
    position: relative;
}

.be-nav-list > li > a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s;
}

.be-nav-list > li > a:hover {
    color: #ffd36b;
}

/* DROPDOWN */
.be-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    padding: 8px 0;
    z-index: 99999;
}

.be-submenu:hover .be-dropdown {
    display: block;
}

.be-dropdown li {
    list-style: none;
}

.be-dropdown a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.be-dropdown a:hover {
    background: #f5f5f5;
    color: #1e376d;
}

/* CONNECT BUTTON */
.be-connect {
    background: #ffd36b !important;
    color: #1e376d !important;
    border-radius: 30px !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    animation: bePulse 1s infinite;
}

@keyframes bePulse {
    0%, 100% { background: #ffd36b; }
    50% { background: #fff; color: #1e376d !important; }
}

/* MOBILE BUTTON */
.be-mobile-btn {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 15px;
}

.blink-menu {
    background: #ff6b00;
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 5px;
    font-weight: 700;
    animation: pulseBlink 1.5s infinite;
}

@keyframes pulseBlink {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 107, 0, .7); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 107, 0, .8); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 107, 0, .7); }
}

/* ===========================
   HEAT PUMP BANNER & HERO
========================== */

.heatpump-banner {
    position: relative;
    width: 100%;
    background: url('../img/heatsl5.jpg') no-repeat center center;
    background-size: cover;
    padding: 70px 0;
    overflow: hidden;
}

.banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 520px;
    padding-left: 70px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.banner-content .sub-title {
    display: inline-block;
    color: #ff9f1c;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner-content h1 {
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    margin: 0;
    text-transform: capitalize;
    color: #fff;
}

.banner-content .blue {
    color: #091d50;
}

.banner-content .orange {
    color: #ff6b00;
}

.orange-line {
    width: 90px;
    height: 5px;
    background: #ff6b00;
    border-radius: 20px;
    margin: 22px 0;
}

.banner-content p {
    font-size: 24px;
    line-height: 1.5;
    color: #222;
    margin: 0;
    font-weight: 400;
}

.slider-wrapper {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    height: 460px;
    border-radius: 15px;
    overflow: hidden;
}

#heatSlider,
#heatSlider .carousel-inner,
#heatSlider .carousel-item {
    height: 100%;
}

#heatSlider img,
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ==========================
   SECTIONS: ABOUT, OBJECTIVES, ACTIVITIES, MEMBERS
========================== */

.about-alliance-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-alliance-section .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.section-heading,
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading span,
.section-title span {
    color: #ff6b00;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-heading h2,
.section-title h2 {
    font-size: 42px;
    color: #0f234f;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.about-highlights {
    display: grid;
    gap: 20px;
}

.highlight-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ff6b00;
    transition: .3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    margin: 0;
    color: #ff6b00;
    font-size: 28px;
    font-weight: 700;
}

.highlight-card p {
    margin: 10px 0 0;
    color: #555;
    line-height: 1.5;
}

.about-content {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.about-content p {
    color: #444;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.alliance-box {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-top: 30px;
}

.alliance-box strong {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.alliance-box p {
    color: #fff;
    margin: 0;
}

/* OBJECTIVES SECTION */
.objectives-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #07152d 0%, #0f234f 50%, #08152e 100%);
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background: url('images/hexagon-pattern.png');
    opacity: .04;
    pointer-events: none;
}

.objectives-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.objective-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 15px;
    text-align: center;
    transition: .4s;
    height: 100%;
}

.objective-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 107, 0, .08);
    border-color: #ff6b00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, .20);
}

.objective-box i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00, #ff9f1c);
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.objective-box p {
    color: #f5f5f5;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ACTIVITIES SECTION */
.activities-section {
    padding: 90px 0;
    background: #ffffff;
}

.activities-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.activities-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.activity-card {
    flex-shrink: 0;
    min-height: 140px;
}

.activity-card img {
    width: 250px;
    height: auto;
    display: block;
    border: 1px solid #e5e7eb;
    padding: 5px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* LEADERSHIP & ROUNDTABLE */
.leadership-announcement {
    padding: 45px 0;
}

.leader-photo {
    width: 100%;
    max-width: 240px;
    border-radius: 12px;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.section-tag {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.leader-name {
    font-size: 34px;
    font-weight: 700;
    color: #091d50;
    margin-bottom: 8px;
}

.leader-designation {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
}

.announcement-box {
    background: #fff;
    border-left: 5px solid #ff6b00;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.announcement-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.roundtable-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    border-left: 6px solid #ff6b00;
}

.event-date {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 15px;
    background: #091d50;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .day { font-size: 42px; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 18px; font-weight: 600; letter-spacing: 1px; }
.event-date .year { font-size: 14px; }

.event-title {
    color: #091d50;
    font-size: 34px;
    font-weight: 700;
}

.event-info {
    color: #555;
    font-size: 17px;
}

.event-info i {
    color: #ff6b00;
    width: 24px;
}

/* MEMBERS SECTION */
.members-section {
    padding: 100px 0;
    background: #f8fafc;
}

.member-category {
    margin-top: 60px;
}

.member-category h3 {
    color: #0f234f;
    font-size: 28px;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 5px solid #ff6b00;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.member-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: .3s;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    border-color: #ff6b00;
}

.member-card img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* HERO BANNER SECTION */
.hero-banner {
    position: relative;
    width: 100%;
    height: 275px;
    background: url("../img/topband1.jpg?id=4") center center no-repeat;
    background-size: cover;
}

.hero-card {
    position: absolute;
    left: 32%;
    top: 70%;
    transform: translateY(-50%);
    padding: 28px 30px;
}

.hero-btn {
    font-size: 17px;
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 14px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.hero-btn:hover {
    background: #091d50;
    color: #fff;
}

/* ==========================
   MEDIA QUERIES
========================== */

@media (max-width: 1200px) {
    .objectives-row { grid-template-columns: repeat(3, 1fr); }
    .activities-grid { grid-template-columns: repeat(4, 1fr); }
    .member-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .be-container { display: block; }
    .be-mobile-btn { display: block; text-align: right; }
    .be-nav-list { display: none; flex-direction: column; background: #102650; width: 100%; }
    .be-nav-list.be-active { display: flex; }
    .be-nav-list > li { width: 100%; }
    .be-nav-list > li > a { padding: 15px 20px; }
    .be-dropdown { position: static; display: none; background: #18376d; box-shadow: none; padding: 0; }
    .be-dropdown.be-show { display: block; }
    .be-dropdown a { color: #fff; padding-left: 40px; }
    .be-connect { padding: 10px; }
    
    .about-wrapper { grid-template-columns: 1fr; }
    .heatpump-banner { padding: 30px 0; height: auto; }
    .heatpump-banner .row { flex-direction: column-reverse; }
    .banner-content { order: 1; text-align: center; max-width: 100%; margin-bottom: 25px; padding: 0; height: auto !important; }
    .hero-banner { height: 480px; background: url("../img/topband-mobile.png") center center no-repeat; background-size: cover; }
    .hero-card { display: none !important; }
}

@media (max-width: 768px) {
    .objectives-row { grid-template-columns: repeat(2, 1fr); }
    .member-grid { grid-template-columns: repeat(2, 1fr); }
    .roundtable-card { padding: 25px; text-align: center; }
    .event-date { margin-bottom: 25px; }
    .event-title { font-size: 28px; }
}

@media (max-width: 576px) {
    .objectives-row { grid-template-columns: 1fr; }
    .member-grid { grid-template-columns: 1fr; }
    .heatpump-banner { height: auto; }
}