/* Custom Dropdown for Quote Modal */
.custom-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 1.2rem;
    font-family: inherit;
}
.custom-dropdown-selected {
    background: #fafbfb;
    border: 1.5px solid #e26900;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    color: #222;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border 0.2s;
}
.custom-dropdown-selected:after {
    content: '\25BC';
    font-size: 1.1em;
    color: #e26900;
    margin-left: auto;
}
.custom-dropdown.open .custom-dropdown-selected {
    border-color: #007a7a;
}
.custom-dropdown-list {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1.5px solid #e26900;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(34,181,115,0.13);
    z-index: 10;
    padding: 0.5rem 0.7rem;
    max-height: 220px;
    overflow-y: auto;
}
.custom-dropdown.open .custom-dropdown-list {
    display: block;
}
.custom-dropdown-list label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    color: #222;
    padding: 0.4rem 0;
    cursor: pointer;
    user-select: none;
}
.custom-dropdown-list input[type="checkbox"] {
    accent-color: #e26900;
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.5em;
}
.custom-dropdown-list label:hover {
    background: #fafbfb;
}
/* Modal form alignment improvements */
#quote-form .contact-modal-row {
    gap: 1.2rem;
    margin-bottom: 1.1rem;
}
#quote-form label {
    font-weight: 600;
    margin-top: 1.1rem;
    margin-bottom: 0.3rem;
    color: #007a7a;
    font-size: 1rem;
}
#quote-form input[type="text"],
#quote-form input[type="tel"] {
    padding: 0.7rem 1rem;
    border: 1.5px solid #e26900;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    outline: none;
    font-family: inherit;
    background: #fafbfb;
    color: #222;
}
/* Reference Banner Section Styles (Above Footer) */
.ref-banner {
    display: flex;
    flex-direction: row;
    width: 100vw;
    min-height: 340px;
    background: #007a7a;
    position: relative;
    overflow: hidden;
    margin-left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: none;
    border-radius: 0;
}
.ref-banner-left {
    flex: 0 0 38vw;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 340px;
    z-index: 2;
}
.ref-banner-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}
.ref-banner-cutout-img {
    width: 320px;
    max-width: 90%;
    height: 260px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0,122,122,0.18);
}
.ref-banner-right {
    flex: 1 1 62vw;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 0 2.5rem 4vw;
    min-height: 340px;
    z-index: 1;
}
.ref-banner-headline {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.ref-banner-contact-row {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-top: 1.2rem;
}
.ref-banner-phone {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.18);
    padding: 0.5rem 1.2rem;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.ref-banner-or {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.ref-banner-contact-btn {
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 0.2rem;
    padding: 0.7rem 2.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    letter-spacing: 1px;
}
.ref-banner-contact-btn:hover {
    background: #e26900;
    color: #fff;
    border-color: #e26900;
}
.ref-banner-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 0.5rem;
}
@media (max-width: 1200px) {
    .ref-banner {
        flex-direction: column;
        min-height: 340px;
    }
    .ref-banner-left, .ref-banner-right {
        clip-path: none;
        min-height: 180px;
        width: 100vw;
        padding: 1.2rem 0 1.2rem 0;
    }
    .ref-banner-img-wrap {
        padding-bottom: 0;
    }
    .ref-banner-cutout-img {
        width: 220px;
    }
    .ref-banner-right {
        padding-left: 2vw;
    }
}
@media (max-width: 700px) {
    .ref-banner {
        flex-direction: column;
        min-height: 220px;
    }
    .ref-banner-left, .ref-banner-right {
        min-height: 120px;
        padding: 0.7rem 0 0.7rem 0;
        width: 100vw;
    }
    .ref-banner-cutout-img {
        width: 120px;
    }
    .ref-banner-headline {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    .ref-banner-contact-row {
        gap: 1rem;
    }
    .ref-banner-phone {
        font-size: 1.2rem;
    }
    .ref-banner-or {
        font-size: 1rem;
    }
    .ref-banner-contact-btn {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }
    .ref-banner-arrow {
        font-size: 1.1rem;
    }
}
.navbar-quote-wrap {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-end;
    align-items: center;
    min-width: 180px;
    margin-right: 2vw;
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}
.nav-quote-btn {
    background: #e26900;
    color: #fff;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 0.7rem 2.3rem;
    border: none;
    border-radius: 0.7rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(34,181,115,0.13);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-left: 0;
    margin-right: 1.5vw;
    margin-top: 1.25rem;
    letter-spacing: 1.2px;
    display: inline-block;
    align-self: center;
    white-space: nowrap;
    position: absolute;
    right: 2.2rem;
    top: 50%;
    transform: translateY(-30%);
    z-index: 10;
}
.nav-quote-btn:hover {
    background: #f57c00;
    color: #fff;
    color: #fff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 8px 32px rgba(34,181,115,0.18);
}
.navbar-ref {
    position: relative;
}
/* ...existing code... */
/* Modern Footer Styles */
.footer-content.custom-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    background: #e26900;
    color: #fff;
    padding: 3.2rem 2.2rem 2.2rem 2.2rem;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    align-items: flex-start;
    box-shadow: 0 -2px 24px rgba(0,0,0,0.08);
    margin-top: 0;
}
.footer-col {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    letter-spacing: 0.5px;
    color: #fff;
}
.footer-about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: #e0e0e0;
}
.footer-contact-row {
    font-size: 1.05rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-contact-row a {
    color: #007a7a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-contact-row a:hover {
    color: #f57c00;
}
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-list li {
    margin-bottom: 0.6rem;
}
.footer-link-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    transition: color 0.2s;
    font-weight: 500;
}
.footer-link-list a:hover {
    color: #43a047;
}
.footer-bottom {
    background: #e26900;
    color: #fff;
    text-align: center;
    padding: 0.7rem 0;
    font-size: 1rem;
    letter-spacing: 1px;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
@media (max-width: 1100px) {
    .footer-content.custom-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 700px) {
    .footer-content.custom-footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem 1rem 1rem;
    }
    .footer-title {
        font-size: 1.1rem;
    }
}
/* Contact Modal Styles */
.contact-modal-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.7rem;
}
.contact-modal-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
}
.contact-modal-info {
    margin-top: 2.2rem;
    text-align: center;
    font-size: 1.08rem;
    color: #007a7a;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-modal-contact a, .contact-modal-email a {
    color: #e26900;
    text-decoration: none;
    font-weight: 600;
}
.contact-modal-contact a:hover, .contact-modal-email a:hover {
    text-decoration: underline;
    color: #f57c00;
}
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.35);
    justify-content: center;
    align-items: center;
}
.contact-modal.show {
    display: flex;
}
.contact-modal-content {
    background: #fff;
    margin: auto;
    padding: 2.8rem 3.2rem 2.8rem 3.2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,122,122,0.13);
    max-width: 540px;
    width: 96vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.contact-modal-close {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    font-size: 2.2rem;
    color: #007a7a;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}
.contact-modal-close:hover {
    color: #e26900;
}
#contact-form label {
    font-weight: 600;
    margin-top: 1.1rem;
    margin-bottom: 0.3rem;
    color: #007a7a;
    font-size: 1rem;
}
#contact-form input, #contact-form textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid #e26900;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    outline: none;
    font-family: inherit;
    background: #fafbfb;
    color: #222;
}
#contact-form textarea {
    resize: vertical;
}
.contact-modal-submit {
    background: linear-gradient(90deg, #e26900 60%, #f57c00 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.7rem 2.1rem;
    border: none;
    border-radius: 0.7rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(34,181,115,0.13);
    transition: background 0.2s, transform 0.2s;
    margin-top: 1.2rem;
    letter-spacing: 1px;
    cursor: pointer;
}
.contact-modal-submit:hover {
    background: #007a7a;
    color: #fff;
    transform: scale(1.04);
}
.hero-btn-row {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.2rem;
    justify-content: center;
}
.hero-call-btn {
    background: #e26900;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.7rem 2.1rem;
    border-radius: 0.7rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(34,181,115,0.13);
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
}
.hero-call-btn:hover {
    background: #f57c00;
    color: #fff;
    transform: scale(1.04);

    color: #fff;
    transform: scale(1.04);
}
/* Reference Navbar Styles */
.top-bar-ref {
    background: #fafbfb;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 2.2rem 0.4rem 2.2rem;
    font-size: 1.08rem;
}
.logo-ref {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.logo-text {
    font-size: 1.45rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.phone-ref {
    font-weight: 600;
    font-size: 1.08rem;
    margin-right: 0.7rem;
}
.topbar-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    margin-right: 0.7rem;
    transition: color 0.2s;
}
.topbar-link:hover {
    color: #f57c00;
}
.search-ref {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 0 18px 18px 0;
    overflow: hidden;
    margin-left: 0.7rem;
}
.search-ref input {
    border: none;
    padding: 0.45rem 1rem;
    font-size: 1rem;
    border-radius: 18px 0 0 18px;
    outline: none;
    width: 160px;
}
.search-btn-ref {
    background: #e26900;
    color: #fff;
    border: none;
    padding: 0.45rem 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 0 18px 18px 0;
    transition: background 0.2s;
}
.search-btn-ref:hover {
    background: #f57c00;
}
.navbar-ref {
    background: #e26900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 2.2rem 0.7rem 2.2rem;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    position: static;
    gap: 2rem;
}
.nav-links-ref {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1 1 auto;
}
.nav-links-ref a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
    line-height: 1.2;
    padding: 0.2rem 0;
}
.nav-links-ref a:hover {
    color: #f57c00;
}
.nav-quote-btn {
    background: linear-gradient(90deg, #009688 60%, #009688 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 0.7rem 2.3rem;
    border: none;
    border-radius: 0.7rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(34,181,115,0.13);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-left: 2.5rem;
    letter-spacing: 1.2px;
    display: inline-block;
    align-self: center;
    white-space: nowrap;
    position: static;
}
.service-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    box-sizing: border-box;
    border-top: 1.5px solid #eee;
    border-radius: 0 0 0 0;
    font-weight: 700;
    font-size: 1.15rem;
}
.service-title {
    color: #222;
    font-size: 1.18rem;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0;
}
.service-arrow-btn {
    background: #f57c00;
    color: #fff;
    border: none;
    border-radius: 0 0 0 0;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-left: 1.2rem;
    box-shadow: 0 2px 8px rgba(34,181,115,0.10);
}
.service-arrow-btn:hover {
    background: #e26900;
    transform: scale(1.08);
}
.service-card-modern {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    min-height: 320px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-card-modern img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.services-subheading {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.5rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    place-items: center;
}
.service-card-modern {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    min-height: 320px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-card-modern:hover {
    box-shadow: 0 8px 32px rgba(0,122,122,0.13);
    transform: translateY(-6px) scale(1.04);
    z-index: 2;
}

/* ...existing code... */
/* ...existing code... */
/* Make service card images truly full width, increase height, remove margin */
.service-card-modern img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
@media (max-width: 1200px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 1.2rem;
    }
}
@media (max-width: 700px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem 0;
    }
    .service-card-modern {
        min-width: 0;
        max-width: 98vw;
    }
    .services {
        padding: 2.5rem 0 2.5rem 0;
    }
}
.why-aethera {
    background: #f4f4f4;
    padding: 4rem 0 4rem 0;
    text-align: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.why-aethera h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}
.why-subheading {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem 2.2rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.why-feature-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
    max-width: 320px;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
}
.why-feature-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1.1rem;
    object-fit: contain;
}
.why-feature-title {
    color: #009688;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}
.why-feature-desc {
    color: #444;
    font-size: 1.01rem;
    text-align: center;
    line-height: 1.5;
}
.why-feature-card:hover {
    box-shadow: 0 8px 32px rgba(0,122,122,0.13);
    transform: translateY(-6px) scale(1.04);
}
@media (max-width: 1200px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.2rem;
    }
}
@media (max-width: 700px) {
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem 0;
    }
    .why-feature-card {
        min-width: 0;
        max-width: 98vw;
    }
    .why-aethera {
        padding: 2.5rem 0 2.5rem 0;
    }
}
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fafbfb;
    color: #222;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
}

section, header, footer, .services, .why-aethera, .about, .team {
    box-sizing: border-box;
    max-width: 100vw;
}

header {
    background: transparent;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    pointer-events: none;
}

.top-bar-ref {
    background: #fafbfb;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 2.2rem 0.4rem 2.2rem;
    font-size: 1.08rem;
    position: relative;
    z-index: 101;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    pointer-events: auto;
}
.topbar-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.topbar-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.topbar-links a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.2s;
    padding: 0.2rem 0.7rem;
    border-radius: 4px;
}
.topbar-links a:hover {
    color: #e26900;
    background: #f5f5f5;
}


.top-bar {
    background: #fafbfb;
    color: #222;
    text-align: right;
    padding: 0.3rem 2rem;
    font-size: 1rem;
}
header {
    background: #fafbfb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover {
    color: #e26900;
}
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f57c00;
}
.hero-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.7);
    animation: heroZoom 10s infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fafbfb;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInDown 1.2s cubic-bezier(.77,0,.18,1) 0.2s both;
}
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #e26900;
    color: #fafbfb;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
    background: #f57c00;
    transform: translateY(-2px) scale(1.04);
}
.services {
    padding: 5rem 0 3rem 0;
    background: #fafbfb;
    text-align: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.services h2 {
    color: #007a7a;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2rem;
    justify-content: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 2vw;
}
.service-card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 100%;
    max-width: 370px;
    min-width: 320px;
    min-height: 420px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
    transition: none;
}
.service-card h3 {
    color: #f57c00;
    font-size: 1.5rem;
    margin: 1.2rem 0 0.7rem 0;
    font-weight: 700;
    padding: 0 1.5rem;
    text-align: left;
}
.service-desc {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.4s, max-height 0.4s;
    color: #222;
    font-size: 1.08rem;
    margin: 0.5rem 0 0 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
    pointer-events: none;
    text-align: left;
}
.service-card:hover {
    box-shadow: 0 8px 32px rgba(226,105,0,0.18);
    transform: translateY(-6px) scale(1.04);
}
.service-card:hover img {
    /* No image movement on hover */
    transform: none;
}
.service-card:hover .service-desc {
    opacity: 1;
    max-height: 100px;
    pointer-events: auto;
}
.why-aethera {
    background: #fff;
    padding: 5rem 0 3rem 0;
    text-align: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.why-aethera h2 {
    color: #e26900;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}
.why-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3.5rem 5vw;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 2vw;
}
.why-content img {
    width: 400px;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.why-content ul {
    text-align: left;
    font-size: 1.4rem;
    color: #222;
    list-style: disc inside;
    margin: 0;
    padding: 0 0 0 2.5rem;
}
.about {
    background: #fafbfb;
    padding: 5rem 0 3rem 0;
    text-align: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.about h2 {
    color: #007a7a;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}
.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4vw;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 4vw;
    min-height: 420px;
    box-sizing: border-box;
}
.about-text {
    flex: 1.2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.25rem;
    color: #222;
    max-width: 700px;
}
.about-content img {
    flex: 1;
    width: 480px;
    max-width: 40vw;
    min-width: 260px;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    object-fit: cover;
    height: 340px;
    margin: 0;
}
.about-content p {
    font-size: 1.25rem;
    color: #222;
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
}
.about-feature-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 2.5rem;
    margin: 2.5rem 0 0 0;
    padding: 0 4vw;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}
.about-feature-card {
    background: #fff;
    border: 1.5px solid #007a7a;
    border-radius: 0;
    padding: 1.2rem 2rem 1.2rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-width: 220px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.about-feature-card img, .about-feature-card svg {
    width: 48px;
    height: 48px;
    display: block;
}
.about-feature-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.about-feature-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.1rem;
}
.about-feature-desc {
    font-size: 0.98rem;
    color: #444;
}
.team {
    background: #fff;
    padding: 5rem 0 3rem 0;
    text-align: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}
.team h2 {
    color: #e26900;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}
.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 5vw;
    justify-content: center;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 2vw;
}
.team-card {
    background: #fafbfb;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    width: 270px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.team-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    border: 4px solid #007a7a;
}
.team-card h3 {
    color: #007a7a;
    font-size: 1.3rem;
    margin: 0.5rem 0 0.2rem 0;
    font-weight: 700;
}
.team-card p {
    color: #e26900;
    font-size: 1.1rem;
    margin: 0;
}
footer {
    background: #007a7a;
    color: #fafbfb;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 1rem auto;
    gap: 1.5rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #fafbfb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #e26900;
}
.footer-phone {
    font-size: 1.1rem;
    font-weight: 600;
}
.footer-bottom {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #fafbfb;
    opacity: 0.8;
}
@media (max-width: 1200px) {
    .service-cards, .why-content, .about-content, .team-cards {
        gap: 2rem 1rem;
        max-width: 100vw;
        padding: 0 1vw;
    }
    .service-card, .team-card {
        max-width: 98vw;
        min-width: 220px;
    }
    .why-content img, .about-content img {
        width: 260px;
        height: 220px;
    }
    .about-content {
        flex-direction: column;
        min-height: unset;
        padding: 0 2vw;
    }
    .about-feature-row {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 2vw;
    }
}
@media (max-width: 900px) {
    .service-cards, .team-cards, .why-content, .about-content, .footer-content {
        flex-direction: column;
        align-items: center;
        width: 100vw;
        margin-left: 0;
        transform: none;
        padding: 0 1vw;
    }
    .service-card, .team-card {
        width: 98vw;
        max-width: 98vw;
        min-width: 0;
    }
    .why-content img, .about-content img {
        width: 90vw;
        min-width: 0;
        height: 180px;
    }
    .about-content {
        flex-direction: column;
        min-height: unset;
        padding: 0 2vw;
    }
    .about-feature-row {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 2vw;
    }
}
