/*! Start Me-Hero Section Bar */

.me-hero {
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    background: #050505;
}

.me-hero__particles {
    inset: 0;
    z-index: 1;
    position: absolute;
}

.me-hero__container {
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 90px 10px;
    max-width: 1300px;
    position: relative;
}

.me-hero__content {
    max-width: 760px;
}

.me-hero__category {
    font-size: 16px;
    font-weight: 500;
    margin-left: 6px;
    color: #f8f8f8;
    margin-bottom: 16px;
    display: inline-block;
}

.me-hero__title {
    font-size: 46px;
    font-weight: 700;
    color: #f8f8f8;
    line-height: 1.14;
    margin-bottom: 20px;
}

.me-hero__title span {
    color: #7d8f8f;
}

.me-hero__description {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #c7c7c7;
    max-width: 640px;
    margin-bottom: 36px;
}

.me-hero__actions {
    gap: 16px;
    display: flex;
}

.btn {
    gap: 8px;
    overflow: hidden;
    font-weight: 600;
    font-size: 15.5px;
    position: relative;
    padding: 14px 30px;
    border-radius: 12px;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn-primary {
    color: black;
    background: linear-gradient(135deg,
            #9ff0d0 0%,
            #5fdac6 50%,
            #3bbdb7 100%);
    box-shadow:
        0 6px 18px rgba(63, 201, 181, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary::after {
    inset: 0;
    opacity: 0;
    content: "";
    position: absolute;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.55),
            transparent 60%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 34px rgba(63, 201, 181, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-outline {
    color: #ffffff;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    color: #0a0a0a;
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
    .me-hero__title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .me-hero {
        padding-top: 80px;
        align-items: flex-start;
    }

    .me-hero__container {
        padding: 0 24px;
        margin-top: 20px;
    }

    .me-hero__content {
        text-align: left;
    }

    .me-hero__title {
        font-size: 32px;
    }

    .me-hero__description {
        font-size: 16px;
    }

    .me-hero__actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-outline{
        margin-bottom: 110px;
    }

    .btn {
        width: 100%;
    }

}

@media (max-width: 480px) {
    .me-hero__title {
        font-size: 26px;
    }
}

/*! End Me-Hero Section Bar */

/*! Start Success Stories Section Bar */

.success-section {
    width: 100%;
    color: #f8f8f8;
    background-color: #f8f8f8;
    padding: 36px 0px;
}

.success-container {
    margin: 0 auto;
    padding: 0 32px;
    max-width: 1320px;
}

.success-header {
    display: flex;
    margin-bottom: 14px;
    align-items: center;
    justify-content: space-between;
}

.success-title {
    font-size: 46px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.success-view-link {
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.success-view-link:hover {
    color: darkgray;
    transform: translateX(4px);
}

.success-subtitle {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: #0a0a0a;
    max-width: 920px;
    margin-bottom: 48px;
}

.success-swiper {
    padding-bottom: 56px;
}

.success-swiper .swiper-wrapper {
    align-items: stretch;
}

.success-swiper .swiper-slide {
    width: 320px;
    height: auto;
}

.success-card {
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 22px;
    background: #0b0e0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.success-card:hover {
    transform: translateY(-8px);
}

.success-image {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.success-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.success-card:hover .success-image img {
    transform: scale(1.08);
}

.success-top-label {
    top: 16px;
    left: 16px;
    z-index: 3;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    position: absolute;
    max-width: calc(100% - 32px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.success-overlay {
    inset: 0;
    z-index: 2;
    position: absolute;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.25) 35%,
            rgba(0, 0, 0, 0) 55%),
        linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0) 65%);
}

.success-content {
    gap: 12px;
    z-index: 4;
    display: flex;
    inset: auto 0 0 0;
    position: absolute;
    flex-direction: column;
    padding: 20px 20px 24px;
}

.success-tag {
    color: #9ff0d0;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    align-self: flex-start;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(159, 240, 208, 0.18);
}

.success-tag-group {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
}

.success-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #f8f8f8;
    line-height: 1.45;
}

.success-swiper .swiper-button-prev,
.success-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    color: #f8f8f8;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    background: rgba(15, 20, 20, 0.75);
    transition: background 0.3s ease, transform 0.3s ease;
}

.success-swiper .swiper-button-prev:hover,
.success-swiper .swiper-button-next:hover {
    transform: scale(1.08);
    background: rgba(159, 240, 208, 0.25);
}

.success-swiper .swiper-button-prev::after,
.success-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .success-title {
        font-size: 32px;
    }

    .success-image {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .success-container {
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    .success-section {
        padding: 72px 0 48px;
    }

    .success-header {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .success-title {
        font-size: 32px;
    }

    .success-image {
        height: 300px;
    }

    .success-card-title {
        font-size: 16px;
    }
}

/*! End Success Stories Section Bar */

/*! Start Sector Spotlight Section Bar */

.sector-spotlight {
    width: 100%;
    padding: 46px 0;
    color: #f8f8f8;
    background-color: black;
}

.sector-container {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1350px;
}

.sector-title {
    font-size: 35px;
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.sector-tags {
    gap: 14px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.sector-tag {
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    color: #f8f8f8;
    padding: 14px 26px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.sector-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

.sector-cta {
    gap: 24px;
    display: flex;
    padding: 36px 48px;
    border-radius: 18px;
    align-items: center;
    background-color: #f8f8f8;
    justify-content: space-between;
    /* background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.03)); */
}

.sector-cta-text {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
}

.sector-cta-actions {
    gap: 16px;
    display: flex;
}

.sector-btn {
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 12px;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.sector-btn-primary {
    color: #f8f8f8;
    background: #000000;
}

.sector-btn-primary:hover {
    transform: translateY(-2px);
}

.sector-btn-secondary {
    color: #000;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.45);
}

.sector-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .sector-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .sector-container {
        padding: 0 24px;
    }

    .sector-cta {
        gap: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sector-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .sector-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .sector-title {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .sector-tags {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .sector-tag {
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 10px;
        white-space: normal;
    }

    .sector-tag:active {
        transform: scale(0.98);
    }

    .sector-cta {
        padding: 24px 20px;
        border-radius: 16px;
        gap: 20px;
    }

    .sector-cta-text {
        font-size: 16px;
        line-height: 1.55;
        color: #000;
    }

    .sector-cta-actions {
        width: 100%;
        gap: 14px;
    }

    .sector-btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .sector-title {
        font-size: 30px;
    }

    .sector-cta-text {
        font-size: 18px;
    }
}

/*! End Sector Spotlight Section Bar */


/*! Start Insights Section Bar */

.insights-section {
    width: 100%;
    color: #000000;
    padding: 36px 0 80px;
    background: #f8f8f8;
}

.insights-container {
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1290px;
}

.insights-title {
    font-size: 36px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.insights-grid {
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.insight-card {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
}

.insight-image {
    flex: 0 0 42%;
    overflow: hidden;
    position: relative;
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.08);
}

.insight-content {
    flex: 1;
    display: flex;
    padding: 28px 32px;
    flex-direction: column;
    justify-content: space-between;
}

.insight-heading {
    font-size: 18px;
    font-weight: 600;
    color: #f8f8f8;
    line-height: 1.45;
    margin-bottom: 14px;
}

.insight-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b7bcbc;
    margin-bottom: 24px;
}

.insight-meta {
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insight-date {
    font-size: 14px;
    color: #8f9696;
}

.insight-link {
    font-size: 14px;
    font-weight: 600;
    color: #f8f8f8;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.insight-link:hover {
    opacity: 0.85;
    transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .insights-title {
        font-size: 34px;
    }

    .insights-grid {
        gap: 24px;
    }

    .insight-content {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .insights-container {
        padding: 0 24px;
    }

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

    .insight-card {
        flex-direction: column;
    }

    .insight-image {
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .insights-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .insight-heading {
        font-size: 16px;
    }

    .insight-description {
        font-size: 14px;
    }

    .insight-meta {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/*! End Insights Section Bar */


/*! Start the Android Form Group Career Link */

.career-link {
    color: #f8f8f8;
    text-decoration: none;
}

.career-link:hover {
    color: darkgrey;
}

/*! End the Android Form Group Career Link */


/*! Start Energy & Utilities PopUp Fix */

.energy-utilities-page {
    position: relative;
}

.energy-utilities-page .popup {
    z-index: 9999;
}

.energy-utilities-page.popup-open {
    overflow: hidden;
}

.energy-utilities-page .me-hero {
    isolation: isolate;
}

/*! Energy Energy & Utilities PopUp Fix */


/*! Start Android Hero Section Bar */

.android-contact-form {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: 18px;
    background: #050505;
    padding: 24px 28px 26px;
    border: 1px solid #262626;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.android-form-row {
    gap: 16px;
    display: grid;
    margin-bottom: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.android-form-group {
    gap: 6px;
    display: flex;
    margin-bottom: 14px;
    flex-direction: column;
}

.android-form-group label {
    font-size: 13px;
    color: #e5e5e5;
}

.android-form-group input,
.android-form-group select,
.android-form-group textarea {
    outline: none;
    font-size: 13px;
    color: #ffffff;
    padding: 9px 10px;
    border-radius: 10px;
    background: #0d0d0d;
    border: 1px solid #333333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.android-form-group input:focus,
.android-form-group select:focus,
.android-form-group textarea:focus {
    background: #101010;
    border-color: darkgray;
    box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.6);
}

.android-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.android-recaptcha-box {
    margin: 16px 0 18px;
}

.android-form-submit-button {
    width: 100%;
    border: none;
    outline: none;
    color: black;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 12px;
    padding: 11px 18px;
    background: #f8f8f8;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.android-form-submit-button:hover {
    color: #000000;
    background: #f1f1f1;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.android-form-submit-button:active {
    box-shadow: none;
    transform: translateY(0);
}

.android-hero-form-overlay {
    display: none;
}

.android-contact-form textarea {
  padding: 14px 16px;
  line-height: 1.5;
  resize: vertical;
  box-sizing: border-box;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .android-hero-section {
        padding: 40px 20px;
    }

    .android-hero-content {
        row-gap: 32px;
        grid-template-columns: minmax(0, 1fr);
    }

    .android-form-row {
        color: #000;
    }

    .android-contact-form {
        color: #000;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        background-color: #f8f8f8;
    }

    .android-hero-text {
        padding: 0 4px;
    }

    .android-form-submit-button {
        color: #f8f8f8;
        background-color: #000;
    }

    .android-contact-form input,
    .android-contact-form select,
    .android-contact-form textarea {
        color: #000000 !important;
        background: #ffffff !important;
        border: 1px solid #cccccc !important;
    }

    .android-contact-form label {
        color: #000 !important;
    }
}

@media (max-width: 768px) {
    .android-contact-form input,
    .android-contact-form select,
    .android-contact-form textarea {
        color: #000000 !important;
        background: #ffffff !important;
        border: 1px solid #cccccc !important;
    }

    .android-contact-form label {
        color: #000 !important;
    }

    .android-contact-form select {
        background-image: none;
    }

    .android-hero-section {
        padding: 30px 8px;
    }

    .android-hero-container {
        padding: 12px;
        max-width: 100%;
    }

    .android-contact-form {
        width: 100%;
        margin: 0 auto;
        padding: 16px 12px;
        border-radius: 14px;
    }

    .android-hero-text {
        padding: 0 4px;
    }

    .android-form-submit-button {
        color: #f8f8f8;
        background-color: #000;
    }
}

@media (max-width: 480px) {
    .android-hero-text h2:first-of-type {
        font-size: 24px;
    }

    .android-hero-text h2:nth-of-type(2),
    .android-hero-text h2:nth-of-type(3) {
        font-size: 18px;
    }

    .android-hero-text p {
        font-size: 13px;
    }
}

/*! End Android Hero Section Bar */