* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "IBM Plex Serif";
}

ul {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

:root {
    --main-color: #059212;
    --secandry-color: #34c759;
    --bg-color: #191A23;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --main-padding-right: 100px;
    --main-padding-left: 100px;
}

.btn-success {
    background-color: var(--main-color);
    border-color: var(--main-color);
    transition: all 0.3s ease;
}

.btn-outline-success {
    color: var(--main-color);
    border-color: var(--main-color);
}

.btn-success:hover,
.btn-outline-success:hover {
    background-color: #047a10;
    border-color: #047a10;
}

@media (min-width: 992px) {

    .btn-outline-success:hover,
    .btn-success:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(5, 146, 18, 0.4);
    }
}

.text {
    padding-left: 50px;
    padding-bottom: 30px;
    gap: 40px;
}

@media (max-width:992px) {
    .text {
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        gap: 1rem;
        padding: 50px 0 !important;
    }
}

.text h3 {
    width: 145px;
    height: 40px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 30px;
    cursor: default;
}

.text p {
    width: 100%;
    max-width: 646px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (max-width: 991.98px) {
    .team p {
        font-size: 18px;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 767.98px) {
    .text p {
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
    }
    .text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.c-white {
    color: white;
}

.edu {
    background-image: url("../imgs/texture-background-white-satin-222.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    position: relative;
    min-height: calc(100vh - 143px);
}



.navbar {
    animation: fadeInDown 0.8s ease-out;
}

.navbar .logo {
    width: 150px;
    height: 105px;
    object-fit: cover;
}

.navbar .nav-link {
    color: #000 !important;
    font-family: "IBM Plex Serif";
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.frame-icone {
    width: 18px;
    height: 18px;
    position: relative;
    top: 3px;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    background-color: var(--main-color);
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-menu-custom a {
    color: white !important;
    padding: 8px 16px;
    display: block;
    font-weight: 500;
}

.dropdown-menu-custom a:hover {
    background-color: #047a10;
}

.edu-box {
    background-color: rgba(247, 247, 251, 0.60);
}

.faqs-cards {
    background-color: rgba(247, 247, 251, 0.60);
    border: 1px solid #059212;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.faqs-cards h3 {
    color: #059212;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding-right: 40px;
}

.arrow-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 26px;
    right: 24px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background-color: white;
    transition: background-color 0.3s ease;
}

.arrow-wrapper.active {
    background-color: var(--main-color);
}

.arrow-wrapper.active .faq-arrow {
    transform: rotate(0deg);
    filter: brightness(0) invert(1);
}

.faq-arrow {
    width: 50%;
    height: 50%;
    transform: rotate(270deg);
    transition: all 0.3s ease;
}

.hidden-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.5s ease, 
        opacity 0.3s ease;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.hidden-answer.open {
    max-height: 500px;
    opacity: 1;
}

footer {
    background-image: url('../imgs/texture-no-radius-cropped-clean.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 45px 45px 0 0;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    footer .nav-link:hover {
        color: var(--main-color) !important;
    }
}

footer .logo-icon {
    width: 180px;
    height: 105px;
    object-fit: contain;
}

footer .label {
    background-color: #b9ff66;
    border-radius: 7px;
    padding: 5px 10px;
    display: inline-block;
    color: #000;
    font-weight: 600;
}

footer .form-input {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 14px;
    padding: 12px 16px;
    flex: 1 1 auto;
    min-width: 200px;
}

footer .form-input::placeholder {
    color: #ccc;
}

footer .btn-download {
    background-color: #b9ff66;
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 600;
    color: #000;
    border: none;
    white-space: nowrap;
}

footer .social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .social-circle.linkedin {
    background-color: white;
    color: #000;
}

footer .social-circle.linkedin:hover {
    background-color: transparent;
    color: #0a66c2;
}

footer .social-circle.facebook {
    background-color: white;
    color: #000;
}

footer .social-circle.facebook:hover {
    background-color: #1877f2;
    color: #fff;
}

footer .icon-bg {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .icon-bg img {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

footer .social-circle:hover img {
    filter: none;
}

footer .social-circle:hover .icon-bg {
    background-color: transparent;
}

footer .line-and-text-child {
    border-top: 1px solid #fff;
    width: 100%;
}

footer .positivus-all-rights,
footer .privacy-policy {
    font-size: 14px;
}

/* Animtion Section */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 992px) {
    .nav-link {
        position: relative;
        transition: color 0.3s ease;
    }
    .nav-link:hover ,
    .nav-link.active {
        color: var(--main-color) !important;
    }
    .btn-outline-success,
    .btn-success {
        transition: all 0.3s ease;
    }
    .btn-outline-success:hover,
    .btn-success:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(5, 146, 18, 0.4);
    }
}