/* ==========================================================
   DJJ Healthcare
   sections.css
========================================================== */

/* ==========================================================
   WHO WE ARE
========================================================== */
.aboutSection {
    position: relative;
    padding-top: 0;
    padding-bottom: 30px;
}

.aboutWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.aboutImage {
    position: relative;
}

.aboutImage img {
    width: 100%;
    border-radius: 40px;
    transform: scale(0.75);
    transition: 1s;
}

/* .aboutImage.show img {
    transform: scale(1);
    opacity: 1;
} */

.aboutContent h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
}

.aboutContent p {
    margin-bottom: 24px;
    color: #fff;
}

/* ==========================================================
   FEATURES
========================================================== */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.featureIcon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.feature h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

/* ==========================================================
   STATS
========================================================== */
.stats {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: var(--shadow-small);
    transition: 0.35s;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat h3 {
    color: var(--secondary);
    font-size: 52px;
    margin-bottom: 10px;
}

.stat p {
    /* font-weight: 600; */
    color: var(--text-light);
}

/* ==========================================================
   CONTENT BLOCKS
========================================================== */
.contentBlock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contentBlock.reverse .contentImage {
    order: 2;
}

.contentBlock.reverse .contentText {
    order: 1;
}

.contentImage img {
    width: 100%;
    border-radius: 36px;
}

.contentText h2 {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 30px;
}

.contentText p {
    margin-bottom: 20px;
}

/* ==========================================================
   IMAGE REVEAL
========================================================== */
.contentImage {
    overflow: hidden;
}

.contentImage img {
    transform: scale(1.18);
    transition: 1.3s;
}

.contentImage.show img {
    transform: scale(1);
}

/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.sectionDecoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}

.sectionDecoration.one {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -120px;
    background: var(--secondary);
}

.sectionDecoration.two {
    width: 260px;
    height: 260px;
    bottom: -100px;
    left: -120px;
    background: var(--primary);
}

/* ==========================================================
   LISTS
========================================================== */
.checkList {
    margin-top: 30px;
}

.checkList li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: center;
}

.checkList i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Missing classes */
.contentBlock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contentImage img {
    width: 100%;
    display: block;
    border-radius: 32px;
}

.contentText h2 {
    margin-bottom: 30px;
}

.contentText p {
    margin-bottom: 24px;
}

.checkList li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.checkList i {
    color: var(--primary);
    font-size: 22px;
    margin-top: 2px;
}

.sectionDecoration {
    position: absolute;
    pointer-events: none;
}

.sectionDecoration.one {
    top: 60px;
    right: 80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(35, 130, 203, 0.05);
    filter: blur(20px);
}
