@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", sans-serif;
}

:root {
    --theme-primary: #200136;
    --theme-second: #401a03;
    --theme-third: #ec3c10;
    --theme-fourth: #584266;
    --theme-white: #fff;
    --theme-grey: #aaa;
    --theme-black: #000;
}

html {
    scroll-behavior: smooth;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900;
}

p {
    font-size: 17px;
}

/* button css */
.custom-btn {
    width: 130px;
    height: 45px;
    color: #fff;
    border-radius: 50px;
    /* padding: 10px 25px; */
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    text-align: center;
    overflow: hidden;
}

.theme_btn {
    background: var(--theme-fourth);
    border: none;
    z-index: 1;
}

.theme_btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 5px;
    background-color: var(--theme-third);
    /* background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%); */
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
}

.theme_btn:hover {
    color: #000;
}

.theme_btn:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.theme_btn:active {
    top: 2px;
}

/* Keyframes css animation */

/* header css */
.theme_header {
    box-shadow: 0px 1px 1px rgba(209, 209, 209, 0.25);
    position: relative;
    z-index: 99;
}

.top_bar {
    background-color: var(--theme-primary);
}

.search_input input {
    border: none;
    background: transparent;
    padding-left: 10px;
}

.search_input input::placeholder {
    color: var(--theme-primary);
}

.search_input input:focus,
.search_input input:active {
    border: none;
    outline: none;
}

.search_input {
    border-radius: 50px;
    /* border: 1px solid var(--theme-white); */
    overflow: hidden;
    background-color: var(--theme-white);
    box-shadow: inset 4px 4px 8px #bebebe, -2px -2px 5px #cba3e7a6;
}

.searc_icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: var(--theme-fourth);
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--theme-white);
    transition: .3s ease-in-out;

    /* border: 1px solid var(--theme-primary); */
}

.searc_icon i {
    font-size: 16px;
    color: var(--theme-white);
}

.searc_icon:hover i {
    color: var(--theme-third);
    scale: .95;
    transition: .3s ease-in-out;
}

a.login_btn {
    color: var(--theme-white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    transition: .3s ease-in-out;
    position: relative;
}

a.login_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 1px;
    height: 100%;
    background-color: var(--theme-white);
}

a.login_btn i {
    color: var(--theme-third);
    transition: .3s ease-in-out
}

a.login_btn:hover i {
    scale: .9;
    transition: .3s ease-in-out
}

.top_icon img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(96%) saturate(2638%) hue-rotate(1deg) brightness(99%) contrast(89%);
}

.topbar_left a:hover .top_icon img {
    scale: .8;
    transition: .3s ease-in-out
}

.topbar_left a h6 {
    color: var(--theme-white);
}

.header_book_btn .custom-btn {
    width: 200px;
    font-size: 15px;
    border-radius: 50px;
    overflow: hidden;
}

.navbar {
    background-color: #200136;
    border-top: 1px solid var(--theme-fourth);
}

.navbar-brand h2 {
    background: linear-gradient(90deg,
            rgba(255, 153, 51, 1) 0%,
            /* Saffron */
            rgba(255, 255, 255, 1) 50%,
            /* White */
            rgba(19, 136, 8, 1) 100%
            /* Green */
        );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-size: 34px;
    font-weight: 900;
}

@keyframes shine {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

.navbar-expand-lg .navbar-nav .nav-link,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    color: var(--theme-white);
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease-in-out;
    position: relative;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    background-color: var(--theme-primary);
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item.active {
    color: var(--theme-third);
    transition: .3s ease-in-out;
}

/* Horo Banner */
#hero_banner {
    background-color: var(--theme-primary);
}

.slider-container {
    display: flex;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

/* Left side: 3D cards */
.l-realise-slider-card-block {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
}

.card-block-wrap {
    position: relative;
    width: 80%;
    /* height: 350px; */
    aspect-ratio: 1/.7;
    transform-style: preserve-3d;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all .6s;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: none;
}

.card.a {
    transform: translate3d(70px, -110px, -50px);
    opacity: .6;
}

.card.b {
    transform: translate3d(130px, 65px, -60px);
    opacity: .2;
}

.card.c {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.btn-wrap {
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.btn-wrap .dot_btn {
    width: 25px;
    /* height: 12px; */
    aspect-ratio: 1/1;
    border-radius: 50px;
    background: #aaa;
    opacity: 0.5;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    color: var(--theme-white);
}

.btn-wrap .dot_btn.active {
    background: var(--theme-third);
    opacity: 1;
    transform: scale(1.2);
}

/* Right side: text */
.text-slider {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    backdrop-filter: blur(5px);
}

.text-content {
    max-width: 95%;
    transition: opacity .6s;
}

.text-content h1 {
    /* font-size: 2rem; */
    margin-bottom: 15px;
    color: var(--theme-third);
}

.text-content p {
    /* font-size: 1.1rem; */
    line-height: 1.6;
    color: var(--theme-white);
}

.hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.text-slider .custom-btn {
    width: 200px;
    border-radius: 50px;
    white-space: nowrap;
}

/* footer section */
#footer {
    background-color: var(--theme-primary);
}

.footer_lower {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.footer-social-icon ul {
    /* background-color: var(--theme-fourth); */
}

.footer-social-icon ul li a i {
    font-size: 32px;
    color: var(--theme-third);
    transition: all .3s ease-in-out;
}

.footer-social-icon ul li a i:hover {
    color: var(--theme-white);
    scale: .9;
}

.footer_lower .lower_part ul li a {
    color: var(--theme-white);
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: all .3s ease-in-out;

}

.footer_lower .lower_part ul li a::after {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 0;
    left: -20px;
    /* transform: translateY(-50%); */
    width: 0;
    height: 2px;
    background: var(--theme-white);
    transition: width 0.3s;
    font-size: 14px;
    font-weight: 900;
    color: var(--theme-third);
    transition: all .3s ease-in-out;
}

.footer_lower .lower_part ul li a:hover::after {
    scale: 1.2;
}

.footer_lower .lower_part ul li a:hover {
    color: var(--theme-grey);
}

/* trsuted by */
.trusted_by__card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.trusted_by__card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(100, 100, 111, 0.3) 0px 12px 30px 0px;
    border: 1px solid var(--theme-third);
}

.trusted_by__card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0 50px;
    /* background-blend-mode: color-burn; */
}

.section__heading a.custom-btn {
    width: 200px;
    border-radius: 50px;
    white-space: nowrap;
}

/* why us section */
#why_us {
    background-color: var(--theme-primary);
}

.why_us__card {
    box-shadow: rgba(97, 97, 107, 0.781) 0px 4px 12px 0px;
    border-radius: 15px;
    transition: all .6s ease-in-out;
    cursor: pointer;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why_us__card:hover,
.why_us__card.active {
    box-shadow: rgba(206, 206, 209, 0.788) 0px 5px 18px 0px;
}

.why_us__card__icon {
    width: 70px;
    height: 70px;
    background-color: var(--theme-third);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--theme-white);
    margin: auto;
}

.why_us__card__icon i {
    font-size: 40px;
    font-weight: 900;
}

.card__color {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: var(--theme-third);
    z-index: -1;
    border-radius: 50%;
    transition: all .6s ease-in-out;
}

.why_us__card:hover .card__color,
.why_us__card.active .card__color {
    top: -20%;
    left: 0;
    transform: translate(0, 0);
    width: 200%;
    height: 200%;
    border-radius: 50px;
}

.why_us__card__content {
    transition: all .6s ease-in-out;
}

.why_us__card .why_us__card__content {
    color: var(--theme-white);
}

.why_us__card__content h3 {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__heading h2 {
    color: var(--theme-third);
}

/* client testimonial */
#client_testimonials .testimonial {
    margin: 0 10px;
}

#client_testimonials .testimonial .testimonial-content {
    margin: 20px 0 50px 0;
    position: relative;
}

#client_testimonials .testimonial .testimonial-content:after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 20px solid var(--theme-third);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}

#client_testimonials .testimonial .description {
    padding: 25px 35px;
    margin: 0;
    background: var(--theme-third);
    border-radius: 15px;
    color: #fff;
    position: relative;
}

#client_testimonials .testimonial .description:before,
#client_testimonials .testimonial .description:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 8px;
    text-align: center;
    background: var(--theme-third);
    position: absolute;
}

#client_testimonials .testimonial .description:before {
    content: "\f10d";
    top: -18px;
    left: 25px;
}

#client_testimonials .testimonial .description:after {
    content: "\f10e";
    bottom: -18px;
    right: 25px;
}

#client_testimonials .testimonial .testimonial-profile {
    display: table;
    padding: 15px;
    border: 1px solid var(--theme-third);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    background-color: var(--theme-primary);
}

#client_testimonials .testimonial .pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--theme-third);
    float: left;
    overflow: hidden;
}

#client_testimonials .testimonial .title {
    display: inline-block;
    margin: 0 0 0 30px;
    /* font-size: 19px; */
    font-weight: bold;
    color: var(--theme-third);
    position: relative;
    top: 22px;
}

#client_testimonials .testimonial .title:before {
    content: "";
    width: 1px;
    height: 70px;
    background: var(--theme-third);
    position: absolute;
    top: -8px;
    left: -15px;
}

#client_testimonials .testimonial .post {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
}

#client_testimonials .owl-theme .owl-controls {
    margin-top: 30px;
}

#client_testimonials .owl-theme .owl-controls .owl-page span {
    background: transparent;
    border: 1px solid var(--theme-third);
    opacity: 1;
}

#client_testimonials .owl-theme .owl-controls .owl-page.active span {
    background: var(--theme-third);
    border: 1px solid var(--theme-third);
}

#client_testimonials .section__heading {
    background-color: var(--theme-primary);
    border-radius: 15px;
    padding: 25px 15px;
}

/* process step */
#process_slide {
    background-color: var(--theme-primary);
}

.process-step {
    padding: 30px;
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
    z-index: 1;
    opacity: .8;
}

.process-step::after {
    content: "\f04e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 24px;

    position: absolute;
    bottom: 5%;
    right: 5%;
    color: var(--theme-fourth);
    z-index: -1;
    display: none;
    transition: 0.5s ease-in-out;
}

.process-step.active::after {
    display: block;
    transition: 0.5s ease-in-out;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--theme-third);
    z-index: -1;
    transform: translateX(-100%);
    /* start hidden */
}

/* Active → slide in left → right */
.process-step.active::before {
    animation: slideIn 0.8s forwards;
}

/* Deactivating → continue slide out left → right */
.process-step.deactivating::before {
    animation: slideOut 0.8s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.process-step.active {
    color: #fff;
    scale: 1.1;
    opacity: 1;
}

@media (max-width: 768px) {
    .process-step::before {
        transform: translateY(-100%);
    }

    .process-step.active::before {
        animation: slideInY 0.8s forwards;
    }

    .process-step.deactivating::before {
        animation: slideOutY 0.8s forwards;
    }

    @keyframes slideInY {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    @keyframes slideOutY {
        from {
            transform: translateY(0);
        }

        to {
            transform: translateY(100%);
        }
    }
}

.process-step .pro_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--theme-third);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: var(--theme-second);
}

.process-step .pro_icon i {
    color: var(--theme-white);
    font-size: 36px;
}

.process-step h3 {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-step p {
    height: 80px;
}

/* accessibility */
.accessibility_img {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.accessibility_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* trust count */
#trust_count {
    background-color: var(--theme-primary);
}

#trust_count .custom-btn {
    width: 300px;
}

/* blogs section */
.blog_card {
    padding: 0 1.7rem;
    /* width: 50%; */
}

.blog_card .wrapper {
    background-color: transparent;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 1.7rem 0;
}

.blog_card .data {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(236, 60, 16, 0) 10%, rgba(236, 60, 16, 0.2) 50%, rgba(236, 60, 16, .6) 100%);
    transform: translateY(calc(70px + 1em));
    transition: transform 0.3s;
}

.blog_card .data .content {
    padding: 1em;
    position: relative;
    z-index: 1;
}

.blog_card .author {
    font-size: 14px;
}

.blog_card .title {
    margin-top: 10px;
}

.blog_card .text {
    height: 70px;
    margin: 0;
}

/* ===== Example 2 styles ===== */
/* .example-2 .wrapper {
    background: url(https://tvseriescritic.files.wordpress.com/2016/10/stranger-things-bicycle-lights-children.jpg) center / cover no-repeat;
} */
.wrappwer_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.wrappwer_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.65) 80%);
}

.wrappwer_image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.example-2 .wrapper:hover .menu-content span {
    transform: translate(-50%, -10px);
    opacity: 1;
}


.example-2 .data {
    color: var(--theme-white);
    transform: translateY(calc(90px + 3em));
}

.example-2 .title {
    color: var(--theme-white);
    margin-bottom: 20px;
}

.blog_card:hover .data,
.blog_card.active .data {
    transform: translateY(0);
}

/* footer bottom */
.footer_bottom {
    background-color: var(--theme-fourth);
}

.footer_bottom p {
    cursor: pointer;
}

.footer_bottom p a {
    color: var(--theme-third);
    font-weight: 700;
}

.footer_bottom p:hover a {
    color: var(--theme-white);
    text-decoration: underline !important;
}

/* breadcrumb */
#bread_crumbs {
    background-color: var(--theme-primary);
}

.crumb_wrap h2 {
    color: var(--theme-third);
}

#bread_crumbs .btn__wrap .custom-btn {
    width: 180px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* PAGE SERVICES */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#accessibility.challanges ul li {
    list-style: disc;
}

#client_testimonials.service_page_testi .section__heading {
    background-color: var(--theme-white);
}

#accessibility.understanding {
    background-color: var(--theme-primary);
}

#all_services .service_details_wrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 18px 0px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}

#all_services .service_details_wrap.active,
#all_services .service_details_wrap:hover {
    box-shadow: rgba(252, 149, 81, 0.2) 0px 7px 29px 0px;
    background-color: var(--theme-third);
    color: var(--theme-white);
}

#all_services .service_details_wrap h3 {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

#all_services .service_details_wrap p {
    height: 150px;
}

.resources_card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 18px 0px;
    border-radius: 15px;
    transition: all .3s ease-in-out;
    padding: 15px 20px;
}

.resources_card:hover {
    box-shadow: rgba(252, 149, 81, 0.2) 0px 10px 29px 0px;
    transform: translateY(-10px);
}

.resources_card figure {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.resources_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.resources_card:hover figure img {
    transform: scale(1.1);
}

.resources_card h4 {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center
}

.resources_card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden
}

/* details page */
.aside_more_services {
    position: sticky;
    top: 10px;
}

.aside_more_services ul li {
    background-color: var(--theme-main-color);
}

.aside_more_services ul li a figure {
    /* flex: 1; */
    width: 100px;
}

.aside_more_services .more_services {
    background-color: var(--theme-primary);
    margin-bottom: 20px;
    padding: 15px 20px;
    color: var(--theme-third);
    border-radius: 15px 15px 0 0;
}

.aside_more_services ul li a figure img {
    width: 100%;
    display: block;
}

.aside_more_services ul li a .text_con {
    flex: 1;
}

.aside_more_services ul li a .text_con h5 {
    height: 60px;
    color: var(--theme-black);
    display: flex;
    align-items: center;
}

.aside_more_services a .text_con p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.aside_more_services ul li {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.aside_more_services ul li:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    scale: .98;
    background: var(--theme-third) !important;
    color: var(--theme-white) !important;
}



.aside_more_services ul li:hover a .text_con h5 {
    color: var(--theme-white);

}

.aside_more_services ul li a .text_con p {
    color: var(--theme-black);

}

.aside_more_services ul li:hover a .text_con p {
    color: var(--theme-white);
    font-weight: 400;
}

.page_services_detailscontent ul,
.page_services_detailscontent ul li {
    list-style: disc !important;
}

.page_services_detailscontent ul li::marker {
    color: var(--theme-third);
    font-size: 30px;
}


.page_service_image {
    width: 100%;
    height: 450px;
}

.page_service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}