/* SPK Go-To-Market Section Styles */
:root {
    --spkGtm-primary: #71B100;
    --spkGtm-secondary: #0F2B46;
    --spkGtm-secondary-light: #163a5c;
    --spkGtm-white: #ffffff;
    --spkGtm-text: #555555;
    --spkGtm-text-light: #e0e0e0;
}

.spkGtm_section {
    position: relative;
    padding: 100px 20px;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: var(--spkGtm-text);
    z-index: 1;
}

.spkGtm_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    /* Subtle overall shadow */
    border-radius: 20px;
    overflow: hidden;
}

/* LEFT PANEL (Strategy) */
.spkGtm_leftPanel {
    flex: 1;
    background: linear-gradient(135deg, var(--spkGtm-secondary) 0%, var(--spkGtm-secondary-light) 100%);
    color: var(--spkGtm-white);
    padding: 60px 50px;
    position: relative;
    min-width: 350px;
    display: flex;
    flex-direction: column;
}

/* Decorative Corner */
.spkGtm_decoShape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--spkGtm-primary);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.8;
}

.spkGtm_heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.spkGtm_highlight {
    color: var(--spkGtm-primary);
}

.spkGtm_divider {
    width: 60px;
    height: 4px;
    background: var(--spkGtm-primary);
    margin-bottom: 30px;
    border-radius: 2px;
}

.spkGtm_text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--spkGtm-text-light);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.spkGtm_text p {
    margin-bottom: 20px;
}

/* Image Wrapper */
.spkGtm_imageWrapper {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Slight overlap effect could be done with transform if container allowed, 
       but here we stick to clean contained layout as per clean semantic structure needs */
}

.spkGtm_imageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spkGtm_imageWrapper:hover img {
    transform: scale(1.1);
}

/* RIGHT SIDE (Features) */
.spkGtm_features {
    flex: 1;
    background: #fdfdfd;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 350px;
}

.spkGtm_featureItem {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.spkGtm_featureItem:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spkGtm_iconBox {
    width: 50px;
    height: 50px;
    background: var(--spkGtm-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 25px;
    color: var(--spkGtm-white);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(113, 177, 0, 0.3);
    transition: transform 0.3s ease;
    animation: spkGtmFloatIcon 4s ease-in-out infinite;
}

@keyframes spkGtmFloatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.spkGtm_featureContent {
    flex: 1;
}

.spkGtm_featureTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--spkGtm-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spkGtm_featureDesc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--spkGtm-text);
}

/* Hover Effects */
.spkGtm_featureItem:hover {
    transform: translateX(10px);
}

.spkGtm_featureItem:hover .spkGtm_iconBox {
    transform: scale(1.1);
}

/* Floating Shapes Background */
.spkGtm_bgShape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.spkGtm_bgShape1 {
    width: 300px;
    height: 300px;
    background: rgba(113, 177, 0, 0.05);
    right: -50px;
    top: 50px;
}

/* Responsive */
@media (max-width: 991px) {
    .spkGtm_container {
        flex-direction: column;
    }

    .spkGtm_leftPanel,
    .spkGtm_features {
        width: 100%;
        padding: 40px 30px;
    }

    .spkGtm_heading {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .spkGtm_section {
        padding: 60px 15px;
    }

    .spkGtm_leftPanel,
    .spkGtm_features {
        padding: 30px 20px;
    }

    .spkGtm_featureItem {
        flex-direction: column;
    }

    .spkGtm_iconBox {
        margin-bottom: 15px;
    }
}