/*GENERAL SETTINGS*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        Georgia,
        'Times New Roman',
        serif;

    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}


img {
    max-width: 100%;
}


a {
    transition: 0.3s;
}


/*NAVIGATION*/

.navbar {
    background: rgba(8, 31, 18, 0.92);
    padding: 18px 0;
    transition: 0.3s;
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
}


.logo-icon {
    color: #1cad3b;
    font-size: 30px;
}


.logo-text {
    white-space: nowrap;
}


.nav-link {
    color: #e4eae5 !important;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
}


.nav-link.active {
    color: #2bc34d !important;
}


.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}


/*HERO*/

.hero-section {
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}


.technology-hero {
    background-image: url("images/green-hero.jpg");
}


.activities-hero {
    background-image: url("images/green-hero.jpg");
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 35, 15, 0.85),
            rgba(0, 35, 15, 0.45),
            rgba(0, 35, 15, 0.55)
        );
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}


.hero-subtitle {
    color: #27c747;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}


.hero-content h1 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(50px, 7vw, 90px);
    line-height: 1.02;
    margin-bottom: 25px;
}


.hero-text {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.7;
    color: #f1f5f2;
    margin-bottom: 30px;
}


/*BUTTON*/

.green-button {
    background: #42bd58;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 13px 25px;
    font-family: Arial, sans-serif;
    font-weight: 700;
}


.green-button:hover {
    background: #29963c;
    color: white;
}


/*SECTION*/

.section-padding {
    padding: 100px 0;
}


.section-heading {
    max-width: 800px;
    margin: 0 auto;
}


.section-subtitle {
    color: #2cae45;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}


.section-heading h2 {
    font-family: Arial, sans-serif;
    color: #1b2a20;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}


.section-introduction {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}


#technology-introduction .section-heading {
    margin-bottom: 50px;
}


#technology-introduction .section-heading h2 {
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.2;
}


#technology-introduction .section-introduction {
    margin-bottom: 0;
    line-height: 1.8;
}


/*INFORMATION BOXES*/

.information-box {
    background: #f3f8f4;
    padding: 50px;
    border-left: 5px solid #39b951;
    height: auto;
    min-height: 280px;
    position: relative;
    overflow: visible;
}


.information-icon {
    color: #39b951;
    font-size: 42px;
    margin-bottom: 30px;
}


.information-box h3 {
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}


.information-box p {
    color: #666;
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.7;
}


/*TECHNOLOGY SECTION*/

.technology-section {
    background: #f2f7f3;
    padding: 100px 0;
}


.technology-card {
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}


.technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}


.technology-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}


.technology-card-content {
    padding: 30px;
}


.technology-icon {
    color: #39b951;
    font-size: 35px;
    margin-bottom: 15px;
}


.technology-card h3 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}


.technology-card p {
    color: #666;
    line-height: 1.7;
}


#technology-introduction {
    padding-top: 150px;
    padding-bottom: 80px;
}


/*API SECTION*/

.api-section {
    background: #ffffff;
    padding: 100px 0;
}


.api-search-box {
    max-width: 800px;
    margin: 45px auto;
}


.api-search-box .form-control {
    height: 55px;
    border: 1px solid #d7ded8;
    font-size: 16px;
    padding: 0 18px;
}


.api-search-box .form-control:focus {
    border-color: #42bd58;
    box-shadow: 0 0 0 0.2rem rgba(66,189,88,0.15);
}


.api-search-box .green-button {
    padding-left: 28px;
    padding-right: 28px;
}


.api-status {
    min-height: 35px;
    margin-bottom: 25px;
}


.api-success {
    color: #388a48;
}


.loading-message {
    color: #579461;
}


.loading-message .spinner-border {
    margin-bottom: 10px;
}


.api-error {
    color: #c74646;
}


.api-error i {
    font-size: 25px;
    margin-bottom: 10px;
}


.no-results {
    text-align: center;
    background: #f2f7f3;
    padding: 50px 20px;
}


.no-results i {
    color: #42bd58;
    font-size: 50px;
    margin-bottom: 15px;
}


/*API CARDS*/

.api-card {

    height: 100%;
    background: #ffffff;
    border: 1px solid #e4e9e5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}


.api-card:hover {
    transform: translateY(-6px);
}


.api-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.api-card-no-image {
    height: 200px;
    background: #eaf5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #42bd58;
    font-size: 50px;
}


.api-card-content {
    padding: 25px;
}


.api-label {
    color: #42bd58;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


.api-card-content h3 {
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #1d2b21;
    margin: 8px 0 15px;
}


.api-card-content p {
    color: #666;
    line-height: 1.6;
}


.api-read-more {
    display: inline-block;
    color: #319d46;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
}


.api-read-more:hover {
    color: #176d28;
}


.api-read-more i {
    margin-left: 5px;
}

/*PREVIOUS CARDS*/
.previous-activities {
    background: #ffffff;
    padding: 100px 0;
}


.activity-card {
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4e9e5;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}


.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


.activity-card img {
    width: 100%;
    height: 290px;
    object-fit: contain;
    display: block;
    background: #f3f3f3;
}


.activity-card-content {
    padding: 35px 38px 40px;
}


.activity-date {
    color: #42bd58;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


.activity-card h3 {
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: #1d2b21;
    margin-bottom: 20px;
    line-height: 1.3;
}


.activity-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

/*EVENT CARDS*/

.event-card {
    height: 100%;
    text-align: center;
    padding: 45px 30px;
    background: #f4f9f5;
    border-radius: 10px;
    transition: 0.3s;
}


.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.event-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: #42bd58;
    color: white;
    border-radius: 50%;
    font-size: 32px;
}


.event-card h3 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}


.event-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}


.event-tag {
    display: inline-block;
    padding: 6px 15px;
    background: #ddf2e1;
    color: #328842;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}


/*SOCIAL MEDIA SECTION*/

.social-section {
    background: #edf6ef;
    padding: 80px 0;
}


.social-section h2 {
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1b2a20;
    margin-bottom: 15px;
}


.social-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}


.social-share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}


.social-share-buttons a {
    margin: 0 !important;
}


/*FOOTER*/

.site-footer {
    background: #101914;
    color: #b9c8bd;
    padding-top: 70px;
}


.footer-main {
    padding-bottom: 35px;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}


.footer-logo-symbol {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18a638;
    font-size: 60px;
    border-right: 2px solid #18a638;
    padding-right: 15px;
}


.footer-logo-text {
    display: flex;
    flex-direction: column;
    color: #18a638;
    font-size: 20px;
    line-height: 1.3;
}


.footer-info p {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.5;
}


.site-footer h3 {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}


.footer-description {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.8;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-links li {
    margin-bottom: 13px;
}


.footer-links a {
    color: #b9c8bd;
    text-decoration: none;
    font-size: 18px;
}


.footer-links a:hover {
    color: #25b842;
    padding-left: 5px;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.footer-bottom p {
    margin: 0;
    color: #69766e;
    font-size: 15px;
}


/*MOBILE RESPONSIVE*/

@media (max-width: 991px) {


    .nav-link {

        margin-left: 0;

        padding:
            10px 0;

    }


    .navbar-nav {

        padding-top:
            15px;

    }


}


@media (max-width: 768px) {


    .hero-section {

        min-height:
            650px;

    }


    .hero-content h1 {

        font-size:
            52px;

    }


    .hero-text {

        font-size:
            17px;

    }


    .section-padding,
    .technology-section,
    .api-section {

        padding:
            70px 0;

    }


    .section-heading h2 {

        font-size:
            35px;

    }


    .social-section h2 {

        font-size:
            34px;

    }


    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


}


@media (max-width: 576px) {


    .hero-content h1 {

        font-size:
            43px;

    }


    .hero-subtitle {

        font-size:
            15px;

    }


    .hero-text {

        font-size:
            16px;

    }


    .api-search-box .input-group {

        flex-direction:
            column;

    }


    .api-search-box .form-control {

        border-radius:
            5px !important;

        margin-bottom:
            10px;

    }


    .api-search-box .green-button {

        border-radius:
            5px !important;

        width: 100%;

    }


    .footer-logo-symbol {

        width:
            70px;

        height:
            70px;

        font-size:
            45px;

    }


    .footer-logo-text {

        font-size:
            17px;

    }


}