#learning-ecosystem{
    padding: 100px 0;
}
.open-container{
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
}
.open-section-title{
    font-size: 45px;
    text-align: center;
}


.ecosystem-desc{
    max-width: 1000px;
    margin: 20px auto 60px;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.8;
}

.ecosystem-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px;
    width: 100%;
}

.ecosystem-card{
    /* background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px; */

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(15px);

    transition: .3s;

}
.ecosystem-card img{
    width: 80px !important;
    height: 80px !;
}

.ecosystem-card:hover{
    transform: translateY(-8px);
    border-color: #ffae00;
}

.ecosystem-card img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.ecosystem-card span{
    color: white;
    font-weight: 600;
}

/* 2nd section */
/* =============================== */
/* ==========================
   LEARNING ROADMAP
========================== */

.learning-roadmap{
    width: 90%;
    margin: auto;
    padding: 0;
}

/* ==========================
   TOP SECTION
========================== */

.learning-top{
    text-align: center;
    margin-bottom: 80px;
}

.learning-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;

    border: 1px solid rgba(255,174,0,0.3);
    border-radius: 50px;

    background: rgba(255,174,0,0.08);

    color: #ffae00;
    font-weight: 600;

    backdrop-filter: blur(15px);
}

.learning-badge i{
    font-size: 18px;
}

.learning-top h1{
    font-size: 55px;
    color: white;
    margin: 25px 0 20px;
    font-weight: 800;
}

.learning-top p{
    max-width: 800px;
    margin: auto;

    color: rgba(255,255,255,0.8);

    font-size: 18px;
    line-height: 1.8;
}

/* .title-line{
    width: 120px;
    height: 4px;

    margin: 35px auto 0;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #ffae00,
        #ff7b00
    );
} */

/* ==========================
   GRID
========================== */

.roadmap-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    
}

/* ==========================
   CARD
========================== */

.roadmap-card{

    padding: 25px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 30px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: 0.4s ease;
    margin-top: -10px;
}

.roadmap-card:hover{

    transform: translateY(-10px);

    border-color: rgba(255,174,0,0.5);

    box-shadow: 0 20px 40px rgba(255,174,0,0.15);
}

/* ==========================
   ICON
========================== */

.card-icon{

    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background: rgba(255,174,0,0.15);

    border: 1px solid rgba(255,174,0,0.25);
}

.card-icon i{

    font-size: 25px;

    color: #ffae00;
}
.roadmap-card:hover .card-icon i{
    color: black;
}
.roadmap-card:hover .card-icon {
    background: #ffae00;
}

/* ==========================
   CONTENT
========================== */

.card-content h3{

    color: white;

    font-size: 1.5rem;

    margin-bottom: 10px;
}

.card-content p{

    color: rgba(255,255,255,0.75);

    line-height: 1.5;

    margin-bottom: 20px;
}

.card-content ul{

    padding-left: 20px;
}

.card-content li{

    color: white;

    margin-bottom: 0px;

    line-height: 1.6;
}

.card-content li::marker{
    color: #ffae00;
}



/* 3rd section enviroment */
/* ===================== */

/* ==========================
   DEVELOPMENT ENVIRONMENT
========================== */

.dev-environment{
    width: 90%;
    margin: auto;
    padding: 120px 0;
}

/* ==========================
   TOP SECTION
========================== */

.dev-top{
    text-align: center;
    margin-bottom: 80px;
}

.dev-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;

    background: rgba(255,174,0,0.08);
    border: 1px solid rgba(255,174,0,0.25);

    border-radius: 50px;

    color: #ffae00;
    font-weight: 600;

    backdrop-filter: blur(15px);
    margin-bottom: -60px;
}

.dev-badge i{
    font-size: 18px;
}

.dev-top h1{
    font-size: 55px;
    color: #fff;
    margin: 25px 0 20px;
    font-weight: 800;
}

.dev-top p{
    max-width: 800px;
    margin: auto;

    color: rgba(255,255,255,0.8);

    font-size: 18px;
    line-height: 1.8;
}

/* ==========================
   GRID
========================== */

.dev-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* ==========================
   CARD
========================== */

.dev-card{

    padding: 20px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 30px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: 0.4s ease;
}

.dev-card:hover{

    transform: translateY(-10px);

    border-color: rgba(255,174,0,0.5);

    box-shadow: 0 20px 40px rgba(255,174,0,0.15);
}

/* ==========================
   ICON
========================== */

.dev-icon{

    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 15px;

    border-radius: 50%;

    background: rgba(255,174,0,0.15);
    border: 1px solid rgba(255,174,0,0.25);
}

.dev-icon i{

    font-size: 30px;
    color: #ffae00;
}

.dev-card:hover .dev-icon{
    background: #ffae00;
}
.dev-card:hover .dev-icon i{
    color: black;
}

/* ==========================
   TEXT
========================== */

.dev-card h3{

    color: #fff;

    font-size: 1.5rem;

    margin-bottom: 10px;
}

.dev-card p{

    color: rgba(255,255,255,0.75);

    line-height: 22px;

    margin-bottom: 20px;
}

/* ==========================
   TAG
========================== */

.dev-tag{

    display: inline-block;

    padding: 8px 16px;

    background: #ffae00;

    color: #111;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;
}

/* note  */
/* ====================== */
/* ==========================
   DEVELOPMENT PHILOSOPHY
========================== */

.philosophy{
    width: 90%;
    margin: auto;
    padding: 120px 0;
}

.philosophy-content{

    max-width: 900px;
    margin: auto;

    text-align: center;

    padding: 60px 50px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 35px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: 0.4s ease;
}

.philosophy-content:hover{

    transform: translateY(-8px);

    border-color: rgba(255,174,0,0.5);

    box-shadow: 0 20px 40px rgba(255,174,0,0.15);
}

/* ==========================
   BADGE
========================== */

.philosophy-badge{

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 24px;

    background: rgba(255,174,0,0.08);

    border: 1px solid rgba(255,174,0,0.25);

    border-radius: 50px;

    color: #ffae00;

    font-weight: 600;

    backdrop-filter: blur(15px);
}

.philosophy-badge i{
    font-size: 18px;
}

/* ==========================
   HEADING
========================== */

.philosophy-content h1{

    font-size: clamp(3rem, 6vw, 4.5rem);

    color: white;

    margin: 30px 0 25px;

    font-weight: 800;
}

/* ==========================
   PARAGRAPHS
========================== */

.philosophy-content p{

    color: rgba(255,255,255,0.8);

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 25px;
}

/* ==========================
   QUOTE
========================== */

.philosophy-content blockquote{

    margin-top: 40px;

    padding: 25px;

    border-left: 5px solid #ffae00;

    background: rgba(255,174,0,0.08);

    border-radius: 20px;

    color: #fff;

    font-size: 20px;

    font-style: italic;

    line-height: 1.8;
}









/* ==========================
   MOBILE VIEW
========================== */

@media (max-width: 768px){


    .open-section-title{
        font-size: 30px;
    }


    .ecosystem-desc{
        margin-top: 9px;
        font-size: 16px;
        line-height: 22px;
        padding: 0 5px;
    }

    .ecosystem-grid{
        margin-top: -20px !important;
    }


    .learning-roadmap{
        width: 95%;
        padding: 0px 0;
    }

    /* Top Section */

    .learning-top{
        margin-bottom: 50px;
    }

    .learning-badge{
        padding: 10px 18px;
        font-size: 14px;
    }

    .learning-badge i{
        font-size: 16px;
    }

    .learning-top h1{
        font-size: 35px;
        line-height: 1.2;
        margin: 10px 0;
    }

    .learning-top p{
        font-size: 17px;
        line-height: 22px;
        padding: 0 5px;
    }

    .title-line{
        width: 80px;
        margin-top: 25px;
    }

    /* Grid */

    .roadmap-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Cards */

    .roadmap-card{
        padding: 5px 15px;
        border-radius: 20px;
    }

    .roadmap-card:hover{
        transform: none;
    }

    /* Icon */

    .card-icon{
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
        margin: 10px;
    }

    .card-icon i{
        font-size: 20px;
    }

    /* Content */

    .card-content h3{
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .card-content p{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .card-content ul{
        margin-top: -8px;
        padding-left: 20px;
    }

    .card-content li{
        font-size: 14px;
        line-height: 1;
        margin-bottom: 8px;
    }

}


/* ==========================
   DEVELOPMENT SETUP MOBILE
========================== */

@media (max-width: 768px){

    .dev-environment{
        width: 94%;
        padding: 80px 0;
    }

    /* Top Section */

    .dev-top{
        margin-bottom:35px;
    }

    .dev-badge{
        padding: 10px 18px;
        font-size: 14px;
    }

    .dev-badge i{
        font-size: 16px;
    }

    .dev-top h1{
        font-size: 35px;
        line-height: 1.15;
        margin: 15px 05;
    }

    .dev-top p{
        font-size: 15.5px;
        line-height: 22px;
        padding: 0 10px;
    }

    /* Grid */

    .dev-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Card */

    .dev-card{
        padding: 20px;
        border-radius: 20px;
    }

    .dev-card:hover{
        transform: none;
    }

    /* Icon */

    .dev-icon{
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .dev-icon i{
        font-size: 26px;
    }

    /* Text */

    .dev-card h3{
        font-size: 25px;
        margin-bottom: 10px;
    }

    .dev-card p{
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .dev-tag{
        font-size: 14px;
        padding: 6px 14px;
    }
    .philosophy-content{
        margin-top: -8pc;
        width: 100%;
        padding: 15px;
        background: #00000054;
    }
    .philosophy-badge{
        padding: 10px;
        font-size: 16px !important;
    }
    .philosophy-content h1{
        font-size:  30px;
    }
    .philosophy-content p{
        font-size: 17px;
        line-height: 22px;
    }
    .philosophy-content blockquote{
        font-size: 18px !important;
    }

}