body,
html {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    scroll-behavior: smooth;
    color: var(--text-color);
    overflow-x: hidden;
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
}

.loading-logo {
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite;
    display: block;
    margin: 20% auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

:root {
    --primary-green: #5966ec;
    --dark-gray: #2c2c2c;
    --light-gray: #f8f9fa;
    --text-color: #333;
    --gradient-start: #e0ffe0;
    --gradient-end: #c0ffe0;
}

body {
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-gray);
}

.navbar-custom {
    padding: 1.2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-gray);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1.2rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.send-message-btn {
    background-color: var(--primary-green);
    color: var(--dark-gray);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(144, 238, 144, 0.4);
}

.send-message-btn:hover {
    background-color: #7dce7d;
    color: var(--dark-gray);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    display: flex;
    min-height: calc(100vh - 80px);
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4rem;
    padding-right: 2rem;
    z-index: 2;
}

.hero-left-content h1 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.hero-left-content p.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.btn-custom-dark {
    background-color: var(--dark-gray);
    color: white;
    border-radius: 10px;
    padding: 1.2rem 2.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: fit-content;
}

.btn-custom-dark:hover {
    background-color: #444;
    transform: translateY(-3px);
    color: white;
}

.btn-custom-dark i {
    font-size: 1.3rem;
}

.hero-right-image-container {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
    border-radius: 25px;
    margin-right: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-right-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}

@media (max-width: 1200px) {
    .hero-left-content h1 {
        font-size: 3.5rem;
    }

    .hero-left-content p.lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
        padding-top: 1rem;
    }

    .navbar-custom {
        background-color: white !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
        padding: 0.8rem 0 !important;
    }

    .hero-left-content {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .hero-left-content h1 {
        font-size: 2.5rem;
    }

    .hero-left-content p.lead {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn-custom-dark {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-right-image-container {
        height: 50vh;
        margin-right: 0;
        margin-left: 0;
        border-radius: 0;
    }

    .hero-right-image-container img {
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-left-content h1 {
        font-size: 2rem;
    }
}

.info-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.info-section .section-header {
    text-align: left;
    margin-bottom: 4rem;
}

.info-section .section-header .sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.info-section .section-header h2 {
    font-weight: 700;
    font-size: 3.2rem;
    color: var(--dark-gray);
    line-height: 1.2;
    margin: 0 auto;
}

.info-section .section-header p.lead {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.process-card {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.process-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2f7, #c1e4f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.process-card .icon-wrapper i {
    font-size: 2.5rem;
    color: #3498db;
}

.process-card .card-illustration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    opacity: 0.2;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.process-card.step-1 .card-illustration {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a8caff'%3E%3Cpath d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5-5-5 5h3v4h4v-4h3z'/%3E%3C/svg%3E");
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

.process-card.step-2 .card-illustration {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a8caff'%3E%3Cpath d='M19.4 12.9l-1.3 1.3-1.4-1.4c-.4-.4-1-.4-1.4 0l-1.4 1.4L13 13c-.4-.4-1-.4-1.4 0l-1.4 1.4-1.3-1.3C8 12.6 8 12 8 12s0-.6.3-.9L9.4 9.4 8 8l1.4-1.4c.4-.4 1-.4 1.4 0l1.4 1.4L13 8c.4-.4 1-.4 1.4 0l1.4 1.4 1.3-1.3c.3-.3.9-.3 1.2 0 .3.3.3.9 0 1.2z'/%3E%3C/svg%3E");
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

.process-card.step-3 .card-illustration {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a8caff'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z'/%3E%3C/svg%3E");
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

.process-card h4 {
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.process-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.process-card .btn-outline-dark {
    border-color: var(--dark-gray);
    color: var(--dark-gray);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.process-card .btn-outline-dark:hover {
    background-color: var(--dark-gray);
    color: white;
}

@media (max-width: 1200px) {
    .info-section .section-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 991.98px) {
    .info-section {
        padding: 3rem 0;
    }

    .info-section .section-header {
        margin-bottom: 3rem;
    }

    .info-section .section-header h2 {
        font-size: 2.2rem;
    }

    .process-card {
        margin-bottom: 2rem;
    }

}

@media (max-width: 767.98px) {
    .info-section .section-header h2 {
        font-size: 1.8rem;
    }

    .process-card {
        padding: 1.5rem;
    }

    .process-card h4 {
        font-size: 1.4rem;
    }

    .navbar-custom.scrolled .navbar-toggler-icon {
        filter: none;
    }
}

.section-padding {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

.navbar-custom.scrolled {
    background-color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    padding: 0.8rem 0 !important;
}

.about-us-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #2e4a8c 0%, #1a233a 70%);
    color: white;
    border-radius: 30px;
    position: relative;
}

.about-us-section .container {
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
}

.about-us-section .row {
    align-items: center;
}

.about-us-section .col-lg-6:first-child {
    padding-left: 0;
}

.about-us-section .col-lg-6 img {
    width: 100%;
    height: 100%;
}

.about-us-section .col-lg-6:last-child {
    padding: 5rem;
}

.about-us-section .sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}

.about-us-section .section-title {
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.3;
    color: white;
}

.about-us-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.about-us-section .btn-outline-light {
    border-color: #fff;
    color: #fff;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-us-section .btn-outline-light:hover {
    background-color: #fff;
    color: var(--dark-gray);
}

.about-us-section .about-us-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .about-us-section {
        padding: 4rem 0;
    }

    .about-us-section .container {
        border-radius: 15px;
    }

    .about-us-section .row {
        flex-direction: column;
    }

    .about-us-section .col-lg-6:first-child,
    .about-us-section .col-lg-6:last-child {
        padding: 0;
        width: 100%;
    }

    .about-us-section .col-lg-6 img {
        border-radius: 15px 15px 0 0;
        height: auto;
        max-height: 300px;
    }

    .about-us-section .col-lg-6:last-child {
        border-radius: 0 0 15px 15px;
        padding: 2.5rem;
        text-align: center;
    }

    .about-us-section .section-title {
        font-size: 2rem;
    }

    .about-us-section .about-us-icon {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .about-us-section .btn-outline-light {
        width: 100%;
    }
}

.new-how-it-works-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}


.new-how-it-works-section .section-header {
    margin-bottom: 4.5rem;
}

.new-how-it-works-section .section-header .sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.new-how-it-works-section .section-header .section-title {
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-gray);
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.new-how-it-works-section .section-header p.lead {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    background-color: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgb(214 238 246);
    line-height: 1;
    z-index: 0;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e0f2f7, #c1e4f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(144, 238, 144, 0.3);
    z-index: 1;
}

.step-icon-wrapper i {
    font-size: 3.2rem;
    color: var(--primary-green);
}

.step-title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    z-index: 1;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    z-index: 1;
    flex-grow: 1;
}

@media (max-width: 991.98px) {
    .new-how-it-works-section .section-header .section-title {
        font-size: 2.2rem;
    }

    .step-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
        top: 15px;
        left: 15px;
    }

    .step-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .step-icon-wrapper i {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .new-how-it-works-section {
        padding: 4rem 0;
    }

    .new-how-it-works-section .section-header .section-title {
        font-size: 1.8rem;
    }
}

.faq-section {
    padding: 6rem 0;
    background-color: white;
}

.faq-section .section-header {
    margin-bottom: 4.5rem;
}

.faq-section .section-header .sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.faq-section .section-header .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--dark-gray);
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.faq-section .section-header p.lead {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-header .accordion-button {
    background-color: white;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1.5rem 2rem;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background-color: rgb(89 102 236 / 20%);
    border-bottom: 1px solid var(--primary-green);
    border-radius: 10px 10px 0 0;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
}

.accordion-button::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    background-image: none !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.accordion-button:not(.collapsed)::after {
    content: "\f077";
    transform: rotate(0deg);
    color: var(--primary-green);
}


@media (max-width: 991.98px) {
    .faq-section .section-header .section-title {
        font-size: 2.2rem;
    }

    .accordion-header .accordion-button {
        font-size: 1.05rem;
        padding: 1.2rem 1.5rem;
    }

    .accordion-body {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-section .section-header .section-title {
        font-size: 1.8rem;
    }
}

.contact-form-section {
    padding: 6rem 6rem;
    background-color: var(--light-gray);
    overflow: hidden;
}

.contact-form-section .contact-container-fluid {
    background-color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.contact-form-section .row {
    align-items: stretch;
}

.contact-form-section .col-lg-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-section .contact-image-col {
    background-image: url('../images/contact.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 0 1.5rem 1.5rem 0;
}

.contact-form-section .contact-form-card {
    background-color: white;
    border-radius: 20px;
    padding: 0;
    width: 100%;
    max-width: 550px;
}

.contact-form-section .sub-heading {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.contact-form-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-gray);
    line-height: 1.2;
}

.contact-form-section .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.2rem 1.25rem;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
    background-color: white;
}

.contact-form-section textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.btn-submit-message {
    background-color: #6a5acd;
    color: white;
    border-radius: 10px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.4);
}

.btn-submit-message:hover {
    background-color: #5b4bab;
    transform: translateY(-3px);
    color: white;
}

.btn-submit-message i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

@media (max-width: 991.98px) {
    .contact-form-section .contact-container-fluid {
        border-radius: 15px;
    }

    .contact-form-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .contact-form-section .col-lg-6 {
        padding: 0 !important;
        width: 100%;
    }

    .contact-form-section .contact-image-col {
        min-height: 300px;
        border-radius: 1.5rem 1.5rem 0 0;
        background-position: center center;
    }

    .contact-form-section .contact-form-card {
        padding: 2.5rem;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .contact-form-section .section-title {
        font-size: 2rem;
    }

    .contact-form-section .form-control {
        padding: 1rem 1rem;
        font-size: 0.95rem;
    }

    .contact-form-section .row.mb-3>div {
        margin-bottom: 1rem;
    }

    .contact-form-section .row.mb-3>div:last-child {
        margin-bottom: 0;
    }

    .btn-submit-message {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-form-section .section-title {
        font-size: 1.8rem;
    }

    .contact-form-section .contact-form-card {
        padding: 1.8rem;
    }
}


.footer-section {
    background: radial-gradient(circle at center, #2e4a8c 0%, #1a233a 70%);
    color: white;
    padding: 5rem 0;
    font-family: 'Inter', sans-serif;
}

.footer-section .footer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-section .footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-section .footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.footer-section .footer-links li,
.footer-section .footer-contact-info li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .footer-links a,
.footer-section .footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .footer-links a:hover,
.footer-section .footer-contact-info a:hover {
    color: var(--primary-green);
}

.footer-section .footer-contact-info i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--primary-green);
}

.footer-section .social-icons .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-section .social-icons .social-icon:hover {
    background-color: var(--primary-green);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.footer-section .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .footer-section {
        padding: 4rem 0;
        text-align: center;
    }

    .footer-section .footer-brand {
        margin: 0 auto 1rem auto;
    }

    .footer-section .footer-description {
        max-width: 100%;
        margin: 0 auto 1.5rem auto;
    }

    .footer-section .social-icons {
        margin-bottom: 2rem;
    }

    .footer-section .footer-heading {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-section .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section .footer-links,
    .footer-section .footer-contact-info {
        padding-left: 0;
    }

    .footer-section .footer-links li,
    .footer-section .footer-contact-info li {
        text-align: center;
    }

    .footer-section .footer-contact-info i {
        margin-right: 5px;
    }
}

.breadcrumb-section {
    background-color: #f0f2f5;
    padding: 4rem 0 2rem;
    text-align: center;
}

.breadcrumb-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-green);
}

.breadcrumb-item.active {
    color: var(--primary-green);
    font-weight: 500;
}

.about-page-section {
    padding: 5rem 0;
    background-color: white;
}

.about-page-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-page-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.about-page-section .section-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page-section .section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.about-page-section .section-card i {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-page-section .section-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 3rem 0 1.5rem;
        margin-top: 60px;
    }

    .breadcrumb-section h1 {
        font-size: 2.5rem;
    }

    .about-page-section {
        padding: 3rem 0;
    }

    .about-page-section h2 {
        font-size: 2rem;
    }

    .about-page-section .section-card {
        margin-bottom: 2rem;
    }

    .about-page-section .section-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section h1 {
        font-size: 2rem;
    }

    .about-page-section h2 {
        font-size: 1.8rem;
    }

    .about-page-section p {
        font-size: 1rem;
    }
}