﻿/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #68c4c5;
    /* --primary-color: #0c5073; */
    --secondary-color: #369cc6;
    --text-color: #3b5450;
    /* --accent-color: #262941; */
    /* --accent-color: #0c5073; */
    --accent-color: #69c5c4;
    /* --accent-secondary-color: #e6392a; */
    /* --accent-secondary-color: #2eacba; */
    --accent-secondary-color: #69c5c4;
    --white-color: #ffffff;
    --divider-color: #3b545024;
    --dark-divider-color: #ffffff3d;
    --error-color: rgb(230, 87, 87);
    --black-color: #000000;
    --default-font: "Plus Jakarta Sans", sans-serif;
    --heading-text: #222222;
    --primary-color: #68c4c5;
    --secondary-color: #369cc6;
    /* Derived colors from your primary palette */
    --primary-light: #7dd3d4;
    --primary-dark: #4fa5a6;
    --secondary-light: #4db3d9;
    --secondary-dark: #2a7ba3;
    /* Background gradients using your colors */
    --bg-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    --card-gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --card-gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    --card-gradient-mixed: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e1;
}

:root {
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #475569;
    --border-light: #f1f5f9;
    --bg-light: #f8fafc;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    /* background-color: var(--secondary-color); */
    color: var(--text-color);
}

p {
    line-height: 1.7em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--heading-text);
}

figure {
    margin: 0;
}

.pr-80 {
    padding-right: 80px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        outline: 0;
    }

    a:focus {
        text-decoration: none;
        outline: 0;
    }

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.text-accent-secondary {
    color: var(--accent-secondary-color);
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.home-banner {
    overflow: hidden;
}

.easyq-hero-section {
    background-image: url('../imgs/home/bg.jpeg');
    background-size: cover;
    position: relative;
    background-color: #45a8c5;
}

.desk-hero-image {
    position: absolute !important;
    width: 1000px !important;
    bottom: -220px !important;
    height: 1000px !important;
    right: 0px !important;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

    .reveal img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transform-origin: left;
        transform-origin: left;
    }

.row {
    margin-right: -15px;
    margin-left: -15px;
}

    .row > * {
        padding-right: 15px;
        padding-left: 15px;
    }

    .row.no-gutters {
        margin-right: 0px;
        margin-left: 0px;
    }

        .row.no-gutters > * {
            padding-right: 0px;
            padding-left: 0px;
        }

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 18px;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

    .btn-default::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
        z-index: -1;
    }

    .btn-default:hover::before,
    .btn-default:focus::before {
        opacity: 1;
    }

    .btn-default:hover,
    .btn-default:focus {
        color: var(--white-color);
    }

    /* Variants */
    .btn-default.btn-highlighted {
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        color: var(--white-color);
    }

    .btn-default.btn-light {
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        color: var(--black-color);
    }

.btn-highlighted:hover {
    color: var(--white-color);
    text-decoration: none;
    background-position: right center;
}

.btn-dark-blue {
    /* background-color: var(--primary-color); */
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 50%, var(--secondary-color) 100%);
    color: var(--white-color);
}

    .btn-dark-blue:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

.cb-cursor:before {
    background: var(--accent-secondary-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-secondary-color) transparent var(--accent-secondary-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 50px;
}

    .section-row .section-title {
        margin-bottom: 0;
    }

        .section-row .section-title.dark-section {
            width: 100%;
            max-width: 992px;
            margin: 0 auto;
            text-align: center;
        }

.section-btn {
    text-align: end;
}

.section-title-content p {
    margin: 0;
}

.section-title {
    margin-bottom: 40px;
}

    .section-title h3 {
        position: relative;
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.3em;
        text-transform: capitalize;
        color: var(--text-color);
        padding-left: 30px;
        margin-bottom: 10px;
    }

        .section-title h3::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background: url("../imgs/icon-sub-heading.svg");
            background-repeat: no-repeat;
            background-position: left center;
            background-size: cover;
            width: 20px;
            height: 20px;
        }

    .section-title h1 {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .section-title h2 {
        font-size: 46px;
        font-weight: 700;
        margin-bottom: 0;
    }

        .section-title h1 span,
        .section-title h2 span {
            color: var(--primary-color);
        }

    .section-title p {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .section-title.dark-section h3,
    .section-title.dark-section h2,
    .section-title.dark-section h1,
    .section-title.dark-section p,
    .section-title-content.dark-section p {
        color: var(--white-color);
    }

        .section-title.dark-section h3::before {
            background: url("../images/icon-sub-heading-accent.svg");
        }

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

    .help-block.with-errors ul li {
        color: var(--error-color);
        font-weight: 500;
        font-size: 14px;
    }

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
    background: var(--accent-secondary-color);
    padding: 15px 0;
}

.topbar-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .topbar-contact-info ul li a {
        color: var(--accent-color);
    }

        .topbar-contact-info ul li a i {
            font-size: 16px;
            color: var(--accent-color);
            margin-right: 8px;
            transition: all 0.3s ease-in-out;
        }

.topbar-social-links {
    text-align: right;
}

    .topbar-social-links ul {
        list-style: none;
        line-height: 1em;
        padding: 0;
        margin: 0;
    }

        .topbar-social-links ul li {
            display: inline-block;
            margin-right: 15px;
            padding-right: 15px;
            border-right: 1px solid var(--accent-color);
            transition: all 0.3s ease-in-out;
        }

            .topbar-social-links ul li:last-child {
                margin-right: 0;
                padding-right: 0;
                border-right: none;
            }

            .topbar-social-links ul li a {
                font-weight: 500;
                color: var(--accent-color);
                text-transform: capitalize;
                transition: all 0.3s ease-in-out;
            }

                .topbar-social-links ul li a i {
                    font-size: 18px;
                    color: inherit;
                    margin-right: 8px;
                }

header.main-header {
    position: relative;
    /* background-color: var(--accent-color); */
    background-color: transparent;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

    header.main-header .header-sticky {
        position: fixed;
        top: 0;
        z-index: 100;
        left: 0;
        width: 100%;
        background: var(--white-color);
    }

.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .header-sticky.sticky .main-menu ul li a {
        color: var(--black-color);
    }

    .header-sticky.sticky .navbar .navbar-brand img {
        filter: unset;
    }

    .header-sticky.sticky .main-menu li.nav-item.submenu ul {
        background: var(--white-color);
    }

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background-color: var(--accent-color);
    border-bottom: 1px solid var(--divider-color);
}

.navbar {
    padding: 0 0;
    align-items: center;
}

.navbar-brand {
    padding: 10px 0;
    margin: 0;
}

.navbar .navbar-brand img {
    height: 80px;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

    .main-menu .nav-menu-wrapper > ul {
        align-items: center;
        display: inline-flex;
    }

.main-menu ul li {
    margin: 0;
    position: relative;
}

    .main-menu ul li a {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2em;
        padding: 20px 15px !important;
        color: var(--black-color);
        text-transform: capitalize;
        transition: all 0.3s ease-in-out;
    }

    .main-menu ul li.submenu > a:after {
        content: "\f107";
        font-family: "FontAwesome";
        font-weight: 900;
        font-size: 14px;
        margin-left: 8px;
    }

    .main-menu ul li a:hover,
    .main-menu ul li a:focus {
        color: var(--accent-secondary-color);
    }

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 230px;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 230px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

    .main-menu ul ul li a {
        padding: 8px 20px !important;
        transition: all 0.3s ease-in-out;
    }

        .main-menu ul ul li a:hover {
            color: var(--secondary-color)
        }

.header-sticky.sticky .main-menu ul li a:hover {
    color: var(--secondary-color)
}

}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-secondary-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

    .slicknav_icon .slicknav_icon-bar:first-child {
        margin-top: 0 !important;
    }

    .slicknav_icon .slicknav_icon-bar:last-child {
        margin-bottom: 0 !important;
    }

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-secondary-color);
}

    .slicknav_menu ul {
        margin: 5px 0;
    }

        .slicknav_menu ul ul {
            margin: 0;
        }

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--accent-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

    .slicknav_nav a:hover,
    .slicknav_nav a:focus,
    .slicknav_nav .slicknav_row:hover {
        background-color: transparent;
        color: var(--white-color);
    }

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

    .slicknav_arrow:after {
        content: "\f107";
        font-family: "FontAwesome";
        font-weight: 900;
        font-size: 12px;
        margin-left: 8px;
        color: var(--primary-color);
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease-out;
    }

.slicknav_open > a .slicknav_arrow:after {
    transform: translateY(-52%) rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    background: url("../images/hero-bg-shape.png"), linear-gradient(180deg, var(--accent-color) 64%, var(--secondary-color) 36%);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 100px 0 50px;
}

    .hero.hero-image {
        position: relative;
        background: url("../images/hero-bg.jpg") no-repeat;
        background-position: center center;
        background-size: cover;
        padding: 170px 0 120px;
    }

.services-banner {
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}


    .services-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7); /* Change this color and opacity as needed */
        z-index: -1; /* Place it behind the content but above the background */
    }

    .services-banner .hero.hero-image.hero-slider-layout .hero-slide {
        padding: unset
    }

        .services-banner .hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image img {
            object-fit: cover !important;
        }

.hero.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-image.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-image.hero-slider-layout {
    background: none;
    padding: 0;
}

    .hero.hero-image.hero-slider-layout .hero-slide {
        position: relative;
        padding: 200px 0;
    }

        .hero.hero-image.hero-slider-layout .hero-slide::before {
            /* content: ""; */
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--accent-color);
            opacity: 60%;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
        }

            .hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Adjust color & transparency as needed */
    z-index: 1;
}

.hero.hero-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 60px;
    text-align: center;
    z-index: 2;
}

    .hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: var(--white-color);
        opacity: 1;
        transition: all 0.3s ease-in-out;
        margin: 0 5px;
    }

    .hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-secondary-color);
    }

.hero-content {
    position: relative;
    width: 100%;
    /* max-width: 1024px; */
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
}

.hero-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-btn {
    display: flex;
}

.video-play-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-play-button a {
        height: 50px;
        width: 50px;
        border: 1px solid var(--accent-secondary-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: none;
        margin-right: 10px;
        transition: all 0.3s ease-in-out;
    }

    .video-play-button:hover a {
        border-color: var(--white-color);
    }

    .video-play-button i {
        font-size: 18px;
        color: var(--accent-secondary-color);
        transition: all 0.3s ease-in-out;
    }

    .video-play-button:hover a i {
        color: var(--white-color);
    }

    .video-play-button p {
        font-weight: 600;
        text-transform: capitalize;
        color: var(--accent-secondary-color);
        margin: 0;
        transition: all 0.3s ease-in-out;
    }

    .video-play-button:hover p {
        color: var(--white-color);
    }

.hero-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

    .hero-list ul li {
        position: relative;
        color: var(--secondary-color);
        padding-left: 25px;
    }

        .hero-list ul li:before {
            content: "\f058";
            position: absolute;
            font-family: "Font Awesome 6 Free";
            top: 5px;
            left: 0;
            font-weight: 900;
            font-size: 18px;
            color: var(--accent-secondary-color);
            display: inline-block;
            line-height: normal;
        }

.hero-image img {
    width: 100%;
}

/************************************/
/***     05. How We Work css      ***/
/************************************/

.how-we-work {
    padding: 50px 0;
}

.how-work-client-box {
    /* background: url(../images/client-box-bg-shape.svg), var(--accent-color); */
    background-repeat: no-repeat;
    background-position: top -30px right -40px;
    background-size: auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1a8bc5 0%, #69c5c4 50%, #d2f1ee 100%);
}

.how-work-client-counter {
    margin-bottom: 40px;
}

.how-work-client-box .list-style ul {
    list-style: none;
    padding-left: 0px;
    color: var(--white-color);
}

    .how-work-client-box .list-style ul li {
        list-style: none;
        display: flex;
        align-items: start;
        gap: 0.5rem;
        margin-bottom: 10px;
    }

        .how-work-client-box .list-style ul li i {
            margin-top: 7px;
        }

.how-work-client-counter h2 {
    font-size: 60px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.how-work-client-counter p {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 0;
}

.how-work-client-images {
    display: inline-flex;
    align-items: center;
}

.client-image {
    position: relative;
    display: inline-block;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    margin-left: -16px;
    overflow: hidden;
    z-index: 1;
}

    .client-image:first-child {
        margin: 0;
    }

    .client-image figure {
        display: block;
    }

    .client-image img {
        max-width: 80px;
        border-radius: 50%;
    }

    .client-image .add-more {
        height: 80px;
        width: 80px;
        background-color: var(--accent-secondary-color);
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
    }

        .client-image .add-more:hover {
            background-color: var(--primary-color);
        }

        .client-image .add-more i {
            font-size: 26px;
            color: var(--accent-color);
            transition: all 0.3s ease-in-out;
        }

        .client-image .add-more:hover i {
            color: var(--accent-secondary-color);
        }

.how-work-video-box {
    position: relative;
    padding: 0 60px 60px 0;
}

.how-work-img {
    position: relative;
}

    .how-work-img figure {
        display: block;
    }

    .how-work-img img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .how-work-img h3 {
        position: absolute;
        bottom: -18%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        color: var(--white-color);
        padding: 20px 0px;
        text-transform: capitalize;
        text-align: start;
        background: var(--secondary-color);
    }

.certificate-right {
    margin-left: 50px;
    padding: 20px;
    background: #369cc6;
}

.how-work-video-btn {
    position: absolute;
    bottom: 0;
    right: 0;
}

    .how-work-video-btn a {
        height: 120px;
        width: 120px;
        border: 10px solid var(--secondary-color);
        background-color: var(--accent-secondary-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: none;
        transition: all 0.4s ease-in-out;
    }

        .how-work-video-btn a:hover {
            background-color: var(--accent-color);
        }

    .how-work-video-btn i {
        font-size: 30px;
        color: var(--accent-color);
        transition: all 0.4s ease-in-out;
    }

    .how-work-video-btn a:hover i {
        color: var(--white-color);
    }

/************************************/
/***     06. Our Process css      ***/
/************************************/

.our-process {
    padding: 60px 0 60px;
}

.process-steps-list {
    display: flex;
    flex-wrap: wrap;
}

.process-step-box {
    position: relative;
    width: calc(33.33%);
    border: 1px solid var(--divider-color);
    padding: 40px;
}

    .process-step-box:nth-child(3n + 1) {
        border-top-width: 0;
        border-right-width: 0;
        padding-right: 65px;
    }

    .process-step-box:nth-child(3n + 2) {
        border-top-width: 0;
        border-right-width: 0;
        padding-left: 65px;
        padding-right: 65px;
    }

    .process-step-box:nth-child(3n + 3) {
        border-top-width: 0;
        padding-left: 65px;
    }

    .process-step-box:nth-of-type(-n + 3) {
        border-top-width: 1px;
    }

    .process-step-box:last-child {
        border-right-width: 1px;
    }

    .process-step-box::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
        background-color: var(--secondary-color);
        background-image: url(../images/arrow-accent.svg);
        background-repeat: no-repeat;
        background-size: 20px auto;
        background-position: center center;
        border: 1px solid var(--divider-color);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        z-index: 1;
        transition: all 0.4s ease-in-out;
    }

    .process-step-box:last-child:before,
    .process-step-box:nth-of-type(3n + 3):before {
        display: none;
    }

    .process-step-box.active:before,
    .process-step-box:hover:before {
        background-color: var(--accent-secondary-color);
    }

    .process-step-box::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--accent-color);
        height: 0;
        width: 100%;
        z-index: 0;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

    .process-step-box:hover::after,
    .process-step-box.active::after {
        top: 0;
        height: 100%;
        opacity: 1;
    }

    .process-step-box .icon-box {
        position: relative;
        display: inline-block;
        margin-bottom: 40px;
        padding-right: 0;
        z-index: 1;
        padding: 5px;
        background: var(--secondary-color);
        background: linear-gradient(135deg, #1a8bc5 0%, #69c5c4 50%, #d2f1ee 100%);
        border-radius: 10px;
        width: 50px;
        min-width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

        .process-step-box .icon-box i {
            font-size: 36px;
        }

        .process-step-box .icon-box:before {
            /* content: ""; */
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-secondary-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            opacity: 40%;
            z-index: 0;
        }

        .process-step-box .icon-box img {
            position: relative;
            max-width: 26px;
            transition: all 0.2s ease-in-out;
            z-index: 1;
            filter: brightness(0) invert(1);
        }

    .process-step-box.active .icon-box img,
    .process-step-box:hover .icon-box img {
        filter: invert(62%) sepia(30%) saturate(725%) hue-rotate(130deg) brightness(95%) contrast(95%);
    }

    .process-step-box.active .icon-box i,
    .process-step-box:hover .icon-box i {
        color: #fff;
    }

    .process-step-box:hover .icon-box,
    .process-step-box.active .icon-box {
        background: #fff;
    }

        .process-step-box:hover .icon-box i,
        .process-step-box.active .icon-box i {
            background: #fff;
            color: var(--accent-color);
        }

.process-step-content {
    position: relative;
    z-index: 1;
}

    .process-step-content h3 {
        font-size: 20px;
        line-height: 28px;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: all 0.3s ease-in-out;
    }

    .process-step-content p {
        /* color: var(--primary-color); */
        margin-bottom: 0;
        transition: all 0.3s ease-in-out;
    }

.process-step-box:hover .process-step-content h3,
.process-step-box:hover .process-step-content p,
.process-step-box.active .process-step-content h3,
.process-step-box.active .process-step-content p {
    color: var(--white-color);
}

.process-step-footer {
    width: 100%;
    max-width: 1024px;
    text-align: center;
    margin: 0 auto;
    margin-top: 60px;
}

    .process-step-footer p {
        font-size: 20px;
        font-weight: 500;
        color: var(--black-color);
        margin-bottom: 40px;
    }

/************************************/
/***     07. Our Clients css  	  ***/
/************************************/

.our-clients {
    padding: 100px 0;
    background: url(../images/our-clients-bg.png) no-repeat, var(--secondary-color);
    background-position: center center;
    background-size: contain;
    background: linear-gradient(135deg, #1a8bc5 0%, #69c5c4 50%, #d2f1ee 100%);
}

.our-partners-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px 120px;
    text-align: center;
}

.our-partner-item {
    text-align: center;
    width: 100%;
    max-width: 100%;
    max-height: 200px;
}

    .our-partner-item img {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/************************************/
/***  08. Company Activities css  ***/
/************************************/

.company-activities {
    padding: 100px 0;
}

.company-activity-box {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 30px;
}

.company-activity-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

    .company-activity-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.company-activity-image {
    position: relative;
    width: calc(50% - 30px);
    padding: 0 0 40px 40px;
}

.company-activity-item:nth-child(even) .company-activity-image {
    padding: 0 40px 40px 0;
}

.company-activity-image::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    background-color: var(--accent-secondary-color);
    opacity: 14%;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
}

.company-activity-item:nth-child(even) .company-activity-image::before {
    left: auto;
    right: 0;
}

.company-activity-image figure {
    display: block;
}

.company-activity-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.94;
    object-fit: cover;
    z-index: 1;
}

.company-activity-content {
    width: calc(50% - 15px);
}

.company-activity-list {
    margin-bottom: 40px;
}

    .company-activity-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .company-activity-list ul li {
            position: relative;
            text-transform: capitalize;
            padding-left: 25px;
            margin-bottom: 15px;
        }

            .company-activity-list ul li span {
                display: block;
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 20px
            }

            .company-activity-list ul li:last-child {
                margin-bottom: 0;
            }

            .company-activity-list ul li::before {
                content: "\f058";
                position: absolute;
                font-family: "FontAwesome";
                font-size: 18px;
                font-weight: 900;
                line-height: normal;
                color: var(--accent-color);
                display: inline-block;
                top: 5px;
                left: 0;
            }

/************************************/
/***      09. Our Pricing css     ***/
/************************************/

.our-pricing {
    position: relative;
    background: url(../images/pricing-bg-img-2.svg), var(--accent-color);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
    padding: 100px 0 70px;
}

    .our-pricing::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        background: url(../images/pricing-bg-img-1.svg) no-repeat;
        background-position: center left;
        background-size: cover;
        height: 512px;
        width: 512px;
        z-index: 0;
    }

.pricing-box {
    position: relative;
    background: var(--secondary-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 50px;
    z-index: 1;
}

.pricing-header {
    border-bottom: 4px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

    .pricing-header h3 {
        font-size: 24px;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .pricing-header p {
        margin-bottom: 20px;
    }

    .pricing-header h2 {
        font-size: 30px;
    }

        .pricing-header h2 sub {
            font-size: 16px;
            bottom: 0;
        }

.pricing-body {
    margin-bottom: 40px;
}

    .pricing-body ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .pricing-body ul li {
            position: relative;
            color: var(--accent-color);
            text-transform: capitalize;
            padding-left: 25px;
            margin-bottom: 10px;
        }

            .pricing-body ul li:last-child {
                margin-bottom: 0;
            }

            .pricing-body ul li::before {
                content: "\f058";
                position: absolute;
                font-family: "FontAwesome";
                font-size: 18px;
                font-weight: 900;
                line-height: normal;
                color: var(--accent-color);
                display: inline-block;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
            }

.pricing-btn .btn-default {
    display: block;
    text-align: center;
}

.pricing-box.highlighted-box {
    background: var(--accent-secondary-color);
}

    .pricing-box.highlighted-box .pricing-body ul li {
        color: var(--text-color);
    }

    .pricing-box.highlighted-box .pricing-btn .btn-default {
        color: var(--white-color);
    }

        .pricing-box.highlighted-box .pricing-btn .btn-default:hover {
            color: var(--accent-color);
        }

            .pricing-box.highlighted-box .pricing-btn .btn-default:hover::before,
            .pricing-box.highlighted-box .pricing-btn .btn-default:hover::after {
                background: var(--white-color);
            }

/************************************/
/***	10. Company Success css   ***/
/************************************/

.company-success {
    padding: 100px 0;
}

.company-success-box {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 30px;
}

.company-success-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

    .company-success-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.company-success-content,
.company-success-image {
    width: calc(50% - 30px);
}

    .company-success-content ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .company-success-content ul li {
            position: relative;
            color: var(--accent-color);
            padding-left: 25px;
            margin-bottom: 10px;
        }

            .company-success-content ul li:last-child {
                margin-bottom: 0;
            }

            .company-success-content ul li::before {
                content: "\f00c";
                position: absolute;
                font-family: "FontAwesome";
                font-size: 16px;
                font-weight: 900;
                line-height: normal;
                color: var(--accent-color);
                display: inline-block;
                top: 50%;
                left: 0;
                transform: translateY(-50%);
            }

.company-success-btn {
    margin-top: 40px;
}

.company-success-feature {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

    .company-success-feature p {
        margin-bottom: 20px;
    }

.company-client-slider {
    width: 100%;
    max-width: 320px;
}

    .company-client-slider .client-logo img {
        width: 100%;
        max-height: 40px;
    }





.company-work-list-item:last-child {
    margin-bottom: 0;
}

.company-work-list-item .icon-box {
    position: relative;
    display: inline-block;
    padding-right: 0;
    z-index: 1;
    padding: 5px;
    background: linear-gradient(135deg, #1a8bc5 0%, #69c5c4 50%, #d2f1ee 100%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.company-work-list-item:hover .icon-box {
    background-color: transparent;
}

.company-work-list-item .icon-box img {
    position: relative;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.company-work-list-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.company-work-list-content {
    width: 100%
}

    .company-work-list-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .company-work-list-content p {
        margin-bottom: 0;
    }

.mb-30 {
    margin-bottom: 30px !important;
}

.company-success-image {
    position: relative;
    padding: 0 0 0 80px;
}

.company-success-item:nth-child(even) .company-success-image {
    padding: 0 80px 0 0;
}

.company-success-img figure {
    display: block;
}

.company-success-img img {
    width: 100%;
    aspect-ratio: 1 / 1.334;
    object-fit: cover;
}

.company-growth-img {
    position: absolute;
    background: var(--accent-color);
    padding: 15px 30px;
    width: 100%;
    max-width: 415px;
    bottom: 80px;
    left: 0;
}

@keyframes companygrowthbox1 {
    50% {
        left: 50px;
    }
}

.company-success-item:nth-child(even) .company-growth-img {
    left: auto;
    right: 0;
    animation: companygrowthbox2 3s infinite linear alternate;
}

@keyframes companygrowthbox2 {
    50% {
        right: 50px;
    }
}

/************************************/
/*** 	  11. Our Feature css	  ***/
/************************************/
.feature-tabs-wrapper {
    position: relative;
}

.scroll-arrow {
    position: absolute;
    top: 10px;
    background: var(--primary-color) !important;
    color: #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    border: unset;
    z-index: 1;
}




.left-arrow {
    left: 0px;
}

.right-arrow {
    right: 0px;
}


.our-feature {
    background: #fff;
    padding: 100px 0;
}

.our-feature-nav {
    margin: 0px auto 40px;
    overflow-x: auto;
    white-space: nowrap;
    width: 90%;
    ;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

    .our-feature-nav::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .our-feature-nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 10px 0 10px 0;
        margin: 0;
        flex-wrap: nowrap;
    }

        .our-feature-nav ul li {
            flex: 0 0 auto;
            display: inline-block;
        }

            .our-feature-nav ul li .nav-link {
                position: relative;
                background: transparent;
                border: none;
                color: var(--secondary-color);
                font-size: 16px;
                font-weight: 500;
                line-height: 1.2em;
                padding: 10px 20px;
                text-transform: capitalize;
                transition: all 0.3s ease-in-out;
                display: flex;
                align-items: center;
                white-space: nowrap;
            }

                .our-feature-nav ul li .nav-link.active,
                .our-feature-nav ul li .nav-link:hover {
                    color: var(--white-color);
                    background: var(--primary-color);
                    border-radius: 12px;
                }

                    .our-feature-nav ul li .nav-link.active img {
                        filter: invert(1) brightness(1000%);
                    }


                    .our-feature-nav ul li .nav-link:hover img {
                        filter: invert(1) brightness(1000%);
                    }



                    .our-feature-nav ul li .nav-link.active::before,
                    .our-feature-nav ul li .nav-link:hover::before {
                        width: 100%;
                        left: 0;
                        right: auto;
                    }

                .our-feature-nav ul li .nav-link img {
                    width: 100%;
                    max-width: 30px;
                    margin-right: 10px;
                    flex-shrink: 0;
                }


.feature-tab-content-header {
    margin-bottom: 30px;
}

    .feature-tab-content-header .icon-box {
        display: inline-block;
        margin-bottom: 15px;
    }

        .feature-tab-content-header .icon-box img {
            width: 100%;
            max-width: 50px;
        }

.feature-tab-header-content h3 {
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 20px;
}

.feature-tab-header-content p {
    color: var(--black-color);
    margin-bottom: 0;
}

.feature-tab-content-list {
    margin-bottom: 40px;
}

    .feature-tab-content-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .feature-tab-content-list ul li {
            position: relative;
            color: var(--white-color);
            text-transform: capitalize;
            padding-left: 25px;
            margin-bottom: 15px;
        }

            .feature-tab-content-list ul li:last-child {
                margin-bottom: 0;
            }

            .feature-tab-content-list ul li::before {
                content: "\f058";
                position: absolute;
                font-family: "FontAwesome";
                font-size: 18px;
                font-weight: 900;
                line-height: normal;
                color: var(--accent-secondary-color);
                display: inline-block;
                top: 5px;
                left: 0;
            }

.feature-tab-img figure {
    display: block;
}

.feature-tab-img img {
    width: 100%;
    aspect-ratio: 1 / 0.573;
    object-fit: cover;
    border-radius: 8px;
}

/************************************/
/***   12. Our Integration css    ***/
/************************************/

.our-integration {
    padding: 100px 0;
}

.integration-featured-item {
    background: url("../images/integration-featured-bg.svg"), var(--accent-color);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
    padding: 40px;
}

    .integration-featured-item .icon-box {
        margin-bottom: 40px;
    }

        .integration-featured-item .icon-box img {
            max-width: 50px;
        }

.integration-featured-content h3 {
    color: var(--white-color);
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.integration-featured-content p {
    color: var(--secondary-color);
    margin: 0;
}

.integration-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.integration-item {
    position: relative;
    width: 100%;
    width: calc(33.33% - 20px);
    background: var(--white-color);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .integration-item:after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--accent-color);
        height: 100%;
        width: 100%;
        z-index: 0;
        transition: all 0.4s ease-in-out;
    }

    .integration-item:hover:after {
        top: 0;
    }

    .integration-item .icon-box {
        margin-right: 20px;
    }

        .integration-item .icon-box img {
            position: relative;
            width: 100%;
            max-width: 75px;
            z-index: 1;
        }

.integration-item-content {
    position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

    .integration-item-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 6px;
        transition: all 0.4s ease-in-out;
    }

    .integration-item-content p {
        color: var(--primary-color);
        margin: 0;
        transition: all 0.4s ease-in-out;
    }

.integration-item:hover .integration-item-content h3,
.integration-item:hover .integration-item-content p {
    color: var(--white-color);
}

.our-integration-footer {
    text-align: center;
    margin-top: 60px;
}

/************************************/
/***    13. Our Testimonial css   ***/
/************************************/

.our-tesimonial {
    position: relative;
    background: #edffff;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

    .our-tesimonial:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: url("../images/testimonial-bg.png") no-repeat;
        background-position: center center;
        background-size: contain;
        animation: circlerotate 40s infinite linear;
        z-index: -1;
    }

@keyframes circlerotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.testimonial-item {
    position: relative;
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px);
    padding: 40px;
}

    .testimonial-item::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--secondary-color);
        opacity: 1;
        z-index: -1;
    }

.testimonial-header {
    margin-bottom: 20px;
}

    .testimonial-header p {
        color: var(--white-color);
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

.testimonial-body {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.author-image {
    margin-right: 15px;
}

    .author-image figure,
    .author-image img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

.author-content {
    width: calc(100% - 65px);
}

    .author-content h3 {
        color: var(--white-color);
        font-size: 18px;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .author-content p {
        color: var(--white-color);
        text-transform: capitalize;
        margin: 0;
    }

.testimonial-footer h2 {
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.testimonial-footer p {
    color: var(--secondary-color);
    margin: 0;
}

/************************************/
/***   	   14. Our FAQs css       ***/
/************************************/

.our-faqs {
    padding: 100px 0 50px;
}

.our-faq-content {
    position: sticky;
    top: 20px;
    margin-right: 120px;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

    .faq-accordion .accordion-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.faq-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
    padding-right: 35px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f063";
    font-family: "FontAwesome";
    font-size: 14px;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    height: 24px;
    width: 24px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
    transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body {
    padding-right: 35px;
}

.accordion-item .accordion-body p {
    margin-bottom: 15px;
}

    .accordion-item .accordion-body p:last-child {
        margin-bottom: 0;
    }

/************************************/
/***       15. Our Blog css       ***/
/************************************/

.our-blog {
    padding: 50px 0 70px;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    ;
}

.post-featured-image {
    margin-bottom: 20px;
}

    .post-featured-image a {
        display: block;
        overflow: hidden;
        cursor: none;
    }

    .post-featured-image img {
        width: 100%;
        aspect-ratio: 1 / 0.594;
        object-fit: cover;
        transition: all 0.4s ease-in-out;
    }

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 20px;
    padding: 20px;
}

.post-item-btn {
    padding: 0px 20px 20px;
}

.post-item-content span {
    font-size: 14px;
    display: block;
    line-height: 20px;
    color: var(--primary-color);
}

.post-item-content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
}

    .post-item-content h2 a {
        color: inherit;
    }

.readmore-btn {
    position: relative;
    color: var(--heading-text);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

    .readmore-btn:after {
        content: "";
        position: absolute;
        right: 0;
        top: 4px;
        background: url("../images/arrow-accent.svg") no-repeat;
        background-position: right center;
        background-size: cover;
        width: 18px;
        height: 14px;
        transform: translateX(-3px);
        transition: all 0.3s ease-in-out;
    }

    .readmore-btn:hover:after {
        transform: translateX(0);
    }

/************************************/
/***  		16. Footer css 		  ***/
/************************************/

.main-footer {
    background: url(../images/footer-bg.svg), #0e0e0e;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    padding: 100px 0 0 0;
}

.about-footer {
    width: 100%;
    max-width: 410px;
}

.footer-logo {
    margin-bottom: 20px;
}

    .footer-logo img {
        width: 100%;
        max-width: 200px;
    }

.about-footer-content {
    margin-bottom: 40px;
}

    .about-footer-content p {
        color: var(--white-color);
        margin-bottom: 0;
    }

.footer-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-social-links ul li {
        display: inline-block;
        margin-right: 10px;
    }

        .footer-social-links ul li:last-child {
            margin-right: 0;
        }

        .footer-social-links ul li a {
            width: 40px;
            height: 40px;
            color: var(--accent-color);
            background: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
        }

            .footer-social-links ul li a:hover {
                background: var(--accent-secondary-color);
            }

            .footer-social-links ul li a i {
                font-size: 18px;
                color: inherit;
                color: #000 !important;
            }

.footer-links h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
}

    .footer-links ul li {
        margin-bottom: 15px;
    }

        .footer-links ul li:last-child {
            margin-bottom: 0;
        }

        .footer-links ul li::marker {
            color: var(--accent-secondary-color);
        }

        .footer-links ul li:hover::marker {
            color: var(--white-color);
        }

        .footer-links ul li a {
            display: inline-block;
            font-size: 16px;
            text-transform: capitalize;
            color: var(--white-color);
            transition: all 0.3s ease-in-out;
        }

        .footer-links ul li:hover a {
            color: var(--accent-secondary-color);
        }

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }

    .footer-contact-item .icon-box {
        margin-right: 10px;
    }

        .footer-contact-item .icon-box img {
            max-width: 20px;
        }

.footer-contact-content {
    width: calc(100% - 30px);
}

    .footer-contact-content p {
        color: var(--white-color);
        margin-bottom: 0;
    }

        .footer-contact-content p a {
            color: inherit;
            display: block;
            transition: all 0.3s ease-in-out;
        }

            .footer-contact-content p a:hover {
                color: var(--accent-secondary-color);
            }

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

    .footer-menu ul li {
        position: relative;
        display: inline-block;
        text-transform: capitalize;
        line-height: normal;
        color: var(--white-color);
        margin-right: 30px;
        transition: all 0.3s ease-in-out;
    }

        .footer-menu ul li:last-child {
            margin-right: 0;
        }

        .footer-menu ul li::before {
            content: "";
            position: absolute;
            top: 50%;
            right: -18px;
            background-color: var(--accent-secondary-color);
            border-radius: 50%;
            height: 6px;
            width: 6px;
            transform: translateY(-50%);
        }

        .footer-menu ul li:last-child:before {
            display: none;
        }

        .footer-menu ul li:hover {
            color: var(--accent-secondary-color);
        }

        .footer-menu ul li a {
            color: inherit;
        }

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header {
    position: relative;
    background: url("../images/page-header-bg.png"), var(--accent-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    padding: 115px 0;
    margin-top: 100px;
}

.page-header-box {
    text-align: center;
}

    .page-header-box h1 {
        display: inline-block;
        font-size: 60px;
        font-weight: 700;
        color: var(--white-color);
        margin-bottom: 10px;
        cursor: none;
    }

    .page-header-box ol {
        margin: 0;
        padding: 0;
        justify-content: center;
    }

        .page-header-box ol li.breadcrumb-item {
            font-size: 16px;
            font-weight: 400;
            text-transform: capitalize;
            color: var(--secondary-color);
        }

            .page-header-box ol li.breadcrumb-item a {
                color: inherit;
            }

        .page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
            color: var(--secondary-color);
        }

.page-about {
    padding: 100px 0 50px;
}

.about-image {
    position: relative;
    padding-right: 60px;
    margin-right: 20px;
}

.about-img figure {
    display: block;
}

.about-img img {
    width: 100%;
    aspect-ratio: 1 / 1.27;
    object-fit: cover;
}

.company-experience {
    position: absolute;
    right: 0;
    bottom: 50px;
    background: var(--accent-color);
    padding: 30px;
    animation: experienceobject 3s infinite linear alternate;
}

@keyframes experienceobject {
    50% {
        right: 40px;
    }
}

.company-experience h3 {
    color: var(--accent-secondary-color);
    font-size: 30px;
    margin-bottom: 5px;
}

.company-experience p {
    color: var(--secondary-color);
    text-transform: capitalize;
    margin: 0;
}

.about-content-body {
    margin-bottom: 40px;
}

    .about-content-body ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .about-content-body ul li {
            position: relative;
            margin-bottom: 15px;
            padding-left: 25px;
        }

            .about-content-body ul li:last-child {
                margin-bottom: 0;
            }

            .about-content-body ul li:after {
                content: "\f058";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                font-size: 18px;
                color: var(--primary-color);
                display: inline-block;
                line-height: normal;
                position: absolute;
                top: 5px;
                left: 0;
            }

.client-images {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-img {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    margin-left: -16px;
    width: 48px;
    height: 48px;
}

    .client-img:first-child {
        margin: 0;
    }

    .client-img figure {
        display: block;
    }

    .client-img img {
        width: 100%;
        border-radius: 50%;
    }

.satisfied-client-content p {
    margin: 0;
}

    .satisfied-client-content p span {
        font-weight: 700;
    }

.about-result-box {
    display: flex;
    align-items: center;
}

    .about-result-box .icon-box {
        position: relative;
        margin-right: 18px;
        padding-right: 10px;
    }

        .about-result-box .icon-box:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-secondary-color);
            opacity: 40%;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            z-index: -1;
            transition: all 0.4s ease-in-out;
        }

        .about-result-box .icon-box img {
            width: 100%;
            max-width: 42px;
        }

.about-result-content {
    width: calc(100% - 70px);
}

    .about-result-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .about-result-content p {
        text-transform: capitalize;
        margin: 0;
    }

.about-footer-btn {
    margin-top: 40px;
}

.our-approach {
    position: relative;
    padding: 100px 0;
    background-image: url('../imgs/our-approach-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    .our-approach:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(242, 242, 245, 0.6) 99.12%, #F2F2F5 99.38%);
        height: 100%;
        width: 100%;
        z-index: 1;
    }

.our-approach-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.our-approach-image {
    position: relative;
    z-index: 1;
}

.our-approach-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.our-approach-image {
    position: relative;
    z-index: 1;
}

.our-approach-content {
    position: relative;
    margin-right: -110px;
    z-index: 2;
}

.mission-vision-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background: var(--white-color);
    border-radius: 6px;
    padding: 25px 30px;
    box-shadow: 0px 0px 100px 2px #0000000D;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

    .mission-vision-item:before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(90.15deg, var(--accent-color) 1.15%, var(--accent-secondary-color) 98.84%);
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

    .mission-vision-item:hover:before {
        top: 0;
        bottom: auto;
        height: 100%;
    }

    .mission-vision-item:last-child {
        margin-bottom: 0;
    }

    .mission-vision-item .icon-box {
        position: relative;
        margin-right: 30px;
        z-index: 1;
    }

        .mission-vision-item .icon-box img {
            width: 100%;
            max-width: 80px;
            transition: all 0.4s ease-in-out;
        }

    .mission-vision-item:hover .icon-box img {
        filter: brightness(0) invert(1);
    }

.mission-vision-content {
    position: relative;
    width: calc(100% - 110px);
    z-index: 1;
}

    .mission-vision-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: all 0.4s ease-in-out;
    }

    .mission-vision-content p {
        margin: 0;
        transition: all 0.4s ease-in-out;
    }

.mission-vision-item:hover .mission-vision-content h3,
.mission-vision-item:hover .mission-vision-content p {
    color: var(--white-color);
}

.our-approach-image figure {
    display: block;
    border-radius: 6px;
}

.our-approach-image img {
    width: 100%;
    aspect-ratio: 1 / 0.863;
    object-fit: cover;
    border-radius: 6px;
}

/* .approach-image-content{
	margin-bottom: 30px;
}

.approach-image-content p{
	margin: 0;
} */

.our-approach-img figure {
    display: block;
}

.our-approach-img img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
}

.our-approach-footer {
    margin-top: 40px;
}

    .our-approach-footer p {
        text-transform: capitalize;
        text-align: center;
        margin: 0;
    }

    .our-approach-footer a {
        font-weight: 700;
        text-decoration: underline;
        color: var(--text-color);
        transition: all 0.3s ease-in-out;
    }

        .our-approach-footer a:hover {
            color: var(--accent-secondary-color);
        }

.our-process.page-about-process {
    padding: 100px 0;
}

.our-team {
    padding: 100px 0 70px;
}

.team-member-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

    .team-image a {
        display: block;
        cursor: none;
    }

    .team-image figure {
        display: block;
    }

        .team-image figure img {
            width: 100%;
            aspect-ratio: 1 / 1.09;
            object-fit: cover;
            transition: all 0.4s ease-in-out;
        }

.team-member-item:hover .team-image figure img {
    transform: scale(1.1);
}

.team-designation {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-secondary-color);
    padding: 5px 10px;
    z-index: 1;
}

    .team-designation p {
        font-weight: 500;
        text-transform: capitalize;
        margin: 0;
    }

.team-readmore-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-readmore-btn {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
}

.team-readmore-btn a {
    width: 90px;
    height: 90px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

    .team-readmore-btn a img {
        width: 100%;
        max-width: 22px;
        transition: all 0.4s ease-in-out;
    }

    .team-readmore-btn a:hover img {
        transform: rotate(45deg);
        filter: brightness(1) invert(1);
    }

    .team-readmore-btn a:hover {
        border-color: var(--accent-secondary-color);
        background-color: var(--accent-secondary-color);
    }

.team-content {
    text-align: center;
    margin-bottom: 20px;
}

    .team-content h3 {
        color: var(--primary-color);
        font-size: 20px;
        text-transform: capitalize;
    }

        .team-content h3 a {
            color: inherit;
        }

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

    .team-social-icon ul li {
        display: inline-flex;
        margin-right: 10px;
    }

        .team-social-icon ul li:last-child {
            margin-right: 0;
        }

        .team-social-icon ul li a {
            width: 44px;
            height: 44px;
            color: var(--primary-color);
            background: transparent;
            border: 1px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease-in-out;
        }

            .team-social-icon ul li a i {
                font-size: 18px;
            }

            .team-social-icon ul li a:hover {
                color: var(--white-color);
                background: var(--primary-color);
            }

.our-faqs.page-about-faqs {
    padding: 100px 0;
}

/************************************/
/***     18. Services Page css    ***/
/************************************/

.page-services {
    padding: 100px 0 20px;
}

.service-item {
    position: relative;
    border: 1px solid var(--divider-color);
    height: calc(100% - 30px);
    padding: 40px;
    margin-bottom: 30px;
    overflow: hidden;
}

    .service-item::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--accent-color);
        height: 100%;
        width: 100%;
        z-index: 0;
        transition: all 0.4s ease-in-out;
    }

    .service-item:hover::after {
        top: 0;
    }

    .service-item .icon-box {
        position: relative;
        display: inline-block;
        margin-bottom: 30px;
        padding-right: 10px;
        z-index: 1;
    }

        .service-item .icon-box:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-secondary-color);
            opacity: 40%;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            z-index: -1;
            transition: all 0.4s ease-in-out;
        }

        .service-item .icon-box img {
            width: 100%;
            max-width: 50px;
            transition: all 0.4s ease-in-out;
        }

    .service-item:hover .icon-box img {
        filter: brightness(0) invert(1);
    }

.service-item-content {
    position: relative;
    z-index: 1;
}

    .service-item-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 20px;
        transition: all 0.3s ease-in-out;
    }

    .service-item-content p {
        margin-bottom: 0;
        transition: all 0.3s ease-in-out;
    }

.service-item:hover .service-item-content h3,
.service-item:hover .service-item-content p {
    color: var(--white-color);
}

.how-we-work.service-how-work {
    padding: 50px 0 100px;
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.service-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.service-catagery-list {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 30px;
}

    .service-catagery-list h3 {
        font-size: 20px;
        text-transform: capitalize;
        border-bottom: 1px solid var(--divider-color);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .service-catagery-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .service-catagery-list ul li {
            margin-bottom: 20px;
        }

            .service-catagery-list ul li:last-child {
                margin: 0;
            }

            .service-catagery-list ul li a {
                position: relative;
                display: block;
                text-transform: capitalize;
                color: var(--primary-color);
                padding-right: 25px;
                transition: all 0.3s ease-in-out;
            }

            .service-catagery-list ul li:hover a {
                color: var(--accent-secondary-color);
            }

            .service-catagery-list ul li a::before {
                content: "";
                position: absolute;
                top: 50%;
                right: 0;
                width: 18px;
                height: 12px;
                transform: translateY(-50%);
                background-image: url(../images/arrow-accent.svg);
                background-repeat: no-repeat;
                background-position: center center;
                background-size: cover;
                transition: all 0.3s ease-in-out;
            }

.sidebar-cta-box {
    background: url(../images/sidebar-cta-bg.svg), var(--primary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    padding: 30px;
}

    .sidebar-cta-box .icon-box {
        position: relative;
        height: 60px;
        width: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        overflow: hidden;
    }

        .sidebar-cta-box .icon-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--secondary-color);
            opacity: 20%;
            z-index: 0;
        }

        .sidebar-cta-box .icon-box img {
            position: relative;
            width: 100%;
            max-width: 30px;
            z-index: 1;
        }

.sidebar-cta-content {
    margin-bottom: 20px;
}

    .sidebar-cta-content h3 {
        font-size: 20px;
        color: var(--white-color);
        margin-bottom: 10px;
    }

    .sidebar-cta-content p {
        color: var(--white-color);
        margin-bottom: 0;
    }

.sidebar-cta-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sidebar-cta-contact ul li {
        margin-bottom: 15px;
    }

        .sidebar-cta-contact ul li:last-child {
            margin-bottom: 0;
        }

        .sidebar-cta-contact ul li img {
            max-width: 20px;
            margin-right: 10px;
        }

        .sidebar-cta-contact ul li a {
            color: var(--white-color);
            transition: all 0.3s ease-in-out;
        }

            .sidebar-cta-contact ul li a:hover {
                color: var(--accent-secondary-color);
            }

.service-featured-image {
    margin-bottom: 30px;
}

    .service-featured-image figure {
        display: block;
    }

    .service-featured-image img {
        width: 100%;
        aspect-ratio: 1 / 0.539;
        object-fit: cover;
    }

.service-entry,
.service-support,
.service-expertise {
    margin-bottom: 50px;
}

    .service-entry p {
        margin-bottom: 20px;
    }

        .service-entry p:last-child {
            margin-bottom: 0;
        }

    .service-entry h2 {
        font-size: 46px;
        margin-bottom: 20px;
        cursor: none;
    }

        .service-entry h2 span {
            color: var(--accent-secondary-color);
        }

    .service-entry ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .service-entry ul li {
            position: relative;
            text-transform: capitalize;
            padding-left: 25px;
            margin-bottom: 15px;
        }

            .service-entry ul li:last-child {
                margin-bottom: 0;
            }

            .service-entry ul li::before {
                content: "\f058";
                position: absolute;
                font-family: "FontAwesome";
                font-size: 18px;
                font-weight: 900;
                line-height: normal;
                color: var(--accent-color);
                display: inline-block;
                top: 5px;
                left: 0;
            }

.service-support-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

    .service-support-item:last-child {
        margin-bottom: 0;
    }

    .service-support-item .icon-box {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding-right: 10px;
        margin-right: 20px;
    }

        .service-support-item .icon-box::before {
            content: "";
            position: absolute;
            top: calc(50% - 10px);
            right: 0;
            background-color: var(--accent-secondary-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            opacity: 40%;
            transform: translateY(-50%);
            z-index: 0;
        }

        .service-support-item .icon-box img {
            position: relative;
            max-width: 50px;
            z-index: 1;
        }

.service-support-item-content {
    width: calc(100% - 80px);
}

    .service-support-item-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .service-support-item-content p {
        margin-bottom: 0;
    }

.service-expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-expertise-item {
    position: relative;
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    padding: 40px;
    overflow: hidden;
}

    .service-expertise-item::after {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: var(--accent-color);
        height: 100%;
        width: 100%;
        z-index: 0;
        transition: all 0.4s ease-in-out;
    }

    .service-expertise-item:hover::after {
        top: 0;
    }

    .service-expertise-item .icon-box {
        position: relative;
        display: inline-block;
        margin-bottom: 30px;
        padding-right: 10px;
        z-index: 1;
    }

        .service-expertise-item .icon-box:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-secondary-color);
            opacity: 40%;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            z-index: -1;
        }

        .service-expertise-item .icon-box img {
            width: 100%;
            max-width: 50px;
            transition: all 0.4s ease-in-out;
        }

    .service-expertise-item:hover .icon-box img {
        filter: brightness(0) invert(1);
    }

.service-expertise-item-content {
    position: relative;
    z-index: 1;
}

    .service-expertise-item-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 15px;
        transition: all 0.3s ease-in-out;
    }

    .service-expertise-item-content p {
        margin-bottom: 0;
        transition: all 0.3s ease-in-out;
    }

.service-expertise-item:hover .service-expertise-item-content h3,
.service-expertise-item:hover .service-expertise-item-content p {
    color: var(--white-color);
}

/************************************/
/***     20. Blog Archive css     ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

    .page-pagination ul {
        justify-content: center;
        padding: 0;
        margin: 0;
    }

        .page-pagination ul li a,
        .page-pagination ul li span {
            display: flex;
            text-decoration: none;
            justify-content: center;
            align-items: center;
            background: var(--divider-color);
            color: var(--primary-color);
            border-radius: 0;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            font-weight: 700;
            line-height: 1em;
            transition: all 0.3s ease-in-out;
        }

            .page-pagination ul li.active a,
            .page-pagination ul li a:hover {
                background: var(--accent-color);
                color: var(--accent-secondary-color);
            }

/************************************/
/***   	 21. Blog Single css      ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-single-meta ol li.breadcrumb-item {
    font-size: 18px;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--accent-secondary-color);
    margin-right: 5px;
}

.post-image {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

    .post-image figure {
        display: block;
        overflow: hidden;
    }

    .post-image img {
        width: 100%;
        aspect-ratio: 1 / 0.5;
        object-fit: cover;
    }

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .post-entry:after {
        content: "";
        display: block;
        clear: both;
    }

    .post-entry a {
        color: var(--accent-color);
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        font-weight: 700;
        line-height: 1.2em;
        text-transform: uppercase;
        margin: 0 0 0.6em;
    }

    .post-entry h1 {
        font-size: 60px;
    }

    .post-entry h2 {
        font-size: 46px;
    }

    .post-entry h3 {
        font-size: 40px;
    }

    .post-entry h4 {
        font-size: 30px;
    }

    .post-entry h5 {
        font-size: 24px;
    }

    .post-entry h6 {
        font-size: 18px;
    }

    .post-entry p {
        margin-bottom: 20px;
    }

        .post-entry p:last-child {
            margin-bottom: 0;
        }

        .post-entry p strong {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 600;
        }

    .post-entry ol {
        margin: 0 0 30px;
    }

        .post-entry ol li {
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-color);
        }

    .post-entry ul {
        padding: 0;
        margin: 20px 0 20px;
        padding-left: 20px;
    }

        .post-entry ul li {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-color);
            position: relative;
            margin-bottom: 15px;
        }

            .post-entry ul li:last-child {
                margin-bottom: 0;
            }

        .post-entry ul ul,
        .post-entry ul ol,
        .post-entry ol ol,
        .post-entry ol ul {
            margin-top: 20px;
            margin-bottom: 0;
        }

            .post-entry ul ul li:last-child,
            .post-entry ul ol li:last-child,
            .post-entry ol ol li:last-child,
            .post-entry ol ul li:last-child {
                margin-bottom: 0;
            }

    .post-entry blockquote {
        background: url("../images/icon-blockquote.svg"), var(--accent-color);
        background-repeat: no-repeat;
        background-position: 35px 36px;
        background-size: 50px;
        padding: 30px 30px 30px 100px;
        margin-bottom: 30px;
    }

        .post-entry blockquote p {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.6em;
            color: var(--white-color);
        }

            .post-entry blockquote p:last-child {
                margin-bottom: 0;
            }

.tag-links {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 0px;
    padding: 6px 15px;
    transition: all 0.3s ease-in-out;
}

    .post-tags .tag-links a:hover {
        background: var(--accent-secondary-color);
        color: var(--primary-color);
    }

.post-social-sharing {
    text-align: right;
}

    .post-social-sharing ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .post-social-sharing ul li {
            display: inline-block;
            margin-right: 10px;
        }

            .post-social-sharing ul li:last-child {
                margin-right: 0;
            }

            .post-social-sharing ul li a {
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: var(--accent-color);
                color: var(--white-color);
                border-radius: 0px;
                width: 38px;
                height: 38px;
                transition: all 0.3s ease-in-out;
            }

            .post-social-sharing ul li:hover a {
                background: var(--accent-secondary-color);
                color: var(--primary-color);
            }

            .post-social-sharing ul li a i {
                font-size: 18px;
                color: inherit;
            }

/************************************/
/***    22. Projects Page css     ***/
/************************************/

.page-projects {
    padding: 100px 0 70px;
}

.our-Project-nav {
    text-align: center;
    margin-bottom: 40px;
}

    .our-Project-nav ul {
        list-style: none;
        text-align: center;
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px 60px;
        padding: 0;
        margin: 0;
    }

        .our-Project-nav ul li a {
            position: relative;
            display: inline-block;
            color: var(--text-color);
            font-weight: 700;
            text-transform: capitalize;
            transition: all 0.3s ease-in-out;
        }

            .our-Project-nav ul li a::before {
                content: "/";
                position: absolute;
                top: 0;
                bottom: 0;
                right: -35px;
                font-weight: 400;
                color: var(--text-color);
            }

        .our-Project-nav ul li:last-child a:before {
            display: none;
        }

        .our-Project-nav ul li a.active-btn,
        .our-Project-nav ul li a:hover {
            color: var(--accent-secondary-color);
        }

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.project-image a {
    position: relative;
    display: block;
    cursor: none;
}

.project-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.12%, #000000 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-image img {
    aspect-ratio: 1 / 1.001;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

    .project-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        color: var(--white-color);
        transition: all 0.3s ease-in-out;
    }

        .project-content h3:hover {
            color: var(--accent-secondary-color);
        }

        .project-content h3 a {
            display: block;
            color: inherit;
        }

/************************************/
/***    23. Project Single css    ***/
/************************************/

.page-project-single {
    padding: 100px 0;
}

.project-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.project-detail-box {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 40px;
}

.project-detail-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

    .project-detail-item:last-child {
        margin-bottom: 0;
    }

    .project-detail-item .icon-box {
        position: relative;
        padding-right: 10px;
        margin-right: 10px;
    }

        .project-detail-item .icon-box::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-secondary-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            opacity: 40%;
            z-index: 0;
        }

        .project-detail-item .icon-box img {
            position: relative;
            max-width: 50px;
            transition: all 0.4s ease-in-out;
            z-index: 1;
        }

.project-detail-item-content {
    width: calc(100% - 70px);
}

    .project-detail-item-content h3 {
        font-size: 20px;
        text-transform: capitalize;
        margin-bottom: 5px;
    }

    .project-detail-item-content p {
        margin-bottom: 0;
    }

.project-featured-image {
    margin-bottom: 30px;
}

    .project-featured-image figure {
        display: block;
    }

    .project-featured-image img {
        width: 100%;
        aspect-ratio: 1 / 0.606;
        object-fit: cover;
    }

.project-entry,
.project-security-growth {
    margin-bottom: 50px;
}

    .project-entry p {
        margin-bottom: 20px;
    }

        .project-entry p:last-child {
            margin-bottom: 0;
        }

    .project-entry h2 {
        font-size: 46px;
        margin-bottom: 20px;
    }

        .project-entry h2 span {
            color: var(--accent-secondary-color);
        }

    .project-security-growth .section-title {
        margin-bottom: 20px;
    }

.project-security-growth-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

    .project-security-growth-list ul li {
        position: relative;
        width: calc(50% - 10px);
        text-transform: capitalize;
        padding-left: 25px;
    }

        .project-security-growth-list ul li::before {
            content: "\f058";
            position: absolute;
            font-family: "FontAwesome";
            font-size: 18px;
            font-weight: 900;
            line-height: normal;
            color: var(--accent-color);
            display: inline-block;
            top: 5px;
            left: 0;
        }

/************************************/
/***       24. Team Page css      ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.team-single-image {
    margin-bottom: 40px;
}

    .team-single-image figure {
        display: block;
        overflow: hidden;
    }

    .team-single-image img {
        width: 100%;
        object-fit: cover;
        aspect-ratio: 1 / 1.33;
        overflow: hidden;
    }

.team-member-info,
.team-member-qualification {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.team-info-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .team-info-list ul li {
        font-size: 20px;
        font-weight: 700;
        text-transform: capitalize;
        color: var(--primary-color);
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .team-info-list ul li:last-child {
            margin-bottom: 0;
        }

        .team-info-list ul li span {
            font-size: 16px;
            font-weight: 400;
            text-transform: none;
            color: var(--text-color);
            width: 72%;
        }

.member-involvement-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .member-involvement-list ul li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
    }

        .member-involvement-list ul li:last-child {
            margin-bottom: 0;
        }

        .member-involvement-list ul li:before {
            content: "\f058";
            position: absolute;
            font-family: "Font Awesome 6 Free";
            top: 5px;
            left: 0;
            font-weight: 900;
            font-size: 18px;
            color: var(--accent-color);
            line-height: normal;
        }

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    padding: 16px 20px;
    border: 1px solid var(--divider-color);
    border-radius: 0;
    box-shadow: none;
    border-radius: 12px;
    outline: none;
    background: transparent;
}

    .contact-form .form-control::placeholder {
        color: var(--text-color);
    }

.contact-form button {
    border: none;
    outline: none;
}

/************************************/
/***    26. Image Gallery css     ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

    .page-gallery-box .photo-gallery a {
        cursor: none;
    }

    .page-gallery-box .photo-gallery figure {
        display: block;
    }

    .page-gallery-box .photo-gallery img {
        width: 100%;
        aspect-ratio: 1 / 0.85;
        object-fit: cover;
    }

/************************************/
/***      27. Video Guide css     ***/
/************************************/

.page-video-guide {
    padding: 100px 0;
}

.video-guide-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.video-guide-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    gap: 20px;
    padding: 20px
}



.video-guide-image {
    width: 100%;
}

.video-guide-content .section-title {
    margin-bottom: 20px;
}

    .video-guide-content .section-title h2 {
        font-size: 20px;
        line-height: 26px;
    }

.video-guide-image a,
.video-guide-image figure {
    display: block;
    cursor: none;
}

.video-guide-image img {
    width: 100%;
    aspect-ratio: 1 / 0.657;
    object-fit: cover;
}

.video-guide-content {
    width: 100%;
}

.video-guide-content-list {
    margin-bottom: 40px;
}

    .video-guide-content-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .video-guide-content-list ul li {
            position: relative;
            text-transform: capitalize;
            padding-left: 25px;
            margin-bottom: 15px;
        }

            .video-guide-content-list ul li:last-child {
                margin-bottom: 0;
            }

            .video-guide-content-list ul li::before {
                content: "\f058";
                position: absolute;
                font-family: "FontAwesome";
                font-size: 18px;
                font-weight: 900;
                line-height: normal;
                color: var(--accent-color);
                display: inline-block;
                top: 5px;
                left: 0;
            }

/************************************/
/***      28. FAQs Page css       ***/
/************************************/

.page-faqs {
    padding: 60px 0;
}

.faq-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 30px;
}

.faq-catagery-list {
    border: 1px solid var(--divider-color);
    padding: 30px;
    margin-bottom: 40px;
}

    .faq-catagery-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .faq-catagery-list ul li {
            margin-bottom: 20px;
        }

            .faq-catagery-list ul li:last-child {
                margin: 0;
            }

            .faq-catagery-list ul li a {
                position: relative;
                display: block;
                font-weight: 400;
                text-transform: capitalize;
                color: var(--primary-color);
                padding-right: 25px;
                transition: all 0.3s ease-in-out;
            }

            .faq-catagery-list ul li:hover a {
                color: var(--accent-secondary-color);
            }

            .faq-catagery-list ul li a::before {
                content: "";
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                background: url(../images/arrow-accent.svg) no-repeat;
                background-position: right center;
                background-size: cover;
                width: 18px;
                height: 14px;
            }

.faq-accordion.page-faq-accordion {
    margin-bottom: 60px;
}

    .faq-accordion.page-faq-accordion:last-child {
        margin-bottom: 0;
    }

/************************************/
/***   29. Contact Us Page css    ***/
/************************************/

.page-contact-us {
    padding: 100px 0;
}

.contact-us-content {
    margin-right: 50px;
}

.contact-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}

.contact-info-item {
    position: relative;
    width: calc(50% - 40px);
}

    .contact-info-item:after {
        content: "";
        position: absolute;
        top: 0;
        right: -40px;
        bottom: 0;
        width: 1px;
        height: 100%;
        background: var(--text-color);
        opacity: 14%;
    }

    .contact-info-item:nth-child(2n + 2):after {
        display: none;
    }

    .contact-info-item .icon-box {
        position: relative;
        display: inline-block;
        padding-right: 10px;
        margin-bottom: 20px;
    }

        .contact-info-item .icon-box:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent-secondary-color);
            opacity: 40%;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            z-index: -1;
            transition: all 0.4s ease-in-out;
        }

        .contact-info-item .icon-box img {
            max-width: 60px;
        }

.contact-info-content h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-info-content p {
    margin: 0;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 500px;
    width: 100%;
}

/************************************/
/***    30. 404 Error Page css    ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 40px;
}

    .error-page-image img {
        width: 100%;
        max-width: 50%;
    }

.error-page-content {
    text-align: center;
}

    .error-page-content .section-title {
        margin-bottom: 20px;
    }

.error-page-content-body p {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px) {
    .btn-default {
        padding: 15px 20px;
    }

    .topbar-contact-info ul {
        gap: 15px;
    }

    .topbar-social-links ul li {
        padding-right: 10px;
        margin-right: 10px;
    }

        .topbar-social-links ul li a i {
            font-size: 16px;
            margin-right: 5px;
        }

    .navbar {
        padding: 15px 0;
    }

    .main-menu ul li.highlighted-menu {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

        .section-title h3 {
            padding-left: 25px;
        }

            .section-title h3::before {
                width: 18px;
                height: 18px;
            }

        .section-title h1 {
            font-size: 45px;
        }

        .section-title h2 {
            font-size: 36px;
        }

        .section-title p {
            margin-top: 15px;
        }

    .section-title-content {
        margin-left: 0;
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 50px 0 25px;
    }

        .hero.hero-image {
            padding: 100px 0;
        }

            .hero.hero-image.hero-slider-layout .hero-slide {
                padding: 100px 0;
            }

            .hero.hero-image.hero-slider-layout .hero-pagination {
                bottom: 30px;
            }

    .hero-content {
        max-width: 100%;
    }

    .hero-body {
        margin-bottom: 30px;
    }

    .how-we-work {
        padding: 25px 0;
    }

    .how-work-client-box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .how-work-client-counter {
        margin-bottom: 20px;
    }

        .how-work-client-counter h2 {
            font-size: 45px;
            margin-bottom: 5px;
        }

        .how-work-client-counter p {
            font-size: 18px;
        }

    .client-image img {
        max-width: 55px;
    }

    .client-image .add-more {
        height: 55px;
        width: 55px;
    }

    .how-work-img h3 {
        font-size: 26px;
    }

    .how-work-video-box {
        position: relative;
        padding: 0 0px 50px 0;
    }

    .how-work-video-btn {
        right: 50%;
        transform: translateX(50%);
    }

        .how-work-video-btn a {
            height: 100px;
            width: 100px;
            border-width: 5px;
        }

    .our-process {
        padding: 25px 0 50px;
    }

    .process-step-box {
        padding: 20px;
    }

        .process-step-box:nth-child(3n + 1) {
            padding-right: 30px;
        }

        .process-step-box:nth-child(3n + 2) {
            padding-left: 30px;
            padding-right: 30px;
        }

        .process-step-box:nth-child(3n + 3) {
            padding-left: 30px;
        }

        .process-step-box::before {
            background-size: 16px auto;
            width: 40px;
            height: 40px;
        }

        .process-step-box .icon-box {
            margin-bottom: 30px;
        }

    .process-step-content h3 {
        font-size: 18px;
    }

    .process-step-content p {
        font-size: 14px;
    }

    .process-step-footer {
        margin-top: 30px;
    }

        .process-step-footer p {
            font-size: 18px;
            margin-bottom: 20px;
        }

    .our-clients {
        padding: 50px 0;
    }

    .our-partners-list {
        gap: 25px 35px;
    }

    .our-partner-item img {
        max-height: 35px;
    }

    .company-activities {
        padding: 50px 0;
    }

    .company-activity-box {
        gap: 50px 30px;
    }

    .company-activity-item {
        gap: 30px;
    }

    .company-activity-image,
    .company-activity-content {
        width: 100%;
    }

    .company-activity-image {
        max-width: 75%;
        margin: 0 auto;
        padding: 0 0 30px 30px;
    }

    .company-activity-item:nth-child(even) .company-activity-image {
        padding: 0 30px 30px 0;
    }

    .company-activity-image::before {
        top: 25px;
        height: calc(100% - 30px);
        width: calc(100% - 30px);
    }

    .company-activity-list {
        margin-bottom: 30px;
    }

        .company-activity-list ul li {
            margin-bottom: 10px;
        }

    .our-pricing {
        padding: 50px 0 20px;
    }

    .pricing-box {
        padding: 30px;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .pricing-header h2 {
        font-size: 26px;
    }

    .pricing-header {
        border-width: 2px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pricing-body {
        margin-bottom: 30px;
    }

    .company-success {
        padding: 50px 0;
    }

    .company-success-box {
        gap: 50px 30px;
    }

    .company-success-item {
        gap: 30px;
    }

    .company-success-content,
    .company-success-image {
        width: 100%;
    }

    .company-success-btn {
        margin-top: 30px;
    }

    .company-success-feature {
        padding-top: 30px;
        margin-top: 30px;
    }

    .company-work-list-item {
        margin-bottom: 30px;
    }

        .company-work-list-item .icon-box {
            margin-right: 10px;
        }

    .company-work-list-content {
        width: calc(100% - 70px);
    }

        .company-work-list-content h3 {
            margin-bottom: 5px;
        }

    .company-success-image {
        padding: 0 0 0 50px;
    }

    .company-success-item:nth-child(even) .company-success-image {
        padding: 0 50px 0 0;
    }

    .company-success-img img {
        aspect-ratio: 1 / 0.8;
    }

    .company-growth-img {
        max-width: 350px;
        padding: 10px;
    }

    .our-feature {
        padding: 50px 0;
    }

    .our-feature-nav {
        margin-bottom: 40px;
    }

        .our-feature-nav ul {
            padding: 0 0 20px 0;
        }

            .our-feature-nav ul li .nav-link::before {
                bottom: -23px;
            }

            .our-feature-nav ul li .nav-link {
                font-size: 18px;
            }

                .our-feature-nav ul li .nav-link img {
                    max-width: 24px;
                }

    .feature-tab-content {
        margin-bottom: 30px;
    }

    .feature-tab-content-header .icon-box img {
        max-width: 40px;
    }

    .feature-tab-header-content h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .feature-tab-content-list {
        margin-bottom: 30px;
    }

        .feature-tab-content-list ul li {
            margin-bottom: 10px;
        }

    .our-integration {
        padding: 50px 0;
    }

    .integration-featured-item {
        padding: 30px;
        margin-bottom: 30px;
    }

        .integration-featured-item .icon-box {
            margin-bottom: 30px;
        }

    .integration-item {
        width: calc(50% - 15px);
    }

    .our-integration-footer {
        margin-top: 30px;
    }

    .our-tesimonial {
        padding: 50px 0;
    }

    .testimonial-item {
        padding: 30px;
    }

    .testimonial-header p {
        font-size: 16px;
    }

    .testimonial-body {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .testimonial-footer h2 {
        font-size: 22px;
    }

    .our-faqs {
        padding: 50px 0 25px;
    }

    .our-faq-content {
        position: static;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        margin-bottom: 10px;
    }

    .our-blog {
        padding: 25px 0 20px;
    }

    .post-featured-image,
    .post-item-content {
        margin-bottom: 15px;
    }

        .post-featured-image img {
            aspect-ratio: 1 / 0.72;
        }

    .main-footer {
        padding: 50px 0 0 0;
    }

    .about-footer {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .about-footer-content {
        margin-bottom: 20px;
    }

    .footer-copyright {
        padding: 20px 0;
        margin-top: 30px;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header-box h1 {
        font-size: 45px;
    }

    .page-about {
        padding: 50px 0 25px;
    }

    .about-image {
        padding-right: 30px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-img img {
        aspect-ratio: 1 / 0.8;
        object-position: top center;
    }

    .company-experience {
        padding: 15px 20px;
    }

        .company-experience h3 {
            font-size: 26px;
        }

    .about-content-body {
        margin-bottom: 30px;
    }

        .about-content-body ul li {
            margin-bottom: 10px;
        }

    .client-images {
        margin-bottom: 10px;
    }

    .about-footer-btn {
        margin-top: 30px;
    }

    .our-approach {
        padding: 25px 0 50px;
    }

    .our-approach-content {
        margin-bottom: 30px;
    }

    .mission-vision-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

        .mission-vision-item .icon-box {
            margin-bottom: 10px;
        }

            .mission-vision-item .icon-box:before {
                width: 25px;
                height: 25px;
            }

            .mission-vision-item .icon-box img {
                max-width: 40px;
            }

    /* .approach-image-content{
		margin-bottom: 20px;
	} */

    .our-approach-footer {
        margin-top: 30px;
    }

    .our-process.page-about-process {
        padding: 50px 0;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-image {
        margin-bottom: 15px;
    }

    .team-designation p {
        font-size: 14px;
    }

    .team-readmore-btn a {
        width: 75px;
        height: 75px;
    }

        .team-readmore-btn a img {
            max-width: 20px;
        }

    .team-content {
        margin-bottom: 15px;
    }

    .team-social-icon ul li a {
        width: 38px;
        height: 38px;
    }

    .our-faqs.page-about-faqs {
        padding: 50px 0;
    }

    .page-services {
        padding: 50px 0 0;
    }

    .service-item {
        padding: 30px;
    }

        .service-item .icon-box {
            margin-bottom: 20px;
        }

            .service-item .icon-box img {
                max-width: 40px;
            }

    .service-item-content h3 {
        margin-bottom: 15px;
    }

    .how-we-work.service-how-work {
        padding: 20px 0 50px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .service-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .service-catagery-list {
        padding: 20px;
    }

        .service-catagery-list h3 {
            margin-bottom: 15px;
            padding-bottom: 15px;
        }

        .service-catagery-list ul li {
            margin-bottom: 15px;
        }

    .sidebar-cta-box {
        background-position: top -40px center;
        padding: 20px;
    }

        .sidebar-cta-box .icon-box {
            margin-bottom: 20px;
        }

    .service-entry,
    .service-support,
    .service-expertise {
        margin-bottom: 30px;
    }

    .service-support-item {
        margin-bottom: 20px;
    }

        .service-support-item .icon-box {
            margin-right: 10px;
        }

    .service-support-item-content {
        width: calc(100% - 70px);
    }

    .service-expertise-item {
        padding: 30px;
    }

        .service-expertise-item .icon-box {
            margin-bottom: 20px;
        }

            .service-expertise-item .icon-box img {
                max-width: 40px;
            }

    .service-expertise-item-content h3 {
        margin-bottom: 10px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry blockquote {
        background-position: 30px 30px;
        background-size: 40px;
        padding: 25px 25px 25px 85px;
        margin-bottom: 20px;
    }

        .post-entry blockquote p {
            font-size: 16px;
        }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-projects {
        padding: 50px 0 20px;
    }

    .our-Project-nav ul {
        gap: 10px 40px;
    }

        .our-Project-nav ul li a::before {
            right: -25px;
        }

    .project-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .project-image img {
        aspect-ratio: 1 / 0.95;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .project-detail-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .project-detail-item {
        margin-bottom: 20px;
    }

        .project-detail-item .icon-box img {
            max-width: 40px;
        }

    .project-detail-item-content {
        width: calc(100% - 60px);
    }

    .project-featured-image {
        margin-bottom: 20px;
    }

    .project-entry,
    .project-security-growth {
        margin-bottom: 30px;
    }

    .project-security-growth-list ul li {
        width: 100%;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-single-sidebar {
        position: initial;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .team-single-image {
        margin-bottom: 30px;
    }

        .team-single-image img {
            aspect-ratio: 1 / 0.78;
            object-position: top center;
        }

    .team-member-info,
    .team-member-qualification {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .team-info-list ul li {
        font-size: 18px;
    }

    .member-involvement-list ul li {
        margin-bottom: 10px;
    }

    .contact-form .form-control {
        padding: 12px 16px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-guide {
        padding: 50px 0;
    }

    .video-guide-box {
        gap: 50px 30px;
    }

    .video-guide-item {
        gap: 30px;
    }

    .video-guide-image,
    .video-guide-content {
        width: 100%;
    }

        .video-guide-image img {
            aspect-ratio: 1 / 0.51;
        }

    .video-guide-content-list {
        margin-bottom: 30px;
    }

        .video-guide-content-list ul li {
            margin-bottom: 10px;
        }

    .page-faqs {
        padding: 50px 0;
    }

    .faq-sidebar {
        position: initial;
        top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .faq-catagery-list {
        padding: 20px;
        margin-bottom: 30px;
    }

        .faq-catagery-list ul li {
            margin-bottom: 15px;
        }

    .faq-accordion.page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 50px 0;
    }

    .contact-us-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .contact-info-item .icon-box {
        margin-bottom: 15px;
    }

        .contact-info-item .icon-box img {
            max-width: 50px;
        }

    .contact-info-content h3 {
        margin-bottom: 5px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 400px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 30px;
    }

        .error-page-image img {
            max-width: 80%;
        }

    .error-page-content .section-title {
        margin-bottom: 15px;
    }

    .error-page-content-body p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .topbar-social-links {
        display: none;
    }

    .topbar-contact-info ul {
        justify-content: center;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero {
        background: linear-gradient(180deg, var(--accent-color) 80%, var(--secondary-color) 20%);
    }

    .video-play-button a {
        height: 40px;
        width: 40px;
        margin-right: 5px;
    }

    .video-play-button i {
        font-size: 16px;
    }

    .video-play-button p {
        font-size: 14px;
    }

    .how-work-client-box {
        padding: 20px;
    }

    .how-work-client-counter h2 {
        font-size: 30px;
    }

    .how-work-client-counter p {
        font-size: 16px;
    }

    .client-image img {
        max-width: 45px;
    }

    .client-image .add-more {
        height: 45px;
        width: 45px;
    }

        .client-image .add-more i {
            font-size: 20px;
        }

    .how-work-video-box {
        padding: 0 0px 40px 0;
    }

    .how-work-img h3 {
        font-size: 18px;
    }

    .how-work-video-btn a {
        height: 80px;
        width: 80px;
    }

    .how-work-video-btn i {
        font-size: 22px;
    }

    .process-step-box {
        width: 100%;
    }

        .process-step-box:nth-of-type(-n + 3) {
            border-top-width: 0;
        }

        .process-step-box:nth-child(3n + 1),
        .process-step-box:nth-child(3n + 2),
        .process-step-box:nth-child(3n + 3) {
            padding: 20px;
            border-right-width: 1px;
        }

        .process-step-box:nth-of-type(-n + 1) {
            border-top-width: 1px;
        }

        .process-step-box::before {
            right: 50%;
            transform: translate(50%, 50%) rotate(90deg);
            top: auto;
            bottom: 0;
            background-size: 14px auto;
            width: 30px;
            height: 30px;
        }

        .process-step-box:nth-of-type(3n + 3):before {
            display: block;
        }

        .process-step-box:last-child:before {
            display: none;
        }

        .process-step-box .icon-box {
            margin-bottom: 20px;
        }

            .process-step-box .icon-box img {
                max-width: 40px;
            }

    .process-step-footer p {
        font-size: 16px;
    }

    .our-partner-item img {
        max-height: 150px;
    }

    .company-activity-image {
        max-width: 100%;
        padding: 0 0 20px 20px;
    }

    .company-activity-item:nth-child(even) .company-activity-image {
        padding: 0 20px 20px 0;
    }

    .company-activity-image::before {
        top: 25px;
        height: calc(100% - 20px);
        width: calc(100% - 20px);
    }

    .company-activity-list {
        margin-bottom: 20px;
    }

    .pricing-box {
        padding: 20px;
    }

    .pricing-header h3 {
        font-size: 20px;
    }

    .pricing-header p {
        margin-bottom: 10px;
    }

    .pricing-header h2 {
        font-size: 22px;
    }

    .pricing-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .pricing-body {
        margin-bottom: 20px;
    }

    .company-success-feature p {
        margin-bottom: 10px;
    }

    .company-client-slider {
        max-width: 280px;
    }

    .company-work-list-item {
        margin-bottom: 20px;
    }

        .company-work-list-item .icon-box {
            height: 50px;
            width: 50px;
        }

            .company-work-list-item .icon-box img {
                max-width: 25px;
            }

    .company-work-list-content {
        width: calc(100% - 60px);
    }

        .company-work-list-content h3 {
            font-size: 18px;
        }

        .company-work-list-content p {
            font-size: 14px;
        }

    .company-success-image {
        padding: 0 0 0 20px;
    }

    .company-success-item:nth-child(even) .company-success-image {
        padding: 0 20px 0 0;
    }

    .company-success-img img {
        aspect-ratio: 1 / 1.12;
    }

    .company-growth-img {
        max-width: 200px;
        bottom: 30px;
    }

    .our-feature-nav {
        margin-bottom: 30px;
    }

        .our-feature-nav ul li .nav-link {
            font-size: 12px;
            display: grid;
            justify-items: center;
        }

            .our-feature-nav ul li .nav-link img {
                margin: 0 0 10px 0;
            }

    .feature-tab-content-header {
        margin-bottom: 20px;
    }

    .feature-tab-header-content h3 {
        font-size: 22px;
    }

    .feature-tab-content-list ul li::before {
        font-size: 16px;
        top: 6px;
    }

    .integration-featured-item {
        padding: 20px;
    }

        .integration-featured-item .icon-box {
            margin-bottom: 20px;
        }

            .integration-featured-item .icon-box img {
                max-width: 40px;
            }

    .integration-featured-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .integration-item-list {
        gap: 20px;
    }

    .integration-item {
        width: 100%;
        padding: 10px 15px;
    }

        .integration-item .icon-box {
            margin-right: 10px;
        }

            .integration-item .icon-box img {
                max-width: 35px;
            }

    .integration-item-content {
        width: calc(100% - 45px);
    }

        .integration-item-content h3 {
            font-size: 18px;
        }

    .our-integration-footer {
        margin-top: 30px;
    }

    .testimonial-item {
        padding: 20px;
    }

    .testimonial-footer h2 {
        font-size: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding-right: 30px;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        margin-bottom: 5px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        width: 22px;
        height: 22px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 0;
    }

        .faq-accordion .accordion-item .accordion-body p {
            font-size: 14px;
        }

    .post-item-content h2 {
        font-size: 18px;
    }

    .footer-logo,
    .about-footer-content {
        margin-bottom: 15px;
    }

        .footer-logo img {
            max-width: 180px;
        }

    .footer-links {
        margin-bottom: 30px;
    }

        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

    .footer-copyright {
        padding: 15px 0;
        margin-top: 0;
        text-align: center;
    }

    .footer-menu {
        margin-top: 5px;
    }

        .footer-menu ul {
            text-align: center;
        }

    .page-header {
        background-size: auto 30%;
    }

    .page-header-box h1 {
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 14px;
    }

    .about-image {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .company-experience {
        bottom: 0;
        right: 35%;
        padding: 10px;
    }

    @keyframes experienceobject {
        50% {
            right: 25%;
        }
    }

    .company-experience h3 {
        font-size: 22px;
    }

    .company-experience p {
        font-size: 14px;
    }

    .satisfied-client-item {
        margin-bottom: 20px;
    }

    .about-result-box .icon-box {
        margin-right: 10px;
    }

    .about-result-content {
        width: calc(100% - 62px);
    }

        .about-result-content h3 {
            font-size: 18px;
        }

    .mission-vision-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .mission-vision-content h3 {
        font-size: 18px;
    }

    .our-approach-footer p {
        font-size: 14px;
    }

    .team-image figure img {
        aspect-ratio: 1 / 1.02;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .service-item {
        padding: 20px;
    }

        .service-item .icon-box {
            margin-bottom: 15px;
            padding-right: 5px;
        }

            .service-item .icon-box:before {
                width: 20px;
                height: 20px;
            }

            .service-item .icon-box img {
                max-width: 30px;
            }

    .service-item-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-catagery-list h3 {
        font-size: 18px;
    }

    .service-catagery-list ul li {
        margin-bottom: 10px;
    }

        .service-catagery-list ul li a::before {
            width: 16px;
        }

    .sidebar-cta-box {
        background-position: center center;
    }

    .sidebar-cta-content h3 {
        font-size: 18px;
    }

    .service-featured-image {
        margin-bottom: 20px;
    }

        .service-featured-image img {
            aspect-ratio: 1 / 0.7;
        }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry ul li {
        margin-bottom: 10px;
    }

    .service-support-item {
        align-items: start;
        margin-bottom: 20px;
    }

        .service-support-item .icon-box {
            display: block;
            padding-right: 5px;
        }

            .service-support-item .icon-box img {
                max-width: 40px;
            }

    .service-support-item-content {
        width: calc(100% - 55px);
    }

        .service-support-item-content h3 {
            font-size: 18px;
        }

        .service-support-item-content p {
            font-size: 14px;
        }

    .service-expertise-list {
        gap: 20px;
    }

    .service-expertise-item {
        width: 100%;
        padding: 20px;
    }

        .service-expertise-item .icon-box {
            margin-bottom: 15px;
        }

    .service-expertise-item-content h3 {
        font-size: 18px;
    }

    .service-expertise-item-content p {
        font-size: 14px;
    }

    .post-single-meta ol li i {
        font-size: 14px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 20px;
    }

    .our-Project-nav {
        margin-bottom: 30px;
    }

        .our-Project-nav ul {
            gap: 10px 30px;
        }

            .our-Project-nav ul li a::before {
                right: -20px;
            }

    .project-content h3 {
        font-size: 18px;
    }

    .project-detail-item-content h3 {
        font-size: 18px;
    }

    .project-featured-image img {
        aspect-ratio: 1 / 0.7;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-security-growth-list ul li {
        font-size: 14px;
    }

        .project-security-growth-list ul li::before {
            font-size: 16px;
            top: 6px;
        }

    .team-single-image img {
        aspect-ratio: 1 / 0.98;
        object-position: center center;
    }

    .team-info-list ul li span {
        width: 60%;
    }

    .member-involvement-list ul li {
        font-size: 14px;
    }

        .member-involvement-list ul li:before {
            top: 6px;
            font-size: 16px;
        }

    .video-guide-item {
        gap: 20px;
    }

    .video-guide-image img {
        aspect-ratio: 1 / 0.62;
    }

    .contact-info-item {
        width: 100%;
    }

        .contact-info-item:after {
            top: auto;
            right: 0;
            bottom: -15px;
            width: 100%;
            height: 1px;
        }

        .contact-info-item:nth-child(2n + 2):after {
            display: block;
        }

        .contact-info-item:last-child:after {
            display: none;
        }

        .contact-info-item .icon-box img {
            max-width: 40px;
        }

        .contact-info-item .icon-box:before {
            width: 30px;
            height: 30px;
        }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}

.whasapp-btn {
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 99;
}

    .whasapp-btn img {
        max-width: 65px;
    }

.cta-container {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 95, 95, 0.3);
}

img.cta-image {
    position: absolute;
    width: 45%;
    right: 0px;
    bottom: 0px;
}

img.cta-image1 {
    position: absolute;
    width: 15%;
    left: 43px;
    bottom: 21px;
    transform: rotate(-23deg);
}

.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: start;
    align-items: strat;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background-color: white;
    color: #1a4444;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-primary-cta:hover {
        background-color: #f8f9fa;
        color: #1a4444;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }

.btn-secondary-cta {
    background-color: transparent;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .btn-secondary-cta:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        transform: translateY(-2px);
    }

.arrow-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover .arrow-icon,
.btn-secondary-cta:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cta-card {
        padding: 60px 30px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-container {
        padding: 40px 15px;
    }

    .cta-card {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.testimonial-slider .swiper-wrapper {
    padding: 30px 0px;
}

.testimonial-card {
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: left;
    border-radius: 8px;
}

.testominal-logo {
    height: 80px;
    display: flex;
    justify-content: start;
    align-items: start;
    width: 150px;
    margin-bottom: 20px;
    text-align: start;
}

    .testominal-logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.testimonial-quote {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    border-bottom: 2px solid #eee;
    min-height: 150px;
}

.testimonial-author {
    display: flex;align-items:center;

    margin-bottom: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #45a6c6, #60bcc5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.author-info {
    padding-left: 15px;
    border-left: 1px solid #eee;
    flex-basis: 70%;
}

.header-btn .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-card .btn-secondary {
    background-color: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 0 4px var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
    /* Background blur */
    -webkit-backdrop-filter: blur(6px);
    /* Safari support */
}

    .cta-card .btn-secondary:hover {
        background-color: white;
        color: var(--secondary-color);
    }

.hero-content .btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 0 4px var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
    /* Background blur */
    -webkit-backdrop-filter: blur(6px);
    /* Safari support */
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 156, 198, 0.3);
}

.author-info h5 {
    color: var(--primary-color);
    margin: 0px 0px 4px 0px;
    font-size: 1rem;
    font-weight: 600;
}
.swiper-slide{
    height:unset !important;
}
.testimonial-card{
    height:100%;
}
.author-info p {
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    font-size: 12px;
    max-width: 200px;
    line-height: 18px;
    min-height: unset !important;
}

.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star {
    color: #fbbf24;
    font-size: 1.1rem;
}

.gallery-slider {
    padding: 0px 15px;
}

.right-image {
    width: 100%;
}

.certicicate-images {
    margin-top: 20px;
}

/* Product page */

.product-hero-section {
    padding: 200px 0 0px;
    position: relative;
    background-image: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .product-hero-section .hero-image {
        border-radius: 8px;
        max-width: 80%;
        margin: auto;
        height: auto;
        position: relative;
        margin-bottom: -40px;
    }

.why-us .company-success-img img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
}

.why-us .company-work-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.company-work-list-item {
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
    border-bottom: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}



.product-hero-section .hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: fill;
    border-radius: 12px;
    height: 100%;
}

.product-clients {
    background: #fff !important;
}

.why-card {
    width: 100% !important;
    background: #fff !important;
    height: 100% !important;
    border-radius: 4px;
    padding: 40px 20px !important;
    display: flex;
    gap: 20px;
}

    .why-card .icon-box {
        flex-basis: 20%;
    }

        .why-card .icon-box i {
            flex-basis: 20%;
        }

.process-module {
    padding: 100px 0px;
    background: #fafaf7;
}

.client-logo {
    max-width: 150px;
    height: 80px !important;
}

.contact-section {
    background-color: #c8e6d0;
    padding: 40px 0;
    margin-bottom: 60px;
}

.contact-title {
    color: #2c5282;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.feature-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

    .feature-card .feature-img {
        margin-bottom: 15px;
    }

    .feature-card .content {
        text-align: start;
    }

    .feature-card img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

.feature-title {
    color: #2c5282;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card .feature-img img {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.cta-link {
    color: #2c5282;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

    .cta-link:hover {
        color: #1a365d;
    }

.arrow {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-card {
        margin-bottom: 40px;
    }
}

.feature-content {
    margin-bottom: 40px;
}

    .feature-content h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 20px;
    }

.gredient-text.type-2 {
    background: -webkit-linear-gradient(45deg, var(--secondary-color), var(--primary-color) 100%);
    -webkit-background-clip: text;
}

.gredient-text {
    color: transparent;
    background: transparent var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-image {
    padding-left: 50px;
    position: relative;
    z-index: 1;
}

    .feature-image .image-1 {
        display: block;
        border-radius: 20px;
        width: 100%;
    }

    .feature-image img {
        margin: auto;
        display: block;
        filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.2));
        border-radius: 15px;
    }

.reversed .feature-image {
    padding-left: 0;
    padding-right: 50px;
}

.mt-50 {
    margin-top: 80px;
}

.blocksglow {
    background-color: var(--primary-color);
    filter: blur(100px);
    border-radius: 100%;
    width: 250px;
    height: 250px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.reversed .blocksglow {
    background: var(--secondary-color);
}

.contact-info-section {
    padding: 60px 0px;
}

.services-banner .hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image img {
    margin-top: 0px;
}

.services-banner .hero.hero-image.hero-slider-layout .hero-slide {
    padding: 200px 0px 50px;
}


.our-includes {
    background: linear-gradient(135deg, #1a8bc5 0%, #69c5c4 50%, #d2f1ee 100%) !important;
}

    .our-includes .faq-accordion .accordion-header .accordion-button {
        color: var(--white-color);
    }

.include-body p {
    color: var(--white-color);
}

.include-body ul li {
    color: var(--white-color);
}

.our-includes .faq-accordion .accordion-button:not(.collapsed)::after {
    background: var(--white-color);
}

.our-includes .faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    border: 2px solid var(--white-color);
}

.our-includes .faq-accordion .accordion-item {
    border-bottom: 1px solid var(--white-color);
}

.our-includes .faq-accordion:last-of-type .accordion-item:last-of-type {
    border-bottom: unset;
}

.medical-cta-card {
    background: -webkit-linear-gradient(45deg, var(--secondary-color), var(--primary-color) 100%);
    border-radius: 8px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .medical-cta-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: -webkit-linear-gradient(45deg, var(--secondary-color), var(--primary-color) 100%);
        opacity: 0.3;
    }

    .medical-cta-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(37, 99, 235, 0.4);
    }

    .medical-cta-card .cta-content {
        position: relative;
        z-index: 2;
        max-height: 100%;
        margin: 0px 0px;
    }

.services-btn a {
    background: #fff !important;
    color: var(--primary-color) !important;
}

.about-points {
    background: var(--white-color);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border: 1px solid var(--primary-color);
}


.our-approach-content {
    padding: 40px 30px !important;
    height: 100%;
}

#brochureForm input {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    padding: 16px 20px;
    border: 1px solid var(--divider-color);
    border-radius: 0;
    box-shadow: none;
    outline: none;
    background: transparent;
}


#brochureForm select {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-radius: 12px;
}

.iti--separate-dial-code .iti__selected-flag {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.project-image a {
}

.our-approach-content {
    transition: all 0.3s ease; /* Smooth transition */
}

    .our-approach-content:hover {
        padding: 50px 25px; /* example change to trigger transition */
    }

.company-ul {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
}

    .company-ul li {
        background: var(--primary-color);
        color: #fff;
        padding: 15px;
        margin-bottom: 0px !important;
        border-radius: 12px;
    }

        .company-ul li small {
            font-size: 14px;
            line-height: 20px;
            display: block;
        }

.counter-wrap1 {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

    .counter-wrap1 h5 {
        font-size: 24px;
        margin-bottom: 20px
    }

    .counter-wrap1 .company-activity-list {
        margin-bottom: 0px;
    }

.pagination {
    display: flex;
    gap: .5rem;
}

.active > .page-link, .page-link.active {
    background: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
}

.page-item .page-link {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px !important;
}

#enquireform .modal-dialog {
    max-width: 550px;
    margin: 2rem auto;
}

#enquireform .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

#enquireform .modal-header {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    text-align: center;
}

    #enquireform .modal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    }

#enquireform .modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#enquireform .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

    #enquireform .btn-close:hover {
        background: rgba(255, 255, 255, 0.3);
        opacity: 1;
        transform: rotate(90deg);
    }

#enquireform .modal-body {
    padding: 2rem;
    background: #ffffff;
}

#enquireform .mb-3 {
    margin-bottom: 1.5rem !important;
    position: relative;
}

#enquireform .form-label {
    font-weight: 600;
    color: #374151;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

#enquireform .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
}

    #enquireform .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
        transform: translateY(-1px);
    }

    #enquireform .form-control::placeholder {
        color: #9ca3af;
        font-style: italic;
    }

/* Custom input styling with icons */
#enquireform #txtBDName {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#enquireform #txtBDEmail {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#enquireform #txtBDPhone {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    /* padding-right: 14rem;*/
}

#enquireform #txtBDOrg {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#enquireform #txtBDCountry {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

/* Row styling */
#enquireform .row.mb-3 {
    margin-bottom: 1.5rem !important;
}

#enquireform .col-lg-6 .mb-3 {
    margin-bottom: 0 !important;
}

/* Submit button styling */
#enquireform #btnBookADemo {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

    #enquireform #btnBookADemo::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        transition: left 0.6s ease;
    }

    #enquireform #btnBookADemo:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

        #enquireform #btnBookADemo:hover::before {
            left: 100%;
        }

        #enquireform #btnBookADemo:hover i {
            transform: translateX(3px);
        }

    #enquireform #btnBookADemo i {
        transition: transform 0.3s ease;
    }

    #enquireform #btnBookADemo:active {
        transform: translateY(0);
    }

/* Responsive design for the modal */
@media (max-width: 768px) {
    #enquireform .modal-dialog {
        margin: 1rem;
    }

    #enquireform .modal-body {
        padding: 1.5rem;
    }

    #enquireform .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    #enquireform .modal-title {
        font-size: 1.5rem;
    }
}

/* Animation effects */
#enquireform.show .modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Focus states for better accessibility */
#enquireform .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Validation states */
#enquireform .form-control.is-valid {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3e%3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#enquireform .form-control.is-invalid {
    border-color: #ef4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3e%3cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

/* Loading state for submit button */
#enquireform #btnBookADemo.loading {
    pointer-events: none;
    opacity: 0.8;
}

    #enquireform #btnBookADemo.loading i {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


span.error-message.text-danger {
    font-size: 14px;
}

#brochureModal .modal-dialog {
    max-width: 550px;
    margin: 2rem auto;
}

#brochureModal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

#brochureModal .modal-header {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    text-align: center;
}

    #brochureModal .modal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    }

#brochureModal .modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#brochureModal .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

    #brochureModal .btn-close:hover {
        background: rgba(255, 255, 255, 0.3);
        opacity: 1;
        transform: rotate(90deg);
    }

#brochureModal .modal-body {
    padding: 2rem;
    background: #ffffff;
}

#brochureModal .mb-3 {
    margin-bottom: 1.5rem !important;
    position: relative;
}

#brochureModal .form-label {
    font-weight: 600;
    color: #374151;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

#brochureModal .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
}

    #brochureModal .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
        transform: translateY(-1px);
    }

    #brochureModal .form-control::placeholder {
        color: #9ca3af;
        font-style: italic;
    }

/* Custom input styling with icons */
#brochureModal #txtBDName {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#brochureModal #txtBDEmail {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#brochureModal #txtBDPhone {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#brochureModal #txtBDOrg {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#brochureModal #txtBDCountry {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%369cc6'%3e%3cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

/* Row styling */
#brochureModal .row.mb-3 {
    margin-bottom: 1.5rem !important;
}

#brochureModal .col-lg-6 .mb-3 {
    margin-bottom: 0 !important;
}

/* Submit button styling */
#brochureModal #btnBookADemo {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

    #brochureModal #btnBookADemo::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
        transition: left 0.6s ease;
    }

    #brochureModal #btnBookADemo:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

        #brochureModal #btnBookADemo:hover::before {
            left: 100%;
        }

        #brochureModal #btnBookADemo:hover i {
            transform: translateX(3px);
        }

    #brochureModal #btnBookADemo i {
        transition: transform 0.3s ease;
    }

    #brochureModal #btnBookADemo:active {
        transform: translateY(0);
    }

/* Responsive design for the modal */
@media (max-width: 768px) {
    #brochureModal .modal-dialog {
        margin: 1rem;
    }

    #brochureModal .modal-body {
        padding: 1.5rem;
    }

    #brochureModal .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    #brochureModal .modal-title {
        font-size: 1.5rem;
    }
}

/* Animation effects */
#brochureModal.show .modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Focus states for better accessibility */
#brochureModal .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Validation states */
#brochureModal .form-control.is-valid {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3e%3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

#brochureModal .form-control.is-invalid {
    border-color: #ef4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3e%3cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

/* Loading state for submit button */
#brochureModal #btnBookADemo.loading {
    pointer-events: none;
    opacity: 0.8;
}

    #brochureModal #btnBookADemo.loading i {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


span.error-message.text-danger {
    font-size: 14px;
}

.hero-card .btn-secondary1 {
    background-color: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 0 4px var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(6px);
}

.policy-page {
    padding: 60px 0px;
}


    .policy-page .policy-content h2 {
        margin-bottom: 20px;
    }

.bg-new {
    background: var(--white-color);
    margin-top: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
}

.certificate-wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.certificate-wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

    .certificate-wrap .integration-item {
        width: 100%;
    }

.cta-certificate {
    width: 100% !important;
}


    .cta-certificate h3 {
        font-size: 20px;
        color: var(--white-color);
        margin-bottom: 0px;
    }

.new-card-bg {
    background: var(--accent-color);
}

.easyq-team-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
}

/* ===== HEADER STYLES ===== */
.easyq-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.easyq-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    border: 1px solid var(--border-light);
}

.easyq-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.easyq-brand-highlight {
    color: var(--primary-color) !important;
    position: relative;
}

    .easyq-brand-highlight::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
        border-radius: 2px;
    }

/* ===== CONTENT STYLES ===== */
.easyq-content-wrapper {
    margin-bottom: 4rem;
}

.easyq-prose {
    font-size: 16px;
    line-height: 24px;
}

.easyq-prose-lead {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.easyq-prose p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.easyq-text-highlight {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--primary-colorer);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

/* ===== IMAGE STYLES ===== */
.easyq-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.easyq-team-image {
    border-radius: 6px;
    box-shadow: var(--shadow-2xl);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    .easyq-team-image:hover {
        transform: scale(1.02);
    }

.easyq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    border-radius: 1rem;
    pointer-events: none;
}

.easyq-stats-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.easyq-stats-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
}

.easyq-stats-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ===== HIGHLIGHT CARDS ===== */
.easyq-highlights-grid {
    margin-bottom: 3rem;
}

.easyq-highlight-card {
    background: white;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .easyq-highlight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .easyq-highlight-card:hover {
        box-shadow: var(--shadow-xl);
        transform: translateY(-4px);
    }

        .easyq-highlight-card:hover::before {
            transform: scaleX(1);
        }

.easyq-highlight-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.easyq-highlight-card:hover .easyq-highlight-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.easyq-highlight-icon i {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.easyq-highlight-card:hover .easyq-highlight-icon i {
    color: white;
}

.easyq-highlight-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.easyq-highlight-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== CONTENT CARDS ===== */
.easyq-content-card {
}

.easyq-content-section .image {
    border-radius: 12px;
    overflow: hidden;
}

.easyq-content-section {
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}



.easyq-content-section {
    margin-bottom: 2rem;
}

    .easyq-content-section:last-child {
        margin-bottom: 0;
    }

.easyq-content-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

    .easyq-content-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 1.5rem;
        background: var(--primary-color);
        border-radius: 2px;
    }

.easyq-content-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.easyq-cta-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 1rem;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}


.easyq-cta-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .easyq-team-section {
        padding: 2rem 0;
    }

    .easyq-stats-badge {
        position: static;
        margin-top: 1rem;
        align-self: flex-start;
    }

    .easyq-image-container {
        margin-bottom: 2rem;
    }

    .testimonial-quote {
        min-height: 69px;
    }

    .easyq-section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .easyq-highlight-card {
        padding: 1.25rem;
    }

    .easyq-cta-section {
        padding: 1.5rem;
    }

    .easyq-cta-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .easyq-prose {
        font-size: 1rem;
    }

    .easyq-prose-lead {
        font-size: 1.125rem;
    }

    .easyq-content-title {
        font-size: 1.25rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.easyq-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .easyq-fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.easyq-text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-samd {
    padding: 30px 0px 60px;
}

.process-card {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
    height: 100%;
}

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-left: 3px solid var(--secondary-color); /* optional color change */
    }

.process-number {
    display: none;
}

.process-icon {
    margin-bottom: 20px;
}

    .process-icon img {
        width: 48px;
        height: 48px;
    }

.process-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.working-process-one .shape1 {
    position: absolute;
    top: 300px;
    left: 150px;
    right: 150px;
    border-top: 1px dashed #000;
    z-index: -1;
}

.working-process-one {
    position: relative;
    display: block;
    background: var(--cleanin-gray-bg);
    padding: 60px 0px 60px;
    z-index: 1;
}

.working-process-one__single {
    position: relative;
    display: block;
    padding: 0px 15px 0px;
    margin-bottom: 30px;
    z-index: 1;
}

    .working-process-one__single .icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #fff;
        -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
        box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
        margin: 0 auto 24px;
    }

        .working-process-one__single .icon::before {
            position: absolute;
            top: 20px;
            right: 20px;
            bottom: 20px;
            left: 20px;
            border: 1px dashed var(--primary-color);
            border-radius: 50%;
            content: "";
        }

        .working-process-one__single .icon .count-box {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: var(--primary-color);
            color: #fff;
            font-size: 14px;
            line-height: 24px;
            font-weight: 700;
            border-radius: 50%;
        }

        .working-process-one__single .icon span {
            position: relative;
            display: inline-block;
            color: var(--primary-color);
            font-size: 50px;
            line-height: 20px;
            transition-delay: 0.1s;
            transition: all 500ms ease;
        }

    .working-process-one__single:hover .icon span {
        transform: rotateY(180deg);
        transition-delay: 0.1s;
    }


    .working-process-one__single .content-box {
        position: relative;
        display: block;
    }

        .working-process-one__single .content-box h2 {
            font-size: 24px;
            line-height: 34px;
            font-weight: 700;
            text-transform: capitalize;
            margin-bottom: 14px;
        }

            .working-process-one__single .content-box h2 a {
                color: var(--primary-color);
            }

                .working-process-one__single .content-box h2 a:hover {
                    color: var(--primary-color);
                }

        .working-process-one__single .content-box p {
            margin: 0;
        }

.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #ccc;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}

    .custom-select-trigger::after {
        content: '▾';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 14px;
        color: #777;
    }

.custom-options {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 99;
    display: none;
}

    .custom-options div {
        padding: 10px 16px;
        font-size: 15px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .custom-options div:hover {
            background-color: #f1f1f1;
        }

.custom-select.open .custom-options {
    display: block;
}

/* Optional Scrollbar Styling */
.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.custom-options-wrapper {
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
}

.custom-select.open .custom-options-wrapper {
    display: block;
}

.f-search {
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    outline: none;
}

.custom-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-option-item {
    padding: 10px;
}

    .custom-option-item:hover {
        background-color: #f0f0f0;
    }
.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #ccc;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}

    .custom-select-trigger::after {
        content: '▾';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 14px;
        color: #777;
    }

.custom-options {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 99;
    display: none;
}

    .custom-options div {
        padding: 10px 16px;
        font-size: 15px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .custom-options div:hover {
            background-color: #f1f1f1;
        }

.custom-select.open .custom-options {
    display: block;
}

/* Optional Scrollbar Styling */
.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.custom-options-wrapper {
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
}

.custom-select.open .custom-options-wrapper {
    display: block;
}

.f-search {
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    outline: none;
}

.custom-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-option-item {
    padding: 10px;
}

    .custom-option-item:hover {
        background-color: #f0f0f0;
    }
.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    background-color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #ccc;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}

    .custom-select-trigger::after {
        content: '▾';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        font-size: 14px;
        color: #777;
    }

.custom-options {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 99;
    display: none;
}

    .custom-options div {
        padding: 10px 16px;
        font-size: 15px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .custom-options div:hover {
            background-color: #f1f1f1;
        }

.custom-select.open .custom-options {
    display: block;
}

/* Optional Scrollbar Styling */
.custom-options::-webkit-scrollbar {
    width: 8px;
}

.custom-options::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.custom-options-wrapper {
    display: none;
    position: absolute;
    z-index: 10;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
}

.custom-select.open .custom-options-wrapper {
    display: block;
}

.f-search {
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    outline: none;
}

.custom-options {
    max-height: 200px;
    overflow-y: auto;
}

.custom-option-item {
    padding: 10px;
}

    .custom-option-item:hover {
        background-color: #f0f0f0;
    }
.post-item-content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
}


.footer-social-links ul li a i {
    transition: color 0.3s ease;
}

.footer-social-links ul li a:hover i {
    color: #fff !important;
}
.founder-details {
    padding: 20px 15px 10px;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    border-radius: 0px 0px 8px 8px;
    margin-top: -3px;
    align-items:center;
}


.founder-details h5{
  color:#fff;
}
    .founder-details h5 span:last-child {
        color: #fff;
        font-size:14px;
        line-height:20px;
        display:block;
        opacity:.8;
    }
    .founder-details i {
        color: #fff;
        font-size:20px;
    }


.product-clients .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}