/* Custom Hero Section */
.custom-hero-section {
    position: relative;
    background-color: #f8f9fa;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 170px; /* Moderate offset */
    /*padding-bottom: 140px; */ 
    overflow: hidden;
}

.hero-bg-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04; /* Very subtle background */
    color: #1a4a38; /* Dark green for icons */
}

.hero-bg-illustrations i {
    position: absolute;
}

.turbine-icon { top: 15%; left: 10%; font-size: 200px; }
.solar-icon { bottom: 30%; right: 5%; font-size: 150px; }
.city-icon { bottom: 10%; left: 35%; font-size: 250px; }

.hero-container {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-left-content {
    padding-right: 50px;
}

.hero-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
}

.text-dark-green { color: #1a4a38; }
.text-light-green { color: #3FAE7A; }

.title-underline {
    width: 70px;
    height: 4px;
    background-color: #3FAE7A;
    margin-bottom: 15px;
}

.hero-location {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.custom-discover-btn {
    background: linear-gradient(90deg, #84C341 0%, #3FAE7A 100%);
    color: #fff !important;
    padding: 12px 25px 12px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.custom-discover-btn .btn-arrow {
    background-color: #fff;
    color: #3FAE7A;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    font-size: 12px;
    transition: transform 0.3s;
}

.custom-discover-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(63, 174, 122, 0.4);
}

.custom-discover-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-right-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-main-img {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0px 25px 35px rgba(0,0,0,0.15));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Bottom Information Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #84C341 0%, #3FAE7A 100%);
    padding: 15px 8%;
    z-index: 3;
}

.hero-bottom-bar .row {
    align-items: center;
}

.bottom-left {
    display: flex;
    align-items: center;
}

.speaker-avatars {
    display: flex;
    align-items: center;
}

.speaker-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
    object-fit: cover;
    background-color: #e9ecef;
}

.speaker-avatars .avatar:first-child {
    margin-left: 0;
}

.speaker-avatars .badge {
    background-color: #fff;
    color: #3FAE7A;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speakers-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px;
}

.bottom-right {
    display: flex;
    justify-content: flex-end;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.timer-circle {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #3FAE7A;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.timer-circle h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.timer-circle p {
    font-size: 10px;
    font-weight: 400;
    margin: 3px 0 0;
    line-height: 1;
}

@media (max-width: 1199px) {
    .hero-title { font-size: 42px; }
    .turbine-icon { font-size: 150px; }
    .solar-icon { font-size: 100px; }
    .city-icon { font-size: 180px; }
}

@media (max-width: 991px) {
    .custom-hero-section {
        padding-top: 150px;
        min-height: auto;
    }
    .hero-container { padding: 0 15px; }
    .hero-left-content { padding-right: 15px; padding-left: 15px; text-align: center !important; }
    .hero-title, .hero-location { text-align: center !important; padding: 0 !important; margin-left: auto; margin-right: auto; }
    .title-underline { margin: 0 auto 25px; }
    .hero-right-content { margin-top: 50px; margin-bottom: 50px; }
    .hero-bottom-bar { position: relative; padding: 30px 15px; }
    .bottom-right { justify-content: center; margin-top: 30px; }
    .bottom-left { justify-content: center; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 24px !important; }
    .hero-location { font-size: 13px !important; }
    .countdown-timer { gap: 10px; }
    .timer-circle { width: 70px; height: 70px; }
    .timer-circle h3 { font-size: 20px; }
    .timer-circle p { font-size: 10px; }
}

