/* =========================================
   INDEX PAGE STYLES
   ========================================= */

img {
    max-width: 100%;
    height: auto;
}

.features-post,
.work-item,
.industry-item,
.process-item {
    transition: all 0.3s ease;
    border: 1px solid #ffffff14;
}

.features-post:hover,
.work-item:hover,
.industry-item:hover,
.process-item:hover {
    border: 1px solid #D89A1D !important;
}

input::placeholder,
textarea::placeholder {
    color: white;
    opacity: 1;
}


/* CONSOLIDATED VENDOR & INFO BOX */

.vendor-register-box {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 320px;
    padding: 30px 25px;
    border-radius: 16px;
    background: rgba(7, 31, 73, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


/* HEADING */

.vendor-head {
    margin-bottom: 20px;
    text-align: center;
}

.vendor-head h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}


/* FORM */

.vendor-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* INPUT */

.vendor-form input {
    width: 100%;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.vendor-form input:focus {
    border-color: #ff8c00;
    background: rgba(255, 255, 255, 0.12);
}


/* BUTTON */

.vendor-form button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: #ff8c00;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 5px;
}

.vendor-form button:hover {
    background: #ff9d21;
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width:991px) {
    .vendor-register-box {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: calc(100% - 40px);
        margin: 40px auto;
        padding: 30px 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}


/* VIDEO */

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 7 25) 0%, rgba(2, 10, 30, 0.82) 45%, rgba(2, 10, 30, 0.40) 100%);
    z-index: 2;
}


/* CONTENT */

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 170px 7%;
}


/* LEFT SIDE */

.hero-left {
    max-width: 720px;
}


/* TOP LINE */


/*.top-line {*/


/*    width: 65px;*/


/*    height: 4px;*/


/*    background: #ff8c00;*/


/*    margin-bottom: 25px;*/


/*    border-radius: 20px;*/


/*}*/


/* HEADING */

.hero-left h1 {
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-left h1 span {
    color: #ff8c00;
}


/* SUB TEXT */

.hero-left h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 1px;
}


/* DESCRIPTION */

.hero-left p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}


/* BTN 1 */

.btn-primary {
    background: #ff8c00;
    color: #fff;
}

.btn-primary:hover {
    background: #ff9d21;
    transform: translateY(-3px);
}


/* BTN 2 */

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}


/* REMOVED CONFLICTING INFO BOX CSS */


/* EXTRA SMALL MOBILE */

@media (max-width: 576px) {
    .hero-content {
        padding: 120px 15px 30px;
    }

    /* HEADING */
    .hero-left h1 {
        font-size: 18px;
    }

    .info-box {
        grid-template-columns: 1fr;
        gap: 20px;
        width: calc(100% - 20px);
    }

    .info-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
    }

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}


/* GLOBAL MOBILE FIXES */

@media (max-width: 768px) {
    .section {
        padding: 60px 15px !important;
    }

    .section-heading h2 {
        font-size: 17px !important;
        line-height: 23px !important;
    }

    .section-heading p {
        font-size: 14px !important;
    }
}

.video-overlay .main-button {
    display: flex;
    gap: 15px;
    justify-content: left;
    flex-wrap: wrap;
}


/* optional button styling clean look */

.video-overlay .main-button a {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}


/* first button style */

.video-overlay .main-button .scroll-to-section:first-child a {
    background: #D89A1D;
    color: #000;
}


/* second button style */

.video-overlay .main-button .scroll-to-section:last-child a {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

@media(max-width:768px) {

    .trust-bar .col-6:nth-child(1),
    .trust-bar .col-6:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .trust-bar .col-6:nth-child(2n) div {
        border-right: none !important;
    }

    .trust-bar h4 {
        font-size: 15px !important;
    }

    .trust-bar span {
        font-size: 10px !important;
    }
}

#magnaModernWhy {
    position: relative;
    padding: 60px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    overflow: hidden;
}


/* BACKGROUND EFFECTS */

#magnaModernWhy::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(1, 25, 68, 0.04);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    z-index: 0;
    animation: magnaFloat 8s ease-in-out infinite;
}

#magnaModernWhy::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    z-index: 0;
    animation: magnaFloat 10s ease-in-out infinite;
}

@keyframes magnaFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* HEADING */

#magnaModernWhy .magna-modern-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

#magnaModernWhy .magna-modern-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(1, 25, 68, 0.07);
    color: rgb(1 25 68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

#magnaModernWhy .magna-modern-heading h2 {
    line-height: 1.2;
    font-weight: 800;
    color: rgb(1 25 68);
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
}


/* SLIDER */

#magnaModernWhy .magna-modern-slider {
    position: relative;
    z-index: 2;
}

#magnaModernWhy .owl-stage {
    display: flex;
}

#magnaModernWhy .owl-item {
    display: flex;
    height: auto;
}

#magnaModernWhy .item {
    width: 100%;
    height: 100%;
    padding: 12px 5px;
}


/* CARD */

#magnaModernWhy .magna-modern-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(1, 25, 68, 0.07);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.07);
    transition: 0.45s ease;
    height: 100%;
    border-radius: 10px;
}

#magnaModernWhy .magna-modern-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 55px rgba(15, 23, 42, 0.13);
}


/* IMAGE */

#magnaModernWhy .modern-card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

#magnaModernWhy .modern-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 25, 68, 0.15), transparent);
}

#magnaModernWhy .modern-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

#magnaModernWhy .magna-modern-card:hover img {
    transform: scale(1.08);
}


/* CONTENT */

#magnaModernWhy .modern-card-content {
    position: relative;
    padding: 25px 14px 25px;
    background: #fff;
    text-align:center;
}


/* NUMBER */

#magnaModernWhy .modern-card-number {
    position: absolute;
    top: -28px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ffb347);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35);
}


/* TITLE */

#magnaModernWhy .modern-card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: rgb(1 25 68);
    margin-bottom: 14px;
    line-height: 23px;
    text-align: center;
}


/* TEXT */

#magnaModernWhy .modern-card-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(1, 25, 68, 0.72);
    margin-bottom: 0;
}


/* DOTS */

#magnaModernWhy .owl-dots {
    margin-top: 45px !important;
    text-align: center;
}

#magnaModernWhy .owl-dot span {
    width: 11px !important;
    height: 11px !important;
    background: rgba(1, 25, 68, 0.18) !important;
    margin: 5px !important;
    transition: 0.4s ease;
}

#magnaModernWhy .owl-dot.active span {
    width: 15px !important;
    border-radius: 100px;
    background: linear-gradient(90deg, #000768, rgb(1 25 68)) !important;
}


/* TABLET */

@media(max-width:991px) {
    #magnaModernWhy {
        padding: 90px 20px;
    }

    #magnaModernWhy .magna-modern-heading {
        margin-bottom: 50px;
    }

    #magnaModernWhy .magna-modern-heading h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    #magnaModernWhy .modern-card-image {
        height: 230px;
    }

    #magnaModernWhy .modern-card-content {
        padding: 30px 24px 26px;
    }

    #magnaModernWhy .modern-card-content h4 {
        font-size: 22px;
    }
}


/* MOBILE */

@media(max-width:576px) {
    #magnaModernWhy {
        padding: 75px 15px;
    }

    #magnaModernWhy::before {
        width: 260px;
        height: 260px;
        top: -100px;
        right: -100px;
    }

    #magnaModernWhy::after {
        width: 220px;
        height: 220px;
        left: -100px;
        bottom: -80px;
    }

    #magnaModernWhy .magna-modern-heading {
        margin-bottom: 40px;
    }

    #magnaModernWhy .magna-modern-tag {
        font-size: 11px;
        padding: 8px 18px;
    }

    #magnaModernWhy .magna-modern-heading h2 {
        font-size: 18px;
        line-height: 1.35;
    }

    #magnaModernWhy .item {
        padding: 8px 2px;
    }

    #magnaModernWhy .magna-modern-card {
        border-radius: 20px;
    }

    #magnaModernWhy .modern-card-image {
        height: 210px;
    }

    #magnaModernWhy .modern-card-content {
        padding: 26px 20px 24px;
    }

    #magnaModernWhy .modern-card-number {
        width: 48px;
        height: 48px;
        font-size: 17px;
        top: -24px;
        right: 18px;
    }

    #magnaModernWhy .modern-card-content h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #magnaModernWhy .modern-card-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    #magnaModernWhy .owl-dots {
        margin-top: 30px !important;
    }
}

.wmw-card:hover img {
    transform: scale(1.07);
}

/* ========== WHERE OUR MATERIALS WORK ========== */
.where-materials-work {
    padding: 100px 30px;
    background: #43444912;
    position: relative;
    overflow: hidden;
}

.where-materials-work .magna-modern-heading {
    margin-bottom: 50px;
}

.where-materials-work .magna-modern-heading h2 {
    color: var(--magna-text-heading) !important;
    font-weight: 800 !important;
    font-size: clamp(26px, 4vw, 38px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

.where-materials-work .wmw-section-desc {
    color: #64748b !important;
    max-width: 620px;
    margin: 0 auto !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
}

.where-materials-work .section-heading {
    margin-bottom: 50px;
}

.where-materials-work .section-heading h2 {
    color: var(--magna-text-heading) !important;
    font-weight: 800;
}

.where-materials-work .section-heading h2 span {
    color: var(--magna-text-heading) !important;
}

.where-materials-work .section-heading p {
    color: #64748b !important;
    max-width: 620px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

.where-materials-work .wmw-card {
    box-shadow: 0 12px 36px rgba(11, 52, 114, 0.1) !important;
}

.wmw-carousel .owl-dots {
    margin-top: 35px !important;
}

.wmw-carousel .owl-dot span {
    background: rgba(11, 52, 114, 0.18) !important;
    width: 10px !important;
    height: 10px !important;
    transition: 0.3s;
}

.wmw-carousel .owl-dot.active span {
    background: #D89A1D !important;
    width: 28px !important;
    border-radius: 5px !important;
}


/*.wmw-carousel .owl-nav .owl-prev,*/


/*.wmw-carousel .owl-nav .owl-next {*/


/*    background: rgba(245, 166, 35, 0.15) !important;*/


/*    color: #D89A1D !important;*/


/*    border-radius: 50% !important;*/


/*    width: 42px !important;*/


/*    height: 42px !important;*/


/*    font-size: 18px !important;*/


/*    line-height: 42px !important;*/


/*    transition: 0.3s;*/


/*}*/

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    display: none;
}


/* =========================
   HOW WE WORK BACKGROUND
========================= */

.how-we-work {
    position: relative;
    background-image: url('../images/choosing-bg.jpg');
    /* YOUR BG */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 30px;
}


/* Content layer */

.how-we-work .container-fluid {
    position: relative;
    z-index: 2;
}


/* Heading */

.how-we-work .section-heading h2 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.how-we-work .section-heading p {
    color: #ccc;
    font-size: 18px;
}


/* =========================
   OWL CAROUSEL FIX
========================= */

.process-carousel .item {
    padding: 10px;
}


/* Card */

.process-item {
    background: #ffffff;
    border-top: 4px solid #041b4c;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 37%);
    margin-bottom: 2px;
    border-left: 2px solid #041b4c;
    border-bottom: 2px solid #041b4c;
    border-right: 2px solid #041b4c;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process-item:hover {
    border-color: #D89A1D;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* Hover */

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}


/* =========================
   ICON STYLE
========================= */

.process-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D89A1D, #d98c10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(245, 166, 35, 0.4);
}

.process-icon i {
    font-size: 30px;
    color: #000;
}


/* =========================
   TEXT STYLE
========================= */

.process-item h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {
    .how-we-work {
        padding: 70px 20px;
    }
}


/* OWL ITEM FIX */

.process-carousel .item {
    height: 100%;
    display: flex;
}


/* CARD EQUAL HEIGHT */

.process-item {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    /* IMPORTANT FIX */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* OWL STRETCH FIX */

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
    height: auto;
}


/* ensure full equal height inside */

.owl-carousel .item {
    height: 100%;
}


/* SECTION */

.section.industries {
    background: #33363a;
    padding: 100px 30px;
}


/* HEADING */

.section.industries h2 {
    color: #0d1b2a;
    font-weight: 700;
}

.section.industries p {
    color: #64748b;
    margin-top: 10px;
}


/* CARD */

.industry-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


/* IMAGE */

.industry-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.4s ease;
}


/* CONTENT */

.industry-item .down-content {
    padding: 20px;
    text-align: center;
}

.industry-item h4 {
    color: #0d1b2a;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}


/* BUTTON */

.industry-item a {
    display: inline-block;
    padding: 8px 18px;
    background: #0d1b2a;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.industry-item a:hover {
    background: #1b263b;
}


/* HOVER */

.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-item:hover img {
    transform: scale(1.08);
}


/* CAROUSEL */


/*.industries-carousel .owl-item {*/


/*    padding: 12px;*/


/*}*/


/* MOBILE */

@media (max-width: 768px) {
    .section.industries {
        padding: 70px 20px;
    }
}


/* CAROUSEL GAP FIX */

.magna-carousel .owl-item {
    padding: 12px;
}


/* CARD DESIGN */

.magna-card {
    background: #ffffff;
    border-top: 4px solid #f1a501;
    border-radius: 30px;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 37%);
    margin-bottom: 2px;
    border-left: 2px solid #041b4c;
    border-bottom: 2px solid #041b4c;
    border-right: 2px solid #041b4c;
    overflow: hidden;
    transition: all 0.3s ease;
}

.magna-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #D89A1D;
}

.magna-card:hover {
    transform: translateY(-6px);
}

.magna-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.4s ease;
}

.magna-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 18px;
    text-align: center;
}

.card-body h4 {
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 12px;
    color: #111;
}

.card-body a {
    display: inline-block;
    padding: 8px 18px;
    background: #D89A1D;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.card-body a:hover {
    background: #000;
    color: #fff;
}


/* CTA BUTTON */

.magna-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #D89A1D;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn1:hover {
    background: #d8bf03 !important;
    color: #000000 !important;
}

.owl-carousel .item {
    height: 100%;
    padding: 0px !important;
}


/* =========================
   SECTION BACKGROUND
========================= */

.section.courses {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    padding: 100px 30px;
}


/* HEADING */

.section-heading h2 {
    color: #fff;
    font-weight: 700;
}

.section-heading p {
    color: #cbd5e1;
}


/* =========================
   CARD DESIGN (MODERN)
========================= */

.magna-carousel .owl-item {
    padding: 12px;
}

.magna-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* IMAGE */

.magna-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s ease;
}


/* CARD BODY */

.card-body {
    padding: 20px;
    text-align: left;
}

.card-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0d1b2a;
    font-weight: 600;
}


/* LINK BUTTON */

.card-body a {
    display: inline-block;
    font-size: 14px;
    color: #0d1b2a;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}


/* underline animation */

.card-body a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #0d1b2a;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.card-body a:hover::after {
    width: 100%;
}


/* =========================
   HOVER EFFECT
========================= */

.magna-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.magna-card:hover img {
    transform: scale(1.08);
}


/* =========================
   CTA BUTTON (PREMIUM)
========================= */

.magna-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #fff;
    color: #0d1b2a;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.magna-btn:hover {
    background: #0d1b2a;
    color: #fff;
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.4);
}

@media (max-width: 991px) {
    .trust-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item:nth-child(even) .trust-content {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .hero-left h1 {
        font-size: 18px !important;
    }

    .hero-left h4 {
        font-size: 18px !important;
    }

    .section-heading h2 {
        @media (max-width: 991px) {
            .section.why-us, .section.where-materials-work, .section.how-we-work, .section.industries, .section.courses, .section.video, .founder-section, .py-5 {
                padding: 60px 15px !important;
            }

            .wmw-card img {
                height: 200px !important;
            }

            .process-item {
                padding: 25px 15px !important;
            }

            .process-icon {
                width: 65px !important;
                height: 65px !important;
            }

            .process-icon i {
                font-size: 22px !important;
            }

            .industry-item img,
            .magna-card img {
                height: 160px !important;
            }

            .trust-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            }

            .trust-item:nth-child(even) .trust-content {
                border-left: 1px solid rgba(255, 255, 255, 0.15);
            }

            .trust-item:nth-last-child(-n+2) {
                border-bottom: none;
            }

            .hero-left h1 {
                font-size: 32px !important;
            }

            .hero-left h4 {
                font-size: 18px !important;
            }

            .section-heading h2 {
                font-size: 28px !important;
            }

            .vendor-register-box {
                width: 100% !important;
                max-width: 400px;
                margin: 20px auto;
            }
        }

        @media (max-width: 767px) {
            .founder-card {
                display: flex !important;
                flex-direction: column !important;
            }

            .founder-card .col-md-6 {
                width: 100% !important;
            }

            .founder-right {
                padding: 30px 20px !important;
            }

            .founder-title {
                font-size: 24px !important;
            }

            .founder-bio {
                font-size: 14px !important;
            }

            .contact-wrapper {
                display: flex;
                flex-direction: column;
                gap: 30px !important;
            }
        }

        @media (max-width: 576px) {
            .hero-left h1 {
                font-size: 28px !important;
            }

            .hero-left p {
                font-size: 14px !important;
            }

            .trust-item {
                width: 100% !important;
                max-width: 100% !important;
                flex: 0 0 100% !important;
                border-right: none !important;
            }

            .trust-item:nth-child(even) .trust-content {
                border-left: none !important;
            }

            .trust-item:last-child {
                border-bottom: none;
            }

            .hero-buttons {
                gap: 10px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 20px !important;
                font-size: 13px !important;
            }
        }
    }
}

.leadership-section {
    background: #050505;
    padding: 100px 30px;
    color: #fff;
    overflow: hidden;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading .sub-title {
    color: #f7931e;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.section-heading p {
    color: #cfcfcf;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.heading-line {
    width: 80px;
    height: 3px;
    background: #f7931e;
    margin: 25px auto 0;
}

.leader-card {
    display: flex;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
}

.leader-card:hover {
    transform: translateY(-5px);
    border-color: #f7931e;
}

.leader-image {
    width: 50%;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.leader-content {
    width: 50%;
    padding: 45px 15px;
    position: relative;
}

.leader-icon {
    width: 65px;
    height: 65px;
    border: 1px solid #f7931e;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.leader-icon i {
    color: #f7931e;
    font-size: 28px;
}

.designation {
    color: #f7931e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.leader-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.small-line {
    width: 50px;
    height: 3px;
    background: #f7931e;
    margin-bottom: 25px;
}

.leader-content p {
    color: #d2d2d2;
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 20px;
}

.leadership-features {
    margin-top: 35px;
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-box {
    padding: 40px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.feature-box i {
    color: #f7931e;
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-box p {
    color: #cfcfcf;
    margin: 0;
    line-height: 1.8;
}

.leadership-features .col-lg-3:last-child .feature-box {
    border-right: none;
}


/* Responsive */

@media(max-width:991px) {
    .section-heading h2 {
        font-size: 42px;
    }

    .leader-card {
        flex-direction: column;
    }

    .leader-image,
    .leader-content {
        width: 100%;
    }

    .leader-image {
        height: 400px;
    }

    .feature-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media(max-width:767px) {
    .leadership-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .leader-content {
        padding: 30px 25px;
    }

    .leader-content h3 {
        font-size: 18px;
    }

    .leader-content p {
        font-size: 15px;
    }
}

#magnaContactSection {
    position: relative;
    padding: 110px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
    overflow: hidden;
}


/* BACKGROUND EFFECT */

#magnaContactSection::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(1, 25, 68, 0.04);
    border-radius: 50%;
    top: -180px;
    right: -100px;
    z-index: 0;
}

#magnaContactSection::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
    z-index: 0;
}


/* WRAPPER */

#magnaContactSection .magna-contact-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 35px;
    align-items: stretch;
}


/* LEFT FORM */

#magnaContactSection .magna-contact-form-box {
    width: 48%;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(1, 25, 68, 0.08);
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
}


/* INPUT */

#magnaContactSection .magna-input-group {
    margin-bottom: 18px;
}

#magnaContactSection .magna-input-group input,
#magnaContactSection .magna-input-group textarea {
    width: 100%;
    border: 1px solid #d7dce5;
    background: #f7f9fc;
    border-radius: 10px;
    padding: 15px 18px;
    font-size: 14px;
    color: rgb(1 25 68);
    outline: none;
    transition: 0.3s ease;
    font-weight: 500;
}

#magnaContactSection .magna-input-group textarea {
    resize: none;
    min-height: 120px;
}

#magnaContactSection .magna-input-group input:focus,
#magnaContactSection .magna-input-group textarea:focus {
    border-color: rgb(1 25 68);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(1, 25, 68, 0.06);
}


/* BUTTON */

#magnaContactSection .magna-submit-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgb(1 25 68), #0d2d72);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(1, 25, 68, 0.18);
}

#magnaContactSection .magna-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(1, 25, 68, 0.25);
}


/* RIGHT SIDE */

#magnaContactSection .magna-contact-info-box {
    width: 52%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* QUOTE */

#magnaContactSection .magna-quote-box {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 30px;
    border: 1px solid rgba(1, 25, 68, 0.08);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

#magnaContactSection .magna-quote-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 4px;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(to bottom, #ff8c00, rgb(1 25 68));
}

#magnaContactSection .magna-quote-box p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(1, 25, 68, 0.7);
    margin-bottom: 15px;
    padding-left: 18px;
    font-style: italic;
}

#magnaContactSection .magna-quote-box span {
    display: block;
    padding-left: 18px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(1 25 68);
}


/* INFO CARD */

#magnaContactSection .magna-info-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 22px 26px;
    border: 1px solid rgba(1, 25, 68, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: 0.35s ease;
}

#magnaContactSection .magna-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

#magnaContactSection .magna-info-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: rgb(1 25 68);
    margin-bottom: 8px;
}

#magnaContactSection .magna-info-card p {
    font-size: 14px;
    color: rgba(1, 25, 68, 0.65);
    margin-bottom: 0;
    line-height: 1.7;
}


/* TABLET */

@media(max-width:991px) {
    #magnaContactSection {
        padding: 85px 18px;
    }

    #magnaContactSection .magna-contact-wrapper {
        flex-direction: column;
    }

    #magnaContactSection .magna-contact-form-box,
    #magnaContactSection .magna-contact-info-box {
        width: 100%;
    }

    #magnaContactSection .magna-contact-form-box {
        padding: 30px;
    }
}


/* MOBILE */

@media(max-width:576px) {
    #magnaContactSection {
        padding: 70px 14px;
    }

    #magnaContactSection::before {
        width: 220px;
        height: 220px;
        top: -100px;
        right: -100px;
    }

    #magnaContactSection::after {
        width: 180px;
        height: 180px;
        left: -80px;
        bottom: -70px;
    }

    #magnaContactSection .magna-contact-wrapper {
        gap: 22px;
    }

    #magnaContactSection .magna-contact-form-box {
        padding: 22px;
        border-radius: 18px;
    }

    #magnaContactSection .magna-input-group input,
    #magnaContactSection .magna-input-group textarea {
        padding: 14px 15px;
        font-size: 14px;
    }

    #magnaContactSection .magna-submit-btn {
        padding: 14px;
        font-size: 14px;
    }

    #magnaContactSection .magna-quote-box {
        padding: 22px;
        border-radius: 18px;
    }

    #magnaContactSection .magna-quote-box p {
        font-size: 14px;
        line-height: 1.8;
    }

    #magnaContactSection .magna-quote-box span {
        font-size: 15px;
    }

    #magnaContactSection .magna-info-card {
        padding: 18px 20px;
        border-radius: 16px;
    }

    #magnaContactSection .magna-info-card h4 {
        font-size: 19px;
    }

    #magnaContactSection .magna-info-card p {
        font-size: 13px;
    }
}

/* ========== INDIA NETWORK — LIGHT THEME ========== */
.vendor-network-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    color: #444444;
    border-top: 1px solid rgba(11, 52, 114, 0.06);
    border-bottom: 1px solid rgba(11, 52, 114, 0.06);
}

.vendor-network-section .container {
    position: relative;
    z-index: 2;
}

.network-heading {
    margin-bottom: 60px;
}

.network-heading h2 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--magna-text-heading) !important;
    letter-spacing: 0.5px;
}

.network-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.7;
}

.network-left-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.network-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #F5F7FA;
    border: 1px solid rgba(11, 52, 114, 0.08);
    transition: 0.35s ease;
}

.network-item:hover {
    background: #ffffff;
    border-color: rgba(216, 154, 29, 0.35);
    box-shadow: 0 8px 24px rgba(11, 52, 114, 0.08);
    transform: translateX(4px);
}

.network-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 154, 29, 0.12);
    border: 1px solid rgba(216, 154, 29, 0.25);
    flex-shrink: 0;
}

.network-item-icon i {
    color: #D89A1D;
    font-size: 16px;
}

.network-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--magna-text-heading) !important;
    line-height: 1.4;
}

.india-map-box {
    text-align: center;
    padding: 20px;
    background: #F5F7FA;
    border-radius: 20px;
    border: 1px solid rgba(11, 52, 114, 0.08);
}

.india-map-box img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(11, 52, 114, 0.12));
}

.network-stats {
    background: #ffffff;
    border: 1px solid rgba(11, 52, 114, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(11, 52, 114, 0.08);
    height: 100%;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(11, 52, 114, 0.08);
    transition: 0.3s ease;
}

.stat-box:hover {
    background: #F5F7FA;
}

.stat-box-last {
    border-bottom: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 154, 29, 0.1);
    border: 1px solid rgba(216, 154, 29, 0.22);
    flex-shrink: 0;
}

.stat-icon i {
    color: #D89A1D;
    font-size: 18px;
}

.stat-content h4 {
    margin: 0 0 4px;
    color: var(--magna-text-heading) !important;
    font-size: 22px !important;
    font-weight: 800;
    line-height: 1.1;
}

.stat-content p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.4;
}

.bottom-network-cards {
    margin-top: 65px;
}

.network-card {
    background: #ffffff;
    border: 1px solid rgba(11, 52, 114, 0.1);
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    transition: 0.35s ease;
    box-shadow: 0 6px 20px rgba(11, 52, 114, 0.05);
}

.network-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 154, 29, 0.4);
    box-shadow: 0 16px 40px rgba(11, 52, 114, 0.1);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(11, 52, 114, 0.06);
    border: 1px solid rgba(11, 52, 114, 0.1);
}

.card-icon i {
    color: var(--magna-text-heading) !important;
    font-size: 20px;
}

.network-card:hover .card-icon {
    background: rgba(216, 154, 29, 0.12);
    border-color: rgba(216, 154, 29, 0.3);
}

.network-card:hover .card-icon i {
    color: #D89A1D;
}

.network-card h4 {
    font-size: 17px;
    line-height: 1.35;
    color: var(--magna-text-heading) !important;
    margin-bottom: 10px;
    font-weight: 700;
}

.network-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 0;
}

.small-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #D89A1D, rgba(216, 154, 29, 0.2));
    margin-top: 18px;
    border-radius: 10px;
}

.network-cta-wrap {
    margin-top: 50px;
}

.vendor-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border: 1px solid #0B3472;
    border-radius: 50px;
    color: var(--magna-text-heading) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.35s ease;
    background: #ffffff;
}

.vendor-btn:hover {
    background: #0B3472;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(11, 52, 114, 0.2);
}

.vendor-btn span {
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 991px) {
    .network-left-list {
        margin-bottom: 0;
    }

    .india-map-box {
        margin: 8px 0;
    }
}

@media (max-width: 767px) {
    .vendor-network-section {
        padding: 70px 0;
    }

    .network-heading p {
        font-size: 16px;
    }

    .stat-box {
        padding: 18px 16px;
    }

    .stat-content h4 {
        font-size: 20px !important;
    }

    .vendor-btn {
        font-size: 13px;
        padding: 12px 22px;
    }

    .trusted-title,
    .cta-title {
        font-size: 18px !important;
    }

    .section.video .left-content h4 {
        font-size: 20px !important;
    }

    .magna-btn {
        margin-top: 5px;
    }
}

/* ========== STEEL SOLUTIONS — LIGHT THEME ========== */
.steel-solutions-section {
    padding: 100px 30px;
    background: #ffffff !important;
    border-top: 1px solid rgba(11, 52, 114, 0.06);
    border-bottom: 1px solid rgba(11, 52, 114, 0.06);
}

.steel-solutions-section .section-heading h2,
.steel-solutions-section .magna-modern-heading h2 {
    color: var(--magna-text-heading) !important;
    font-weight: 800;
}

.steel-solutions-section .section-heading p {
    color: #64748b !important;
    margin-top: 10px;
    max-width: 900px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.7;
}

.steel-solutions-section .steel-card {
    background: #ffffff !important;
    border: 1px solid rgba(11, 52, 114, 0.1) !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(11, 52, 114, 0.06);
    transition: 0.35s ease;
}

.steel-solutions-section .steel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 154, 29, 0.35) !important;
    box-shadow: 0 14px 36px rgba(11, 52, 114, 0.1);
}

.steel-solutions-section .steel-card h4 {
    color: var(--magna-text-heading) !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.steel-solutions-section .steel-card p {
    color: #64748b !important;
    margin-bottom: 0;
    line-height: 1.7;
}

.steel-solutions-section .features-container {
    background-color: #F5F7FA !important;
    border: 1px solid rgba(11, 52, 114, 0.08);
}

.steel-solutions-section .features-container .feature-content h3 {
    color: var(--magna-text-heading) !important;
}

.steel-solutions-section .features-container .feature-content p {
    color: #64748b !important;
}

.steel-solutions-section .feature-icon svg {
    stroke: #0B3472 !important;
}

@media (max-width: 767px) {
    .steel-solutions-section {
        padding: 70px 20px;
    }

    .steel-solutions-section .section-heading p {
        font-size: 16px;
    }
}

/* ========== EXECUTION ON GROUND — LIGHT THEME ========== */
.execution-ground-section {
    padding: 100px 30px;
    background: #ffffff;
    border-top: 1px solid rgba(11, 52, 114, 0.06);
    border-bottom: 1px solid rgba(11, 52, 114, 0.06);
    overflow: hidden;
}

.execution-ground-header {
    max-width: 820px;
    margin: 0 auto 55px;
}

.execution-tag {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(11, 52, 114, 0.06);
    border: 1px solid rgba(11, 52, 114, 0.1);
    color: var(--magna-text-heading) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.execution-ground-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--magna-text-heading) !important;
    margin-bottom: 18px;
}

.execution-ground-header h2 span {
    color: #D89A1D;
}

.execution-ground-header p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.execution-visual-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 55px;
}

.execution-visual-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(11, 52, 114, 0.08);
    box-shadow: 0 8px 28px rgba(11, 52, 114, 0.08);
    transition: 0.35s ease;
}

.execution-visual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 52, 114, 0.12);
}

.execution-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.execution-visual-card:hover img {
    transform: scale(1.06);
}

.execution-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 25, 68, 0.88) 0%, rgba(1, 25, 68, 0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    color: #ffffff;
}

.execution-visual-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(216, 154, 29, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.execution-visual-icon i {
    color: #ffffff;
    font-size: 16px;
}

.execution-visual-overlay h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff !important;
}

.execution-ground-bottom {
    margin-top: 10px;
}

.execution-ground-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--magna-text-heading) !important;
    margin-bottom: 16px;
    line-height: 1.3;
}

.execution-ground-content > p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.execution-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.execution-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--magna-text-heading) !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
}

.execution-check-list li i {
    color: #D89A1D;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.execution-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #D89A1D;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.35s ease;
    box-shadow: 0 8px 24px rgba(216, 154, 29, 0.25);
}

.execution-cta-btn:hover {
    background: #0B3472;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(11, 52, 114, 0.2);
}

.execution-cta-btn span {
    font-size: 20px;
    line-height: 1;
}

.execution-video-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(11, 52, 114, 0.1);
    box-shadow: 0 16px 48px rgba(11, 52, 114, 0.1);
    background: #F5F7FA;
}

.execution-video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

@media (max-width: 1199px) {
    .execution-visual-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .where-materials-work {
        padding: 70px 20px;
    }
}

@media (max-width: 767px) {
    .execution-ground-section {
        padding: 70px 20px;
    }

    .execution-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .execution-visual-card {
        aspect-ratio: 3 / 4;
    }

    .execution-ground-header p {
        font-size: 15px;
    }

    .execution-ground-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .execution-visual-grid {
        grid-template-columns: 1fr;
    }

    .execution-visual-card {
        aspect-ratio: 16 / 10;
    }
}


/* .magna-modern-heading h2 {
    font-size: 28px !important;
    font-weight: 700;
} */


/* fs-3 fs-md-4 fs-lg-3     class="fs-3 fs-md-5" */
