/*==================================
WHO WE ARE
==================================*/
.who-we-are-section {
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: "";
    position: absolute;
    right: -220px;
    top: -220px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .05);
}

.who-we-are-section::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -180px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .04);
}

.who-content {
    position: relative;
    z-index: 2;
}

.who-content h3 {
    position: relative;
    padding-left: 22px;
    margin-bottom: 22px;
}

.who-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 34px;
    border-radius: 30px;
    background: var(--primary);
    transform: translateY(-50%);
}

.who-content p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 30px;
}

/* List */
.who-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    margin: 40px 0;
}

.who-list li {
    position: relative;
    padding-left: 32px;
    color: var(--secondary);
    font-weight: 500;
}

.who-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Collapse */
.who-collapse {
    max-height: 260px;
    overflow: hidden;
    transition: .5s;
}

.who-collapse.active {
    max-height: 2000px;
}

/* Button */
.who-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    color: var(--primary);
    font-weight: 600;
}

.who-toggle i {
    transition: .35s;
}

.who-toggle.active i {
    transform: rotate(180deg);
}

/* Responsive */
@media(max-width:991px) {
    .who-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media(max-width:767px) {
    .who-content h3 {
        padding-left: 18px;
    }

    .who-content h3::before {
        height: 28px;
    }

    .who-content p {
        line-height: 1.8;
    }

    .who-collapse {
        max-height: 220px;
    }
}

@media(max-width:575px) {
    .who-list li {
        padding-left: 28px;
        font-size: 15px;
    }
}

.who-more-content {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.who-more-content h3 {
    margin-bottom: 20px;
}

.who-more-content p {
    margin-bottom: 0;
}

/* ==================================
COMPANY INFO
================================== */
.company-info-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .04);
}

.company-info-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .05);
}

.company-info-section .container {
    position: relative;
    z-index: 2;
}

/* ==================================
BLOCK
================================== */
.info-block {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 35px;
    transition: var(--transition);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .4s;
}

.info-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.info-block:hover::before {
    transform: scaleX(1);
}

/* ==================================
TITLE
================================== */
.info-block-title {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.info-block-title i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.info-block:hover .info-block-title i {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

.info-block-title h3 {
    margin: 0;
}

/* ==================================
LIST
================================== */
.info-block ul {
    list-style: none;
    margin: 0;
    padding: 30px 35px;
}

.info-block ul li {
    position: relative;
    padding: 0 0 18px 35px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(0, 0, 0, .08);
    color: var(--text);
    line-height: 1.8;
}

.info-block ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Bullet */
.info-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 175, 195, .12);
}

/* Highlight */
.info-block ul li strong {
    color: var(--secondary);
}

/* ==================================
RESPONSIVE
================================== */
@media(max-width:991px) {
    .info-block-title {
        padding: 24px 25px;
    }

    .info-block ul {
        padding: 25px;
    }
}

@media(max-width:767px) {
    .info-block {
        border-radius: var(--radius);
    }

    .info-block-title {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }

    .info-block ul {
        padding: 22px 20px;
    }

    .info-block ul li {
        padding-left: 28px;
        font-size: 15px;
        line-height: 1.7;
    }
}

@media(max-width:575px) {
    .info-block-title i {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .info-block-title h3 {
        font-size: 22px;
    }
}

.info-block-content {
    padding: 30px 35px;
}

.info-block-content p {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.9;
}

.info-block-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-block-content ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.info-block-content ul li:last-child {
    margin-bottom: 0;
}

.info-block-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 175, 195, .12);
}

/*==================================
MISSION & VISION
==================================*/
.mission-vision-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.purpose-card {
    position: relative;
    background: #fff;
    padding: 45px;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.purpose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .4s;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.purpose-card:hover::before {
    transform: scaleX(1);
}

.purpose-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.purpose-icon i {
    color: var(--primary);
    font-size: 34px;
}

.purpose-card:hover .purpose-icon {
    background: var(--primary);
}

.purpose-card:hover .purpose-icon i {
    color: #fff;
}

.purpose-card h3 {
    margin-bottom: 20px;
}

.purpose-card p {
    margin-bottom: 30px;
    line-height: 1.9;
}

.purpose-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.purpose-card ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
}

.purpose-card ul li:last-child {
    margin-bottom: 0;
}

.purpose-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@media(max-width:991px) {
    .purpose-card {
        padding: 35px;
    }
}

@media(max-width:767px) {
    .purpose-card {
        padding: 30px 25px;
        border-radius: var(--radius);
    }

    .purpose-icon {
        width: 70px;
        height: 70px;
    }

    .purpose-icon i {
        font-size: 28px;
    }
}

@media(max-width:575px) {
    .purpose-card {
        padding: 25px 20px;
    }
}

/*  */
/* ==================================
CONTENT SECTION
================================== */
.content-section {
    position: relative;
    overflow: hidden;
    /* background: var(--light-bg); */
}

/* Background Shapes */
.content-section::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        rgba(20, 175, 195, .1);
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background:
        rgba(20, 175, 195, .1);
}

.content-editor {
    position: relative;
    z-index: 2;
}

/* Heading */
.content-editor h2 {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Content */
.content-editor p {
    margin-bottom: 20px;
}

.content-editor h3 {
    position: relative;
    padding-left: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.content-editor h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 30px;
    background: var(--primary);
    transform: translateY(-50%);
    border-radius: 20px;
}

.content-highlight {
    position: relative;
    margin: 50px 0;
    padding: 40px 40px 40px 80px;
    background:
        linear-gradient(135deg,
            rgba(20, 175, 195, .08),
            rgba(20, 175, 195, .02));
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
}

.highlight-icon {
    position: absolute;
    left: 25px;
    top: 30px;
    color: var(--primary);
    font-size: 28px;
}

.content-collapse {
    max-height: 250px;
    overflow: hidden;
    transition: .6s ease;
}

.content-collapse.active {
    max-height: 3000px;
}

.content-toggle {
    margin-top: 30px;
    background: none;
    border: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.content-toggle i {
    transition: .3s;
}

.content-toggle.active i {
    transform: rotate(180deg);
}

/*==================================
INFRASTRUCTURE SECTION
==================================*/
.infra-section {
    background: var(--white);
    overflow: hidden;
}

/*=========================
Block
=========================*/
.infra-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 35px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid rgba(20, 175, 195, .10);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.infra-block:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/*=========================
Icon
=========================*/
.infra-icon {
    width: 85px;
    height: 85px;
    min-width: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 175, 195, .08);
    border: 2px solid rgba(20, 175, 195, .15);
    color: var(--primary);
    font-size: 34px;
    transition: var(--transition);
}

.infra-block:hover .infra-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(8deg);
}

/*=========================
Content
=========================*/
.infra-content {
    flex: 1;
}

.infra-content h3 {
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 30px;
}

.infra-content p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 18px;
}

.infra-content p:last-child {
    margin-bottom: 0;
}

/*==================================
Equipment Box
==================================*/
.equipment-box {
    padding: 40px;
    margin: 40px 0;
    background: linear-gradient(135deg,
            rgba(20, 175, 195, .05),
            rgba(20, 175, 195, .02));
    border: 1px solid rgba(20, 175, 195, .12);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.equipment-box::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(20, 175, 195, .06);
}

.equipment-box h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.equipment-box h3 i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
}

.equipment-box>p {
    margin-bottom: 30px;
    color: var(--text);
    line-height: 1.8;
}

/*==================================
Equipment Item
==================================*/
.equipment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding: 18px 22px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(20, 175, 195, .10);
    transition: var(--transition);
}

.equipment-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.equipment-item i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

/*==================================
Responsive
==================================*/
@media(max-width:991px) {
    .infra-block {
        padding: 30px;
    }

    .equipment-box {
        padding: 30px;
    }
}

@media(max-width:767px) {
    .infra-block {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .infra-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 28px;
    }

    .infra-content h3 {
        font-size: 24px;
    }

    .equipment-box {
        padding: 25px;
        margin: 30px 0;
    }

    .equipment-box h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media(max-width:575px) {
    .equipment-item {
        padding: 16px;
        font-size: 15px;
    }

    .equipment-box h3 {
        font-size: 22px;
    }
}