:root {
    --scjohn-gold: #D4AF37;   /* blue */
    --scjohn-black: #2B2B2B; /* green */
    --scjohn-text: #333;         /* dark gray */
}

.scjohn-services-section {
    border: 1px solid #e5e5e5;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* x-offset, y-offset, blur, color */
    border-radius: 6px; /* optional rounded corners */
    font-family: "Poppins";
}
.scjohn-services-section:hover {
    cursor: pointer;
}
.scjohn-services-section:hover .scjohn-marquee-box {
    background-color: var(--scjohn-black); /* ya koi bhi color */

}
.scjohn-services-section:hover .scjohn-marquee-track {
    color: var(--scjohn-gold);
}
.scjohn-marquee-box {
    position: relative;
    overflow: hidden;
    /*padding: 16px 20px;*/
    padding-left: 20px;
    padding-right: 20px;
    height: 80px;
    background-color: var(--scjohn-gold);
}
.scjohn-link {
    text-decoration: none !important;
    color: inherit;
    display: block; /* make entire header clickable if link provided */
}
.scjohn-marquee-track {
    display: inline-block;
    white-space: nowrap;
    font-weight: bold;
    font-size: 75px;
    will-change: transform;
    animation: scjohn-marquee 20s linear infinite;
    animation-play-state: paused; /* default paused */
}
/*.scjohn-marquee-box:hover .scjohn-marquee-track,*/
/*.scjohn-link:hover .scjohn-marquee-track {*/

/*    animation-play-state: running; !* run on hover *!*/
/*    font-weight: 700;*/
/*    -webkit-text-stroke: var(--scjohn-gold); !* stroke width + stroke color *!*/
/*}*/

/* Jab poore section hover ho */
.scjohn-services-section:hover .scjohn-marquee-track {
    animation-play-state: running; /* run on hover */
    font-weight: 700;
    -webkit-text-stroke: var(--scjohn-gold); /* stroke width + stroke color */
}

@keyframes scjohn-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.scjohn-title{
    font-size: 25px;
    font-weight: bold;
}
.scjohn-content {
    display: flex;
    flex-direction: column;

    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color:#222;
}
.scjohn-title {
    font-size: 25px;
    font-weight: bold;
}

.scjohn-content {
    font-size: 16px;
    line-height: 1.6;
}

.scjohn-btn-text {
    width: fit-content;
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-radius: 20px;
    background-color: var(--scjohn-black);
    color: white;
}
/* Mobile screens */
@media (max-width: 768px) {
    .scjohn-title {
        font-size: 20px;
    }
    .scjohn-content {
        font-size: 14px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .scjohn-title {
        font-size: 18px;
    }
    .scjohn-content {
        font-size: 13px;
    }
}