/* 
    =============================================
    TEMPLATE: Folioz - Professional Portfolio landing page Template 
    AUTHOR: Patrick Muriungi
    AUTHOR URL: https://codewithpatrick.online
    VERSION: 1.0
    DATE: NOV 13 2025
    DESCRIPTION: Clean, modern portfolio template with responsive design
    =============================================
*/


/*  SECTIONS
    1. - ========= NAVBAR
    2. - ========= SERVICES
    3. - ========= LATEST WORK
    4. - ========= YOUTUBE
    4. - ========= TEAM
    5. - ========= TESTIMONIALS
    6. - ========= FAQ
    7. - ========= CONTACT
*/


/* ===============================================================
        NAVBAR SECTION
=====================================================================*/

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    color: #7D56FD;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: #7D56FD;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: #7D56FD;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-link:hover {
    background-color: #7D56FD;
    color: white;
    padding: 2px;
    transform: translateY(6px);
    transition: all 0.3s;
}

.nav-link.active {
    padding: 2px 5px;
    background-color: #7D56FD;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}


/* Mobile Menu Styles */

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        margin: 1.5rem 0;
    }
    .nav-link {
        justify-content: center;
        padding: 1rem;
    }
}

.intro-section {
    background-color: #081828;
    padding: 8rem 0;
    width: 100%;
    height: 100%;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}


/* =======================================================================
        SERVICES SECTION 
===========================================================================*/

.services-section {
    background-color: #fff;
    padding: 5rem 0;
}

.services {
    transition-duration: 1s;
    transition-property: all;
    width: 100%;
    padding: 1rem;
    margin-bottom: 3.75rem;
    background: #fff !important;
    animation: pats-animated 2s;
}

.services .icon {
    line-height: 1.3;
    position: relative;
    margin-top: -3.75rem;
    width: 5rem;
    height: 5rem;
    background-color: #7D56FD;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1rem;
    transition-duration: 1s;
    transition-property: all;
    transition-duration: 1s;
    transition-property: all;
}

.services .icon span {
    font-size: 2rem;
    color: #fff;
}

.services .service-body {
    animation-name: moveInUp;
    animation-duration: 10s;
}

.services .service-body a {
    text-decoration: none;
    color: #343a40;
}

.services .service-body a:hover {
    text-decoration: underline;
}

.services .service-body i {
    color: #343a40;
}

.services:hover {
    background: #7D56FD !important;
    color: #fff !important;
}

.services:hover .icon {
    background: #fff;
    margin-left: 1.25rem;
}

.services:hover .icon span {
    color: #7D56FD;
}

.services:hover h3 {
    color: #fff;
}

.services:hover a {
    color: #fff;
}

.services:hover .service-body {
    color: #fff;
}


/* =======================================================================
        OUR PORTFOLIO SECTION 
===========================================================================*/

.portfolio-section {
    padding: 4rem 0;
}

.portfolio-section button {
    text-transform: capitalize;
}

.portfolio {
    position: relative;
    height: 23rem;
    background-color: #dee2e6;
    overflow-y: hidden;
    margin-bottom: 1.5rem;
}

.portfolio img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.portfolio :is(h3, h4, h5) {
    display: block;
    background-color: #7D56FD;
    color: #fff;
    margin: 0;
    padding: 1rem;
    text-align: center;
}

.portfolio a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.portfolio a:hover~.portfolio__overlay,
.portfolio a:focus~.portfolio__overlay {
    transform: translate3d(0, 0, 0);
}

.portfolio__overlay {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 20%;
    transition: transform 300ms;
    transform: translate3d(0, calc(100% - 8.5rem), 0);
}

.portfolio__body {
    background-color: #7D56FD;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.portfolio__body p {
    margin: 0;
    text-transform: capitalize;
}

.section-with-video {
    position: relative;
    background-color: #081828;
    height: 100%;
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding-top: 5rem;
    padding-bottom: 10rem;
}

.section-ntop {
    position: relative;
    height: 100%;
    margin-top: -20rem;
    margin-bottom: 2rem;
}

.section-ntop :is(h2, h3) {
    color: #7D56FD;
}

.section-ntop .video-box {
    position: relative;
    background-color: #fff;
    border-radius: 0.375rem;
    border: 1rem solid rgba(255, 255, 255, 0.2);
}

.section-ntop .video-box p {
    color: #fff;
}

.section-ntop .video-box img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.section-ntop .video-box img:hover {
    transform: scale(1.02);
    transition-duration: 1s;
    transition-property: all;
}

.section-ntop .video-box .video-button {
    color: #fff;
}

.section-ntop .video-box .video-button svg {
    width: 6rem;
    height: 6rem;
    color: #dc3545;
}

.section-ntop .video-box .border-animation {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-width: 0.41rem;
    border-style: solid;
    border-radius: 100%;
    border-color: #fff;
    animation: pulse-border 3s linear 0s infinite;
    animation-play-state: running;
    opacity: 0;
    z-index: 9;
}

.section-ntop .video-box .border-2 {
    animation-delay: 1s;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    20% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes zoom {
    0% {
        transform: translate(2);
    }
    100% {
        transform: translate(1);
    }
}

.topic-intro {
    text-transform: capitalize;
}

.topic-intro :is(h5, h6) {
    color: #7D56FD;
    font-weight: 600;
}


/* =======================================================================
        OUR TEAM SECTION
===========================================================================*/

.team-section {
    position: relative;
    padding: 5rem 0;
    background-color: #fff;
}

.team-section .team {
    position: relative;
    height: 28rem;
    background-color: #ced4da;
    overflow-y: hidden;
    box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .team-section .team {
        height: 23rem;
    }
}

.team-section .team img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.team-section .team :is(h3, h4, h5) {
    margin: 0;
    display: block;
    background-color: #7D56FD;
    color: #fff;
    padding: 1rem;
}

.team-section .team a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-section .team a:hover~.team__overlay,
.team-section .team a:focus~.team__overlay {
    transform: translate3d(0, 0, 0);
}

.team-section .team__overlay {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 60%;
    transition: transform 300ms;
    background-color: #7D56FD;
    transform: translate3d(0, calc(100% - 6.5rem), 0);
}

.team-section .team__body {
    padding: 1rem;
}

.team-section .team__body p {
    background-color: #fff;
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
}


/* =======================================================================
       TESTIMONIALS SECTION
===========================================================================*/

.testimonials {
    position: relative;
    padding: 5rem 0;
    background-color: #e9ecef;
}

.testimonials .t-card {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.625rem;
    color: #212529;
    height: auto;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials .t-card .name {
    margin-bottom: 0;
    text-transform: capitalize;
}

.testimonials .t-card .name h5 {
    font-weight: 500;
}

.testimonials .t-card .name p {
    font-size: 0.8rem;
}

.testimonials .t-card .client-img {
    position: relative;
}

.testimonials .t-card .client-img img {
    max-width: 100%;
    width: 60px;
    height: 60px;
    border: 2px solid #7D56FD;
}

.testimonials .quote-icon {
    color: white;
}

.testimonials .quote-icon svg {
    width: 10rem;
    height: 10rem;
}

.carousel-indicators {
    margin-bottom: -2rem !important;
}


/* =======================================================================
        FAQ SECTION
===========================================================================*/

.faq-section {
    position: relative;
    padding: 5rem 0;
    background-color: #fff;
}

.get-started {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.get-started .headline {
    padding-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .get-started .headline {
        text-align: start;
    }
}


/* =======================================================================
       FOOTER SECTION
===========================================================================*/

.footer {
    background-color: #212529;
    color: #fff;
    position: relative;
}

.footer i {
    font-size: 1rem;
}

.footer .contact-box {
    position: relative;
    text-decoration: none;
}

.footer .contact-box .icon {
    padding: 0 0.3rem;
    justify-content: baseline;
}

.footer .contact-box .icon i {
    font-size: 1.5rem;
}

.footer .contact-box .info {
    padding: 0.5rem 1rem;
    align-items: center;
}

.footer .contact-box .info .title {
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    font-size: 1rem;
}

.footer .contact-box .info .sub-title {
    font-size: 0.8rem;
    text-transform: capitalize;
}

.footer .footer-center {
    padding: 1rem;
}

.footer .footer-center a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-center a:hover {
    color: #7D56FD;
}

.footer .footer-sm a {
    color: #7D56FD;
}

.footer .footer-sm a i {
    font-size: 1.5rem;
    padding-left: 1rem;
}

.footer .footer-sm a i:hover {
    color: #fff;
}

.f-list {
    display: block;
    list-style-type: none;
    position: relative;
}

.f-list>li {
    color: #fff;
    margin-bottom: 0.5rem;
}

.f-list>li a {
    color: #e9ecef;
    transition: all 0.3s ease;
}

.f-list>li a:hover {
    padding-bottom: 4rem;
    color: #7D56FD;
    transform: skewY(10deg) skewX(5deg) scale(1.1);
    transition: all 0.3s;
}

.footer-bottom {
    background-color: #212529;
}

.footer-bottom__copyright {
    font-size: 1rem;
    color: #ced4da;
}

.footer-bottom__copyright a {
    color: #7D56FD;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-bottom__copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom__legalstuff {
    padding-top: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom__legalstuff {
        text-align: end;
    }
}

.footer-bottom__legalstuff a {
    color: #7D56FD;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-bottom__legalstuff a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Back to top button */

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7D56FD;
    color: white;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: #7D56FD;
    transform: translateY(-3px);
}


/*# sourceMappingURL=style.css.map */