* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Poppins, sans-serif;
    /* background: var(--bg-dark); */
    background: #141416;
    color: var(--text-main);
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
:root {
    --bg-dark: #0b0e11;
    --card-dark: #11161c;
    --accent: #9ad000;
    --text-main: #ffffff;
    --text-muted: #b5bcc6;
}

/* HERO */
.hero {
    padding: 60px 5%;
    background: url("../img/blue-bg1.jpg") no-repeat;
    background-attachment: fixed;
    height: 100vh;
}
.hero h1 {
    font-size: 75px;
    font-weight: 500;
    color: #fff;
}
.hero h1 span {
    color: var(--accent);
    font-size: 75px;
    font-weight: 400;
}
.hero-text {
    font-size: 35px;
    color: #fff;
    margin-top: 30px;
    max-width: 650px;
}
.hero-tags {
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 30px;
}
.btn-primary {
    display: inline-block;
    background: #91C200;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

/* SLIDE FROM LEFT */
.from-left {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideFromLeft 0.5s ease-out forwards;
}
@keyframes slideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.delay-1 {
    animation-delay: 0.15s;
}
.delay-2 {
    animation-delay: 0.3s;
}
.delay-3 {
    animation-delay: 0.45s;
}
.delay-4 {
    animation-delay: 0.6s;
}
.delay-5 {
    animation-delay: 0.75s;
}
.delay-6 {
    animation-delay: 0.9s;
}

/* SOLUTIONS */
.mission {
    padding: 120px 8%;
    position: relative;
    border: #9aa3ad 1px;
}
.mission-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
    /* border: 1px solid #80838a; */
}

/* LEFT TEXT */
.mission-text {
    background: url("../img/blue-bg2.jpg") center/cover no-repeat;
    height: 55%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    border: 1px solid #80838a;
}
.mission-text blockquote {
    font-size: 32px;
    color: #fff;
    margin: 0 0 32px 0;
    /* text-align: left; */
    text-align: center;
    /* padding-left: 40px; */
}
.mission-text p {
    color: #9aa3ad;
    max-width: 520px;
    padding-left: 40px;
    text-align: center;
    font-size: 20px;
}

/* RIGHT SIDE STACK */
.mission-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    /* border: 1px solid #80838a; */
}
.card {
    background-color: #27282b;
    border: 1px solid #80838a;
    border-radius: 18px;
    padding: 28px;
    min-height: 260px;
    position: relative;
    transform: translateY(-250px);
}
.card.offset {
    transform: translateY(-8px);
}
.card .icon {
    width: 52px;
    height: 52px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 6px rgba(154, 208, 0, 0.4));
}
.card h3 {
    color: #f1ee36;
    margin-bottom: 14px;
    font-size: 21px;
    font-weight: 600;
}
.card p {
    color: #9aa3ad;
    font-size: 14px;
    line-height: 1.6;
}
.card .divider {
    position: absolute;
    bottom: 22px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(154, 208, 0, 0.6),
        rgba(154, 208, 0, 0)
    );
}

/* FEATURE */
.feature {
    margin-top: -275px;
    margin-bottom: 80px;
    padding: 0;
    border: 1px solid #1c1f26;
    background-color: #0e0f12;
    color: #b8bdc4;
    font-family: "Inter", sans-serif;
}

/* LEFT SIDE */
.feature .left {
    position: relative;
    min-height: 420px;
    background: url("../img/red-bg.jpg") no-repeat;
    display: flex;
    border: 1px solid #3f4349;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 48px;
}
.feature .title h2 {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.feature .title h3 {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.feature-left {
    opacity: 0;
    animation: featureLeft 0.9s ease-out forwards;
}
@keyframes featureLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* RIGHT SIDE */
.feature .right {
    padding: 48px;
    border: 1px solid #3f4349;
    background-color: #111318;
}
.feature .right p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #7a7a7a;
}

/* LAST PARAGRAPH SPACING FIX */
.feature .right p:last-child {
    margin-bottom: 0;
}
.learn-more-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 28px;
    background-color: #b6e24a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}
.learn-more-btn:hover {
    background-color: #a3cf3f;
    color: #ffffff;
}
.image-section {
    width: 100%;
    background-color: #0b0e11;
    overflow: hidden;
    position: relative;
}
.image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.feature-right {
    opacity: 0;
    animation: featureRight 0.9s ease-out forwards;
}
@keyframes featureRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Video */
.feature-video {
    margin: 40px auto;
    background-color: #0e0f12;
    color: #cfd3d8;
    padding: 0 !important;
}

/* LEFT VIDEO COLUMN */
.video-col {
    position: relative;
    min-height: 600px;
    border: 1px solid #3f4349;
    overflow: hidden;
}
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-col::after {
    content: "";
    position: absolute;
    inset: 0;
}
.video-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    align-items: center;
}
.video-overlay h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
}
.video-left {
    opacity: 0;
    animation: videoLeft 0.9s ease-out forwards;
}
@keyframes videoLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* RIGHT CONTENT */
.content-col {
    background-color: #111318;
    padding: 48px;
    display: flex;
    border: 1px solid #3f4349;
    flex-direction: column;
    justify-content: center;
}
.content-col p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #7a7a7a;
    padding: 37px 0;
}
.learn-more-btn {
    align-self: flex-start;
    padding: 12px 28px;
    background-color: #91C200;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s ease;
}
.learn-more-btn:hover {
    background-color: #a3cf3f;
    color: #ffffff;
}
.video-right {
    opacity: 0;
    animation: videoRight 0.12s ease-out forwards;
}
@keyframes videoRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .mission-wrapper {
        gap: 32px;
    }
    .card {
        min-height: 240px;
    }

    .feature {
        margin-top: -200px;
    }
    .feature .right p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 80px 6%;
        height: auto;
        min-height: 100vh;
    }
    .hero h1 {
        font-size: 56px;
        line-height: 1.2;
    }
    .hero h1 span {
        font-size: 58px;
    }
    .hero-text {
        font-size: 24px;
        max-width: 100%;
    }
    .hero-tags {
        font-size: 22px;
    }

    .mission {
        padding: 20px 6%;
    }
    .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    .mission-text {
        height: auto;
        padding: 120px 40px;
    }
    .mission-text p {
        padding-left: 0;
        /* margin: 0 auto; */
    }

    /* Remove big negative offsets */
    .card,
    .card.offset {
        transform: translateY(0);
    }
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .feature {
        margin-top: 0;
    }
    .feature .row {
        margin: 0;
    }
    .feature .left,
    .feature .right {
        padding: 40px;
    }
    .feature .left {
        min-height: 360px;
    }
    .feature .title h2 {
        font-size: 26px;
    }
    .feature .title h3 {
        font-size: 24px;
    }
    .feature .right p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .mission-text blockquote {
        text-align: start;
    }
    .mission-text p{
        text-align: start;
    }
    .video-overlay h2 {
        font-size: 24px;
    }
    .video-col,
    .content-col {
        min-height: 300px;
        padding: 32px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .hero {
        padding: 60px 24px 80px;
        text-align: left;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero h1 span {
        font-size: 42px;
    }
    .hero-text {
        font-size: 18px;
        margin-top: 20px;
    }
    .hero-tags {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .btn-primary {
        padding: 12px 22px;
        font-size: 15px;
    }

    .mission {
        padding: 0 24px;
    }
    .mission-text {
        padding: 20px 20px;
    }
    .mission-text blockquote {
        font-size: 21px;
        text-align: start;
    }
    .mission-text p {
        font-size: 15px;
    }
    .mission-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card {
        padding: 22px;
        min-height: auto;
    }
    .card h3 {
        font-size: 23px;
    }
    .card p {
        font-size: 17px;
    }

    .feature {
        margin-bottom: 60px;
    }
    .feature .left,
    .feature .right {
        padding: 28px 22px;
    }
    .feature .left {
        min-height: 350px;
        margin-top: 20px;
    }
    .feature .title h2 {
        font-size: 25px;
    }
    .feature .title h3 {
        font-size: 25px;
    }
    .feature .right p {
        font-size: 18px;
        line-height: 1.6;
    }
    .learn-more-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}

@media (max-width: 386px){
    .mission-text blockquote {
        font-size: 18px;
    }
}

/* VERY SMALL PHONES */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 32px;
    }
    .hero h1 span {
        font-size: 36px;
    }

    .feature .title h2 {
        font-size: 25px;
    }
    .feature .title h3 {
        font-size: 18px;
    }
}



/* here is the partner session css  */
.partners-section {
    background: #141416;
    padding: 0px 20px;
}

.partners-container {
    max-width: 1200px;
    margin:auto;
    display: flex;
    /* margin-top: -360px; */
    border: 1px solid #333;
}

.partners-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #333;
}

.partners-title h2 {
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

.partners-logos {
    flex: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.partner-box {
    border-left: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 25px;
}

.partner-box img {
    max-width: 120px;
    max-height: 60px;
    /* filter: grayscale(100%); */
    opacity: 0.8;
    transition: 0.3s;
}

.partner-box img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 991px) {
    .partners-container {
        /* flex-direction: column; */
        display: none;
    }

    .partners-title {
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 20px 0;
    }

    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .partners-title h2 {
        font-size: 40px;
        text-align: center;
    }

    .partners-logos {
        grid-template-columns: 1fr;
    }
    .partner-box img {
    max-width: 160px;
    max-height: 96px;
    /* filter: grayscale(100%); */
    opacity: 0.8;
    transition: 0.3s;
}
.partner-box{
    padding:30px;
}
}
