/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 80px;
    background: white;
    opacity: 0; 
    transform: translateY(30px);
    animation: fadeIn 1s ease-in-out forwards;
}

/* Moving Lines */
.line {
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 50%;
    left: 30%;
    animation: moveLine 5s infinite alternate ease-in-out;
}

.line.long {
    width: 150px;
    top: 80%;
    left: 60%;
    animation: moveLine 7s infinite alternate-reverse ease-in-out;
}


/* Animated Background */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

/* Floating Circles */
.circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--on-hover);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: floatUp 6s infinite linear alternate;
}

.circle.small {
    width: 20px;
    height: 20px;
    top: 90%;
    left: 90%;
    animation: floatUp 4s infinite linear alternate-reverse;
}

/* Text Content */
.about-content {
    flex: 1;
    animation: fadeIn 0.3s ease-in-out;
}

.about-content h1 {
    font-size: 2.5rem;
    color: var(--background-color);
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.2rem;
    color: black;
    line-height: 1.6;
}

/* Image Section */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img
{
    border-radius: 50%;
    width: 400px;
    height: 400px;
    border: 5px solid var(--background-color);
    object-fit: cover;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Line Movement Animation */
@keyframes moveLine {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(50px);
    }
}

/* Floating Animation */
@keyframes floatUp {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-30px);
    }
}

/* Responsive Design */
@media (max-width: 100px)
{
    .about-section
    {
        padding: 20px 50px;
    }
    .about-image img
    {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 800px)
{
    .about-section
    {
        min-height: 50vh;
        margin-bottom: 30px;
    }
    .about-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image img
    {
        width: 200px;
        height: 200px;
    }

    .about-content p
    {
        font-size: 1rem;
        line-height: 1.2;
    }
}

/*WHO ARE WE*/
.who-are-we
{
    position: relative;
    background-position: center center;
    background-size: cover;
    min-height: auto;
}

.cta
{
    background-image:
    linear-gradient(to bottom, rgba(0,0,0,0), var(--background-color)),
    url('../img/12345.jpg');
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 80px 80px;
    min-height: auto;
    margin-top: var(--mg-top);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content
{
    z-index: 1;
    position: relative;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    margin-bottom: 30px;
}

.cta .cta-content .col_1 h2
{
    font: 600 50px roboto;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 17px;
    margin-bottom: 17px;
    color: #fff;
}

.cta .cta-content .col_1 p
{
    color: #fff;
    line-height: 24px;
}

.cta-content .cta-col .col-content .btn-holder
{
    margin-top: 40px;
}

.cta-content .cta-col .col-content .btn-holder .cta-btn
{
    margin-top: 40px;
    padding: 20px 15px;
    line-height: 21px;
    background: var(--hover-eff);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font: 700 10px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
}

.cta-content .cta-col .col-content .btn-holder .cta-btn:hover
{
    background: #fff;
    color: var(--hover-eff);
}

@media screen and (max-width:1100px)
{
    .cta
    {
        background-image:
        linear-gradient(to bottom, rgba(0,0,0,0), var(--background-color)),
        url('../img/12345.jpg');
    }   
}

@media screen and (max-width:800px)
{
    .cta-content
    {
        text-align: left;
    }
    .cta .cta-content .col_1 h2
    {
        font: 600 40px roboto;
        letter-spacing: 1px;
    }
}

@media screen and (max-width:340px)
{
    .cta-content .cta-col .col-content .btn-holder .cta-btn
    {
        text-transform: lowercase;
    }
    .cta .cta-content .col_1 h2
    {
        font: 600 30px roboto;
        letter-spacing: 1px;
    }
}


/*MISSION VISSION*/
.about
{
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}

.about h1
{
    margin-top: 30px;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--background-color);
    text-align: center;
}

.about .divide
{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.about .divide .box
{
    width: 80%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    border: 3px solid var(--background-color);
    padding: 20px 20px;
}

.about .divide .box .mv 
{
    width: 90%;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.about .divide .box h2
{
    font: 600 30px sans-serif;
    text-transform: uppercase;
    color: var(--background-color);
    margin-bottom: 10px;
    text-align: center;
}

.about .divide .box h2 span
{
    color: var(--on-hover);
}

.about .divide .box p
{
    display: flex;
    flex-direction: column;
}

.about .divide .box p:last-child
{
    margin-bottom: 10px;
}

.about .divide .box p span
{
    color: var(--on-hover);
}

.about .btn
{
    width: 150px;
    text-align: center;
    font-family: 'Oxanium', sans-serif;
    text-decoration: none;
    padding: 10px;
    background: var(--on-hover);
    color: var(--text-on-bg);
    border-radius: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 20px;
}

@media (max-width: 500px)
{
    .about .divide
    {
        margin-bottom: 30px;
    }  
}


/*CORE VALUES*/
.values
{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background-color);
}

.values h2
{
    font-size: 40px;
    color: white;
}

.values h2 span
{
    color: var(--on-hover);
}

.values .container
{
    width: 100%;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}


@media (max-width:1200px)
{
    .values .container
    {
        max-width: 1140px;
    }
}

@media (max-width:992px)
{
    .values .container
    {
        max-width: 960px;
    }
}

@media (max-width:768px)
{
    .values .container
    {
        max-width: 720px;
    }
}

@media (max-width:576px)
{
    .values .container
    {
        max-width: 540px;
    }
}

@media (max-width:450px)
{
    .values .container
    {
        max-width: 100%;
    }
}

.values .container .row
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
}

.values .container .row .box
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    border-radius: 5px;
    padding: 60px;
    box-shadow: 0px 0px 5px rgb(255 255 255 / 55%);
    margin-top: 30px;
}

.values .container .row .box .core-item
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.values .container .row .box .core-item .core-icon
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.values .container .row .box .core-item .core-icon svg
{
    object-fit: contain;
    width: 64px;
    height: 64px;
    fill: white;
    margin-right: 30px;
    transform: translateY(-20px);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.values .container .row .box:hover .core-item .core-icon svg
{
    transform: translateY(0px);
    opacity: 1;
}

.values .container .row .box .core-item .core-text
{
    display: flex;
    flex-direction: column;
}

.values .container .row .box .core-item .core-text h4
{
    font-size: 20px;
    color: var(--on-hover);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.values .container .row .box .core-item .core-text p
{
    color: white;
}

@media (max-width: 1000px)
{
    .values .container .row .box
    {
        padding: 30px;
    }
    .values .container .row .box .core-item .core-icon svg
    {
        transform: translateY(-10px);
    }
}

@media (max-width: 800px)
{
    .values .container
    {
        padding: 10px 30px;
        margin-bottom: 60px;
    }
    .values .container .row
    {
        flex-direction: column;
    }
    .values .container .row .box
    {
        width: 100%;
        min-height: 20vh;
    }
    .values h2
    {
        margin-top: 40px;
    }
}

@media (max-width:600px)
{
    .values .container .row .box .core-item
    {
        flex-direction: column;
        text-align: center;
    }
    .values .container .row .box
    {
        min-height: 30vh;
    }
    .values .container .row .box .core-item .core-icon
    {
        margin-bottom: 20px;
        width: 100%;
    }
    .values .container .row .box .core-item .core-icon svg
    {
        transform: translateY(-10px);
        margin-right: 0;
    }
    .values .container .row .box:hover .core-item .core-icon svg
    {
        transform: translateY(0);
    }
    .values .container .row .box .core-item .core-text
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}


/*ACTIVITIES*/
.activities
{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activities h2
{
    margin-top: 40px;
    font-size: 40px;
    color: var(--background-color);
}

.activities h2 span
{
    color: var(--on-hover);
}

.activities-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.activities-container .act-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.activities-container .act-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.activities-container .act-card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: var(--background-color);
}

.activities-container .act-card p {
    font-size: 15px;
    color: black;
}

.activities-container .act-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: var(--background-color);
    font-weight: bold;
}

.activities-container .act-card:hover a
{
    color: var(--on-hover);
}

.activities-container .act-card:hover {
    transform: translateY(-10px);
}

@media (max-width: 760px)
{
    .activities .activities-container
    {
        flex-direction: column;
        align-items: center;
    }
    .activities-container .act-card
    {
        width: 90%;
    }
}

@media (max-width: 500px)
{
    .activities h2
    {
        font-size: 35px;
    }
    .activities-container .act-card h3
    {
        font-size: 15px;
    }
    .activities-container .act-card p
    {
        font-size: 13px;
    }
    .activities-container .act-card a
    {
        font-size: 15px;
    }
}