
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


.pt-6 {
    padding-top: 60px;
}

.ps-6 {
    padding-left: 60px;
}

.pe-6 {
    padding-right: 60px;
}

.pb-6 {
    padding-bottom: 60px;
}


.sub-title {
    font-family: "Edu TAS Beginner", cursive;
    font-weight: 700;
    font-size: 22px;
}


.container-fluid {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

@media (min-width: 992px) {
    .container-fluid::before {
        content: "";
        position: absolute;
        width: 15%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--bs-dark);
        z-index: -1;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        border: none;
    }

    .container-fluid .header-content,
    .container-fluid .about-header,
    .container-fluid .education-header,
    .container-fluid .experience-header,
    .container-fluid .skills-header,
    .container-fluid .service-header,
    .container-fluid .portfolio-header,
    .container-fluid .blog-header,
    .container-fluid .testimonial-header,
    .container-fluid .contact-header {
        padding: 25px;
    }

    .container-fluid .header-img,
    .container-fluid .about-content,
    .container-fluid .education-content,
    .container-fluid .experience-content,
    .container-fluid .skills-content,
    .container-fluid .service-content,
    .container-fluid .portfolio-content,
    .container-fluid .blog-content,
    .container-fluid .testimonial-content,
    .container-fluid .contact-content {
        padding-left: 0;
        padding-top: 25px;
    }
}


/*** Navbar Start ***/
.nav-section {
    position: relative;
}

.nav-section .navbar {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 50%;
    right: calc(40px - 100%);
    transform: translateY(-50%);
    z-index: 99;
}

.navbar.navbar-light {
    background: transparent;
    width: 100%;
}

.navbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .navbar-nav .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    
}

.navbar-nav .nav-link span {
    width: 40px; 
    height: 40px;
    margin-right: 8px;
    border-right: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--bs-body);
    transition: 0.5s;
}

.nav-section .navbar .navbar-nav .nav-item {
    height: 40px;
    padding: 0;
    margin-bottom: 3px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: var(--bs-white);
    color: var(--bs-body);
    font-size: 14px;
    font-weight: 700;
    transition: 0.5s;
}

.nav-section .navbar .navbar-nav .nav-item:hover {
    margin-right: calc(100% + 40px);
    color: var(--bs-primary);
}
/*** Navbar End ***/


/*** About Start ***/
.about-content .about-img {
    position: relative;
    overflow: hidden;
}

.about-content .about-img .sosial-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    padding: 50px;
    background: rgba(0, 0, 0, .04);
    transition: 0.5s;
}

.about-content .about-img:hover .sosial-icon {
    top: 0;
}
/*** About End ***/


/*** Education Start ***/
.education-content .education-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, .03);
    transition: 0.5s;
    z-index: 1;
}

.education-content .education-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.education-content .education-item::after {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    top: 50%;
    left: 0;
    padding: 0;
    transform: translateY(-50%);
    border: 100px solid;
    border-color: var(--bs-light) transparent var(--bs-light) var(--bs-light);
    z-index: -1;
}

.education-content .education-item::before {
    content: "";
    position: absolute;
    width: 25%;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 100px solid;
    border-color: var(--bs-light) var(--bs-light) var(--bs-light) transparent;
    z-index: -1;
}
/*** Education End ***/


/*** Experience start ***/
.experience-content .experience-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, .03);
    transition: 0.5s;
    z-index: 1;
}

.experience-content .experience-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.experience-content .experience-item::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 50%;
    left: 0;
    padding: 0;
    transform: translateY(-50%);
    border: 100px solid;
    border-color: var(--bs-light) transparent var(--bs-light) var(--bs-light);
    z-index: -1;

}

.experience-content .experience-item::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 100px solid;
    border-color: var(--bs-light) var(--bs-light) var(--bs-light) transparent;
    z-index: -1;
}
/*** Experience End ***/


/*** Skills Start ***/
.skills-content .skills-item {
    position: relative;
}

.skills-content .skills-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50% 50% 50% 50% / 28% 28% 72% 72%;
    background: var(--bs-light);
    z-index: -1;
}
/*** Skills End ***/


/*** Service start ***/
.service-content .service-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .03);
    transition: 0.5s;
}

.service-content .service-item:hover i {
    color: var(--bs-primary);

}

.service-content .service-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}
/*** service End ***/


/*** Portfolio Start ***/
.portfolio-content .portfolio-item .portfolio-img {
    position: relative;
    width: 100%;
    height: 150px;
}

.portfolio-item .portfolio-img .portfolio-img-inner {
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-item .portfolio-img .portfolio-img-inner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.portfolio-content .portfolio-item .view-img {
    display: flex;
    align-items: center;
    justify-content: end;
}

.portfolio-content .portfolio-item .portfolio-img .portfolio-img-inner {
    visibility: hidden;
    transition: 0.5s;
}

.portfolio-content .portfolio-item:hover .portfolio-img .portfolio-img-inner {
    visibility: visible;
    transform: rotate(-6deg);
}
/*** Portfolio End ***/


/*** Blog Start ***/
.blog-content .blog-btn a {
    color: var(--bs-primary);
}
.blog-content .blog-btn a:hover {
    color: var(--bs-dark);
}
/*** Blog End ***/


/*** Testimonial Start ***/
.testimonial-carousel {
    position: relative;
    transition: 0.5s;
}

.testimonial-carousel .testimonial-item {
    padding: 60px;
}

.testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-white);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px 60px 60px;
    transition: 0.5s;
}

@media (max-width: 576px) {
    .testimonial-carousel .owl-dots {
        justify-content: start;
    }
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border: 3px solid var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    width: 70px;
    height: 70px;
    border: 3px solid var(--bs-primary);
}
/*** Testimonial End ***/

/*** footer Start ***/
@media (max-width: 991px) {
    .container-fluid .footer-content {
        padding-left: 0;
    }
}
/*** footer End ***/







        /* FAQ Section Styling */




        .faq-header .sub-title {
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            color: #fff !important;
        }

        .faq-header .display-6 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #fff !important;
        }

        .faq-content {
            background: #fff;
        }

        /* FAQ Accordion Styling */
        .faq-accordion {
            margin-top: 1rem;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question h5 {
            color: #343a40;
            font-weight: 600;
            margin: 0;
            font-size: 1.1rem;
            flex: 1;
            margin-right: 1rem;
        }

        .faq-question i {
            color: #fd7e14;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-question {
            border-bottom-color: #e9ecef;
            background: #f8f9fa;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fff;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: #6c757d;
            margin: 0;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* FAQ CTA Styling */
        .faq-cta {
            background: linear-gradient(135deg, #fd7e14 0%, #fd7e14 100%);
            border-radius: 12px;
            padding: 2rem;
            color: #fff;
        }

        .faq-cta h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .faq-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-size: 1.05rem;
        }

        .faq-cta .btn {
            background: #fff;
            color: #fd7e14;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-cta .btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .faq-header {
                padding: 3rem 2rem !important;
            }

            .faq-content {
                padding: 3rem 2rem !important;
            }

            .faq-header .display-6 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .faq-header {
                padding: 2rem 1.5rem !important;
            }

            .faq-content {
                padding: 2rem 1.5rem !important;
            }

            .faq-header .display-6 {
                font-size: 1.75rem;
            }

            .faq-question {
                padding: 1.25rem;
            }

            .faq-question h5 {
                font-size: 1rem;
            }

            .faq-cta {
                padding: 1.5rem;
            }

            .faq-cta .row {
                text-align: center;
            }

            .faq-cta .col-md-4 {
                margin-top: 1rem;
            }
        }

        @media (max-width: 576px) {
            .faq-header .display-6 {
                font-size: 1.5rem;
            }

            .faq-question {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .faq-question i {
                align-self: flex-end;
            }
        }

        /* Animation Classes */
        .wow {
            visibility: hidden;
        }

        .fadeInUp {
            animation-name: fadeInUp;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Utility Classes */
        .pt-6 {
            padding-top: 4rem !important;
        }

        .pb-6 {
            padding-bottom: 4rem !important;
        }

        .ps-6 {
            padding-left: 4rem !important;
        }

        .pe-6 {
            padding-right: 4rem !important;
        }

        @media (max-width: 768px) {
            .pt-6 {
                padding-top: 2rem !important;
            }

            .pb-6 {
                padding-bottom: 2rem !important;
            }

            .ps-6 {
                padding-left: 2rem !important;
            }

            .pe-6 {
                padding-right: 2rem !important;
            }
        }



        /* Service Areas Section Styling */


        .areas-header .sub-title {
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            color: #fff !important;
        }

        .areas-header .display-6 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: #fff !important;
        }

        .areas-content {
            background: #fff;
        }

        /* Area Card Styling */
        .area-card {
            background: #fff;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 1.25rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px;
        }

        .area-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
            border-color: #fd7e14;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .area-name {
            color: #343a40;
            font-weight: 600;
            font-size: 0.95rem;
            line-height: 1.3;
            margin: 0;
            transition: color 0.3s ease;
        }

        .area-card:hover .area-name {
            color: #fd7e14;
        }

        /* Areas Footer Styling */
        .areas-footer {
            background: linear-gradient(135deg, #fd7e14 0%, #fd7e14 100%);
            border-radius: 12px;
            padding: 2rem;
            color: #fff;
        }

        .areas-footer h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .areas-footer p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-size: 1.05rem;
        }

        .areas-footer .btn {
            background: #fff;
            color: #fd7e14;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .areas-footer .btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .areas-header {
                padding: 3rem 2rem !important;
            }

            .areas-content {
                padding: 3rem 2rem !important;
            }

            .areas-header .display-6 {
                font-size: 2rem;
            }

            .area-card {
                padding: 1rem;
                min-height: 70px;
            }

            .area-name {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .areas-header {
                padding: 2rem 1.5rem !important;
            }

            .areas-content {
                padding: 2rem 1.5rem !important;
            }

            .areas-header .display-6 {
                font-size: 1.75rem;
            }

            .area-card {
                padding: 0.875rem;
                min-height: 65px;
            }

            .area-name {
                font-size: 0.85rem;
            }

            .areas-footer {
                padding: 1.5rem;
            }

            .areas-footer .row {
                text-align: center;
            }

            .areas-footer .col-md-4 {
                margin-top: 1rem;
            }
        }

        @media (max-width: 576px) {
            .areas-header .display-6 {
                font-size: 1.5rem;
            }

            .area-card {
                min-height: 60px;
            }

            .area-name {
                font-size: 0.8rem;
            }

            .areas-footer h4 {
                font-size: 1.25rem;
            }

            .areas-footer p {
                font-size: 1rem;
            }
        }

        /* Animation Classes */
        .wow {
            visibility: hidden;
        }

        .fadeInUp {
            animation-name: fadeInUp;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Utility Classes */
        .pt-6 {
            padding-top: 4rem !important;
        }

        .pb-6 {
            padding-bottom: 4rem !important;
        }

        .ps-6 {
            padding-left: 4rem !important;
        }

        .pe-6 {
            padding-right: 4rem !important;
        }

        @media (max-width: 768px) {
            .pt-6 {
                padding-top: 2rem !important;
            }

            .pb-6 {
                padding-bottom: 2rem !important;
            }

            .ps-6 {
                padding-left: 2rem !important;
            }

            .pe-6 {
                padding-right: 2rem !important;
            }
        }

        /* Grid System Enhancement */
        .row.g-4 {
            margin: -0.5rem;
        }

        .row.g-4>[class*="col-"] {
            padding: 0.5rem;
        }
