body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* ROOT COLORS */
:root {
    --beam-orange: rgb(273, 143, 37);
    --beam-blue: rgb(71, 134, 164);
    --beam-dark: #111;
    --beam-light: #ffffff;
}

/* NAVBAR START */
.beam-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 18px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

a.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--beam-dark);
    font-size: 18px;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--beam-blue);
}

.beam-btn {
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
}

.beam-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {

    .beam-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .beam-btn {
        width: 100%;
        text-align: center;
    }
}

/* NAVBAR END */

/* HERO SECTION START */
.beam-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.beam-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.beam-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.beam-slide.active {
    opacity: 1;
}

.beam-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beam-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(17, 17, 17, 0.95) 0%,
            rgba(17, 17, 17, 0.35) 45%,
            rgba(17, 17, 17, 0.2) 100%);
}

.beam-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.beam-title span {
    display: block;
    font-size: 68px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beam-subtitle {
    font-size: 30px;
    margin: 20px 0;
    font-weight: 300;
    color: #ddd;
}

.beam-subtitle span {
    color: var(--beam-orange);
    font-weight: 600;
}

.beam-desc {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 30px;
}

.beam-btn-primary {
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.beam-btn-primary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: #fff;
}

.beam-btn-outline {
    border: 2px solid var(--beam-blue);
    color: var(--beam-blue);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.beam-btn-outline:hover {
    background: var(--beam-blue);
    color: #fff;
}

.beam-stat-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--beam-orange);
}

.beam-stat-text {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {

    .beam-title span {
        font-size: 48px;
    }

    .beam-subtitle {
        font-size: 24px;
    }

    .beam-desc {
        font-size: 16px;
    }

    .beam-hero-content {
        padding: 0 20px;
    }
}

/* HERO SECTION END */

/* OVERVIEW SECTION START */
.section-padding {
    padding: 100px 0;
    background: #fff;
}

.beam-tag {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beam-blue);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.beam-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 20px;
}

.beam-section-title span {
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beam-section-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    max-width: 520px;
}

.beam-points {
    margin-top: 25px;
}

.beam-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: #222;
}

.beam-point span {
    width: 10px;
    height: 10px;
    margin-right: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
}

.beam-overview-visual {
    position: relative;
    height: 500px;
}

.beam-img.main {
    position: absolute;
    width: 75%;
    height: 100%;
    right: 0;
    border-radius: 20px;
    overflow: hidden;
}

.beam-img.main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beam-img.small {
    position: absolute;
    width: 45%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.beam-img.small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beam-img.small.top {
    top: 0;
    left: 0;
}

.beam-img.small.bottom {
    bottom: 0;
    left: 10%;
}

@media (max-width: 991px) {

    .beam-overview-visual {
        height: auto;
        margin-top: 40px;
    }

    .beam-img.main,
    .beam-img.small {
        position: relative;
        width: 100%;
        height: 250px;
        margin-bottom: 15px;
    }

    .beam-section-title {
        font-size: 32px;
    }
}

/* OVERVIEW SECTION END */

/* VIDEO SECTION START */
.beam-video-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.beam-video-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.beam-video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.beam-video-box video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    cursor: pointer;
}

.beam-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
}

.beam-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.beam-video-box:hover .beam-play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.beam-video-box:hover .beam-video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Animation
.beam-video-section .beam-section-title,
.beam-video-section .beam-section-text,
.beam-video-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.beam-video-section.active .beam-section-title,
.beam-video-section.active .beam-section-text,
.beam-video-section.active .beam-video-wrapper {
    opacity: 1;
    transform: translateY(0);
} */

/* Responsive */
@media (max-width: 991px) {
    .beam-video-section {
        padding: 70px 0;
    }

    .beam-video-wrapper {
        margin-top: 40px;
    }
}

/* VIDEO SECTION END */

/* ECOSYSTEM SECTION START */
.beam-ecosystem {
    padding: 80px 0;
    background: #f9fafb;
}

.beam-eco-header {
    max-width: 700px;
    margin: 0 auto 80px;
}

.beam-eco-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.beam-eco-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.beam-eco-item.reverse {
    flex-direction: row-reverse;
}

.beam-eco-content {
    flex: 1;
}

.beam-eco-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.beam-eco-content p {
    font-size: 16px;
    color: #555;
    max-width: 480px;
    margin-bottom: 15px;
}

.beam-eco-content a {
    text-decoration: none;
    font-weight: 600;
    color: var(--beam-blue);
    position: relative;
}

.beam-eco-content a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--beam-blue);
    transition: 0.3s;
}

.beam-eco-content a:hover::after {
    width: 100%;
}

.beam-eco-image {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.beam-eco-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.beam-eco-item:hover img {
    transform: scale(1.05);
}

.beam-eco-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@media (max-width: 991px) {

    .beam-eco-item {
        flex-direction: column;
    }

    .beam-eco-item.reverse {
        flex-direction: column;
    }

    .beam-eco-image {
        height: 250px;
    }

    .beam-eco-wrapper {
        gap: 60px;
    }

    .beam-eco-content h3 {
        font-size: 24px;
    }
}

/* ECOSYSTEM SECTION END */

/* CARD SECTION START */
.beam-cards-section {
    padding: 80px 0;
    background: #fff;
}

.beam-cards-header {
    margin-bottom: 60px;
}

.beam-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.beam-card-img {
    height: 220px;
    overflow: hidden;
}

.beam-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.beam-card-content {
    padding: 25px;
}

.beam-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.beam-card-content p {
    font-size: 15px;
    color: #555;
}

.beam-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.beam-card:hover img {
    transform: scale(1.1);
}

.beam-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    opacity: 0;
    transition: 0.4s;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.beam-card:hover::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .beam-card-img {
        height: 180px;
    }
}

/* CARD SECTION END */

/* IMPACT SECTION START */
.beam-impact {
    padding: 80px 0;
    background: #0d0f11;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.beam-impact::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 143, 37, 0.15), transparent 70%);
    z-index: 0;
}

.beam-impact::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(71, 134, 164, 0.15), transparent 70%);
    z-index: 0;
}

.beam-impact .container {
    position: relative;
    z-index: 2;
}

.beam-impact-header {
    margin-bottom: 50px;
}

.beam-impact-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

.beam-impact-title span {
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beam-impact-stats {
    margin-bottom: 70px;
}

.beam-impact-item {
    text-align: center;
    padding: 20px;
}

.beam-impact-item h3 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beam-impact-item p {
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.beam-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 60px 0;
}

.beam-impact-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.beam-impact-content h3 span {
    color: var(--beam-orange);
}

.beam-impact-content p {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 18px;
}

.beam-impact-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.beam-impact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {

    .beam-impact-title {
        font-size: 32px;
    }

    .beam-impact-item h3 {
        font-size: 36px;
    }

    .beam-impact-content {
        margin-top: 40px;
    }
}

/* IMPACT SECTION END */

/* CTA SECTION START */
.beam-cta {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.beam-cta::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 143, 37, 0.15), transparent 70%);
}

.beam-cta::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(71, 134, 164, 0.15), transparent 70%);
}

.beam-cta-box {
    background: #fff;
    border-radius: 24px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.beam-cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.beam-cta-box h2 span {
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beam-cta-box p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.beam-btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.beam-btn.primary {
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    color: #fff;
    margin-right: 10px;
}

.beam-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.beam-btn.outline {
    border: 1px solid #ddd;
    color: #333;
}

.beam-btn.outline:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
}

.beam-cta-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.beam-cta-animate.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.beam-cta-box h2,
.beam-cta-box p,
.beam-cta-actions {
    opacity: 0;
    transform: translateY(20px);
}

.beam-cta-animate.active h2 {
    animation: beamFadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.beam-cta-animate.active p {
    animation: beamFadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.beam-cta-animate.active .beam-cta-actions {
    animation: beamFadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes beamFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.beam-cta-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.8s;
}

.beam-cta-box:hover::after {
    left: 120%;
}

@media (max-width: 768px) {
    .beam-cta-box {
        padding: 50px 25px;
    }

    .beam-cta-box h2 {
        font-size: 28px;
    }
}

/* CTA SECTION END */

/* FOOTER START */
.beam-footer {
    background: #0d0f11;
    color: #fff !important;
    padding: 100px 0 40px;
    position: relative;
}

.beam-footer .row>div {
    margin-bottom: 40px;
}

.beam-footer-brand a img {
    height: 75px;
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.beam-footer-brand p {
    color: #aaa;
    line-height: 1.7;
    font-size: 17px;
}

.beam-footer-links h5,
.beam-footer-contact h5 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.beam-footer-links ul {
    list-style: none;
    padding: 0;
}

.beam-footer-links ul li {
    margin-bottom: 10px;
}

.beam-footer-links ul li a {
    text-decoration: none;
    color: #bbb;
    transition: all 0.3s ease;
}

.beam-footer-links ul li a:hover {
    color: var(--beam-orange);
    padding-left: 5px;
}

.beam-footer-contact p {
    color: #bbb;
    margin-bottom: 10px;
}

.beam-socials a {
    display: inline-block;
    margin-right: 15px;
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
    font-size: 20px;
}

.beam-socials a:hover {
    color: var(--beam-blue);
}

.beam-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
}

.beam-footer-bottom p {
    font-size: 16px;
    color: #888;
}


.beam-footer-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.beam-footer-animate.show {
    opacity: 1;
    transform: translateY(0);
}

.beam-footer .beam-footer-animate:nth-child(1) {
    transition-delay: 0.1s;
}

.beam-footer .beam-footer-animate:nth-child(2) {
    transition-delay: 0.2s;
}

.beam-footer .beam-footer-animate:nth-child(3) {
    transition-delay: 0.3s;
}

.beam-footer .beam-footer-animate:nth-child(4) {
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    .beam-footer {
        text-align: center;
    }
}

/* FOOTER END */
/* ===== CTA FORM STYLES (moved from inline <style>) ===== */
.beam-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.beam-cta-box h2 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.beam-cta-box h2 span {
    color: #d4af37;
}

.beam-cta-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.beam-cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Form */
.beam-cta-form {
    width: 420px;
    flex-shrink: 0;
}

.beam-cta-form form,
.beam-cta-form .wpcf7-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.beam-cta-form input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.beam-cta-form select,
.beam-cta-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.beam-cta-form input:focus,
.beam-cta-form select:focus,
.beam-cta-form textarea:focus {
    border-color: #d4af37;
}

.beam-cta-form textarea {
    min-height: 120px;
    resize: vertical;
}

.beam-cta-form button,
.beam-cta-form input[type=submit] {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, var(--beam-orange), var(--beam-blue));
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.beam-cta-form .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

.beam-cta-form .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #d9534f;
    margin-bottom: 10px;
}

.beam-cta-form div.wpcf7-response-output {
    border-radius: 8px;
    margin: 15px 0 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {

    .beam-cta-wrapper {
        flex-direction: column;
    }

    .beam-cta-form {
        width: 100%;
        max-width: 600px;
    }

    .beam-cta-box {
        text-align: center;
    }

    .beam-cta-box h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {

    .beam-cta {
        padding: 70px 0;
    }

    .beam-cta-box h2 {
        font-size: 32px;
    }

    .beam-cta-form form,
    .beam-cta-form .wpcf7-form {
        padding: 25px;
    }
}

/* ===== BLOG / COMING SOON ===== */
.coming-soon {
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
    justify-content: center;
}
