/* common */
.page-header {
    background-size: cover;
    background-position: center;
}

/* Image & Overlay */
.image-container {
    overflow: hidden;
    /* border-radius: 30px; */
}

.image-container img {
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}

/* Animation */
.animate-zoom-in {
    animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .order-lg-2 {
        order: 1;
    }
    .order-lg-1 {
        order: 2;
    }
}
.container .text-center span{
    color: var(--bs-secondary);
}

.our-founders {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 0;
}

.founder-profile-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
    padding: 40px;
}

.founder-image img {
    width: 500px;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}

.founder-details {
    flex: 1;
}

.founder-name {
    font-size: 3rem;
    color: #212529;
    margin-bottom: 20px;
}

.title {
    font-size: 1.8rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.description {
    font-size: 1.4rem;
    line-height: 2;
    color: #495057;
    margin-bottom: 40px;
}

.quote {
    font-style: italic;
    font-size: 1.6rem;
    color: #17a2b8;
    border-left: 6px solid #17a2b8;
    padding-left: 30px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .founder-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .founder-image img {
        width: 100%;
        max-width: 500px;
    }

    .founder-name {
        font-size: 2.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.2rem;
    }

    .quote {
        font-size: 1.3rem;
    }
}
.our-developers {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 0;
}

.developer-profile-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #fff;
    padding: 40px;
}

.developer-image img {
    width: 500px;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}

.developer-details {
    flex: 1;
}

.developer-name {
    font-size: 3rem;
    color: #212529;
    margin-bottom: 20px;
}

.title {
    font-size: 1.8rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.description {
    font-size: 1.4rem;
    line-height: 2;
    color: #495057;
    margin-bottom: 40px;
}

.quote {
    font-style: italic;
    font-size: 1.6rem;
    color: #17a2b8;
    border-left: 6px solid #17a2b8;
    padding-left: 30px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .developer-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .developer-image img {
        width: 100%;
        max-width: 500px;
    }

    .developer-name {
        font-size: 2.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1.2rem;
    }

    .quote {
        font-size: 1.3rem;
    }
}
/* about us */

    .how-it-started {
        background: linear-gradient(135deg, #ffffff, #f8f9fa);
    }

    .how-it-started h2 {
        text-transform: uppercase;
        letter-spacing: 2px;
        border-left: 5px solid #6c757d;
        padding-left: 15px;
    }

    .animate-fade-in {
        animation: fadeInUp 1.2s ease-in-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* common */
.offerings-dropdown {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.offerings-dropdown .row {
    display: flex;
    justify-content: space-between;
}

.offerings-dropdown .col-md-4 {
    padding: 10px;
}

.offerings-dropdown h6 {
    font-weight: bold;
    margin-bottom: 15px;
}

.offerings-dropdown .dropdown-item {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: normal; /* Ensure text wraps within the container */
    flex-wrap: wrap; /* Allow text to wrap to the next line */
}

.offerings-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}
.backcolor{
    background: #eae0cc;
    border-radius: 10px;
    margin-bottom: 10px;
}
.offerings-dropdown .dropdown-item img {
    /* width: 50px;
    height: 50px; */
    margin-right: 15px;
    max-width: none;
    height: 40px;
    border-radius: 4px;
}
.offerings-dropdown small {
    display: block;
    margin-top: 5px;
    color: #6c757d; /* Optional: Make the small text lighter */
    overflow-wrap: break-word; /* Ensure text breaks appropriately */
    word-wrap: break-word; /* Support older browsers */
}
.offer_list{
    min-width: 820px;
}

/* nav model */

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
    text-align: center;
    font-size: 0.8rem;
    
}

.modal-body input {
    margin-bottom: 10px;
}

.modal-body button {
    background-color: #ff5a5f;
    border: none;
    font-size: 1rem;
}

.modal-title {
    font-weight: 700;
}
/* nav model */

/*  first section*/
.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(25% - 20px);
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    
    box-shadow: 0 15px 20px rgba(0, 0, 0, .05), 0 0 15px 10px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
    transition: 0.5s all;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-description {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

.card-link {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    display: block;
    margin-top: auto;
    text-decoration: none;
}

.card:hover i {
    color: var(--bs-primary); 
    background-color: #ffe1a7;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color:white;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
   transition: 0.8s all;
   
}

/* Large screens (1024px and up) */
@media (max-width: 1200px) {
    .card {
        width: calc(33.33% - 20px);
    }
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .card {
        width: calc(50% - 20px);
    }
}

/* Small screens (mobile phones) */
@media (max-width: 576px) {
    .card {
        width: 100%;
    }
}
/* Ensure the image container is positioned relative */
.image-container {
    position: relative;
}

/* Style the consultation button */
.book-consultation-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:var(--bs-secondary);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

/* Show the button on hover */
.image-container:hover .book-consultation-btn {
    opacity: 1;
    visibility: visible;
}

/* Add some hover effect to the image */
.image-container img {
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}
/* Responsive layout adjustments */
@media (max-width: 992px) {
    .carousel-inner .row {
        flex-wrap: wrap;
    }
    .carousel-item .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 5px;
    }
    .book-consultation-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .carousel-item .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .image-container img {
        width: 100%;
        height: auto;
        margin:2px 2px;
    }
    .book-consultation-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}
/*  first section*/

/*  modular page */

/* How it Started Section */

/* Page Header */
.page-header {
    text-align: center;
    padding: 50px 0;
    background-color: #333;
    color: white;
}

.page-header h1 {
    font-size: 2.5em;
    margin: 0;
}

.page-header p {
    font-size: 1.2em;
    margin-top: 10px;
}

.how-it-started {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.how-it-started h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.how-it-started p {
    font-size: 1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Our Founders Section */
.our-founders {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.our-founders h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.founder-profiles {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    max-width: 494px;
}

.profile-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #eee;
}

.profile-card h3 {
    font-size: 1.5em;
    margin: 15px 0 5px;
}

.profile-card .title {
    font-weight: 600;
    color: #777;
}

.profile-card p {
    font-size: 0.9em;
    margin: 10px 15px;
}

.profile-card blockquote {
    font-style: italic;
    color: #555;
    margin: 10px 15px 20px;
}

/* Our Beloved Developers Section */
.our-developers {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.our-developers h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.developer-profiles {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-card .fun-fact {
    margin-top: 15px;
    color: #555;
    font-size: 0.9em;
}

.profile-card .fun-fact i {
    color: #ffd700;
}

/*  modular page */


/* modular detail  page */

.modular-header {
    margin-top: 142px !important;
}

.left_style{
    border-left: 6px solid seagreen;
    padding: 10px;
   
}
.sidebar {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
    border-radius: 10px;

}
.sidebar h4 {
    margin-bottom: 20px;
}
.form-control, .btn {
    margin-bottom: 15px;
}

/*  modular page */




























/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner End ***/


/*** 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: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
    font-weight: bold;
}

.navbar {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.navbar_2{
    height: 60px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}
/* .navbar_2 .navbar-nav .nav-link:hover,
.navbar_2 .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary);
} */


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
  
}

.dropdown .dropdown-menu a:hover {
    /* background: var(--bs-secondary); */
    color: var(--bs-secondary);
    background-color: none;    
}
.dropdown-item:hover{background-color: none;
}
.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }
   
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 50px !important;
    }
    .offer_list {
        min-width: 100px;
        max-height: 300px; /* Set the maximum height */
        overflow-y: auto;  /* Enable vertical scrolling */
    }
    .hero-header h1{
    font-size: calc(1.525rem + 2vw);
    margin-bottom: 2rem !important;

}

.hero-header .py-3{
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.hero-header .px-4{
    padding: 8px!important;
}
.hero-header .btn{
    right: 6% !important;
}
.carousel-control-prev {
    margin-left: 10px;
}
.carousel-control-next {
    margin-right: 10px;
}
.carousel-control-next, .carousel-control-prev {
    width: 30px;
    height: 30px;
    border-radius: 30px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
}
.featurs .container{
padding-top: 0px !important;
padding-bottom: 0px !important;
}

.featurs{
    padding-top: 0px !important;
}

.display-4 {
    font-size: calc(1.475rem + 0.9vw);
}

}

/* Prevent body from scrolling when the dropdown is open */
.dropdown-menu.show {
    overflow-y: auto;
}

body.modal-open {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);
    
}
/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px; 
    height: 130px; 
    top: -50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important; 
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}
/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/* Responsive Design */
@media (max-width: 991px) {
    .counter {
        padding: 20px;
    }
    .counter i {
        font-size: 50px;
    }
    .counter h4 {
        font-size: 16px;
    }
    .counter h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .counter {
        padding: 15px;
    }
    .counter i {
        font-size: 40px;
    }
    .counter h4 {
        font-size: 14px;
    }
    .counter h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .counter {
        padding: 10px;
    }
    .counter i {
        font-size: 35px;
    }
    .counter h4 {
        font-size: 12px;
    }
    .counter h1 {
        font-size: 24px;
    }
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial .testimonial-item {
        padding: 2rem;
    }

    .testimonial .testimonial-item img {
        width: 70px;
        height: 70px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .testimonial .testimonial-item {
        padding: 1.5rem;
    }

    .testimonial .testimonial-item p {
        font-size: 0.9rem;
    }

    .testimonial .testimonial-item img {
        width: 60px;
        height: 60px;
    }

    .testimonial .owl-nav {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial .testimonial-item {
        padding: 1rem;
    }

    .testimonial .testimonial-item p {
        /* font-size: 0.85rem; */
    }

    .testimonial .testimonial-item img {
        width: 50px;
        height: 50px;
    }

    .testimonial .owl-nav {
        margin-top: 10px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        font-size: 1rem;
        padding: 5px 8px;
        margin: 8px 0px;
    }
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/

