/*   Work Sans Font   */
@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-Thin.ttf") format("truetype");
    font-weight: 300;
    /* Thin */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-ExtraLight.ttf") format("truetype");
    font-weight: 300;
    /* ExtraLight */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-Light.ttf") format("truetype");
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-Regular.ttf") format("truetype");
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-Medium.ttf") format("truetype");
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-Bold.ttf") format("truetype");
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    /* ExtraBold */
    font-style: normal;
}

@font-face {
    font-family: "Work sans";
    src: url("../fonts/worksans-font/WorkSans-Black.ttf") format("truetype");
    font-weight: 900;
    /* Black */
    font-style: normal;
}

/*   Work Sans Font   */


/*   Funnel Display Font   */
@font-face {
    font-family: "Funnel Display";
    src: url("../fonts/funnel-display-font/FunnelDisplay-Light.ttf") format("truetype");
    font-weight: 300;
    /* Light */
    font-style: normal;
}

@font-face {
    font-family: "Funnel Display";
    src: url("../fonts/funnel-display-font/FunnelDisplay-Regular.ttf") format("truetype");
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

@font-face {
    font-family: "Funnel Display";
    src: url("../fonts/funnel-display-font/FunnelDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
    /* Medium */
    font-style: normal;
}

@font-face {
    font-family: "Funnel Display";
    src: url("../fonts/funnel-display-font/FunnelDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    /* Bold */
    font-style: normal;
}

@font-face {
    font-family: "Funnel Display";
    src: url("../fonts/funnel-display-font/FunnelDisplay-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    /* EtxraBold */
    font-style: normal;
}

/*   Funnel Display Font   */

/*     Variable    */
:root {
    --primary-color: rgba(34, 58, 148, 1);
    --secondary-color: rgba(92, 117, 205, 1);
    --light-color: rgba(249, 250, 255, 1);
    --dark-color: rgba(37, 37, 37, 1);
    --dark-gradient: linear-gradient(to bottom, rgba(5, 19, 29, 1) 0%, rgba(51, 55, 60, 1) 100%);
    --white-color: rgb(255, 255, 255);
    --gray-color: rgba(152, 152, 152, 1);
    --border-color: rgba(231, 231, 231, 1);
}

/* Variable */

/* Reset the default */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
    text-decoration: none !important;
}

::selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

a {
    color: var(--dark-color);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

a * {
    color: inherit;
}

a:hover {
    color: inherit;
}

body {
    font-family: "Work sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
    background-color: var(--white-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}


p {
    margin-bottom: 0 !important;
}

input:focus,
button:focus {
    box-shadow: none !important;
    border: none;
    outline: none;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Reset the default */


/* GENERAL STYLE */
.bg--primary {
    background-color: var(--primary-color);
}

.clr--primary {
    color: var(--primary-color);
}

.bg--secondary {
    background-color: var(--secondary-color);
}

.clr--secondary {
    color: var(--secondary-color);
}

.bg--dark {
    background-color: var(--dark-color);
}

.clr--dark {
    color: var(--dark-color);
}

.bg--light {
    background-color: var(--light-color);
}

.clr--light {
    color: var(--light-color);
}

.bg--gray {
    background-color: var(--gray-color);
}

.clr--gray {
    color: var(--gray-color);
}

.py-120 {
    padding-block: 120px;
}

.py-100 {
    padding-block: 100px;
}

.py-80 {
    padding-block: 80px;
}

.py-60 {
    padding-block: 60px;
}

.py-40 {
    padding-block: 40px;
}

.fs-100 {
    font-family: "funnel Display", sans-serif;
    font-size: 100px;
    font-weight: 700;
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading {
    font-family: "funnel Display", sans-serif;
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--dark-color);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-title::before,
.section-title::after {
    content: "";
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-color);
}

.fw-medium {
    font-weight: 500;
}

/* Theme button */
.theme-btn {
    font-family: "Funnel Display", sans-serif;
    display: inline-block;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 99px;
    border: none;
    box-shadow: -9px 11px 38px 0px rgba(34, 58, 148, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
}

.theme-btn span {
    position: relative;
    z-index: 2;
}

.theme-btn:hover {
    color: var(--white-color);
    box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.25);
}

.theme-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--dark-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.theme-btn:hover::before {
    opacity: 1;
}

/* Theme button */

/* Secondary button */
.secondary-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 99px;
    border: none;
    transition: all .3s ease;
}

.secondary-btn:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    box-shadow: 0px 24px 48px 0px rgba(0, 0, 0, 0.25);
}

/* Secondary button */

/* dark button */
.dark-btn {
    font-family: "Funnel Display", sans-serif;
    display: inline-block;
    background: linear-gradient(to bottom, rgba(5, 19, 29, 1) 0%, rgba(51, 55, 60, 1) 100%);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 99px;
    border: none;
    transition: all .3s ease;
    box-shadow: -9px 11px 38px rgba(5, 19, 29, 0.15);
}

.dark-btn:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    box-shadow: -9px 11px 38px rgba(5, 19, 29, 0.15);
}

/* Secondary button */

.back-to-top.show {
    bottom: 40px;
    right: 40px;
    opacity: 1;
    transform: scale(1);
}

.back-to-top {
    position: fixed;
    bottom: -40px;
    right: 40px;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: medium;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.3);
    /* box-shadow: 4px 4px 10px rgba(35, 206, 217, .2); */
    z-index: 15;
    transition: all .3s ease;
    overflow: hidden;
}

.back-to-top.show:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    bottom: 40px;
    opacity: 1;
    /* box-shadow: 4px 4px 10px rgba(9, 124, 135, .2); */
}

/* ==============================
    GENERAL STYLE
==============================  */


/* ==============================
    HEADER Section Start
==============================  */
header {
    width: 100%;
    background-color: var(--white-color);
    transition: all 0.3s cubic-bezier(.72, .63, .34, .99);
    border-bottom: 1px solid var(--border-color);
}

header.index_page {
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: transparent;
}

header.is-sticky {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: var(--white-color);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-in-out;
}

/* Sticky animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header nav.navbar {
    padding: 20px 0;
}

header.is-sticky nav.navbar {
    padding: 10px 0;
}

header .navbar-brand {
    padding: 0;
}

header .navbar-nav {
    gap: 28px;
}

header .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color);
    padding: 10px 0 !important;
    width: max-content;
    position: relative;
    transition: color 0.3s ease;
}

header .navbar-nav .nav-link.active {
    font-weight: 600;
}

/* Nav underline effect */
header .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: bottom right;
    background-color: var(--dark-color);
    transition: transform 0.3s ease-out;
}

header .navbar-nav .nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Navbar toggler */
header .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--white-color);
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

header .navbar-toggler:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

header .offcanvas-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
}

header .offcanvas-body {
    padding: 30px;
}

header .offcanvas .btn-close {
    font-size: 20px;
    color: var(--dark-color) !important;
    opacity: 1;
    transition: all 0.3s ease;
}

header .offcanvas .btn-close:hover {
    color: var(--dark-color) !important;
    transform: rotate(180deg);
}

.bar {
    width: 100%;
    height: 1px;
}

.header-user {
    position: relative;
}

.dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: none;
    transition: none;
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--dark-color);
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    border: 0;
}

.dropdown>.dropdown-toggle.show::after {
    transform: rotate(-180deg);
}

.header-user .dropdown-toggle::after {
    display: none;
    content: unset;
}

.profile img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex: 0 0 auto;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-size: 20px;
    box-shadow: none;
    border-radius: 50%;
    outline: 0;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.dropdown-menu {
    margin: 0;
    top: calc(100% + 10px) !important;
    min-width: 130px;
    overflow: hidden;
    padding: 24px;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 12px 33px 0 rgba(27, 32, 40, 0.05);
    transform: translate3d(0, 0, 0) !important;
    border: 1px solid var(--border-color);
}

.dropdown-menu .dropdown-item {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 0;
    padding-bottom: 15px;
    background-color: transparent;
    text-transform: capitalize;
    transition: color 0.3s ease;
    cursor: pointer;
    border-bottom: 0;

    &:hover {
        color: var(--primary-color);
    }
}

.dropdown-menu li:last-child .dropdown-item {
    padding-bottom: 0;
}

.header-user .dropdown-menu li:last-child .dropdown-item {
    padding-top: 15px;
    padding-bottom: 0;
    border-top: 1px solid var(--border-color);
}

/* ==============================
    HEADER Section End
==============================  */


/* ==============================
    Hero Section Start
==============================  */
.hero-section {
    position: relative;
    overflow: clip;
    padding-block: 180px 80px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -435px;
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    transform: rotate(180deg);
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -435px;
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    transform: rotate(180deg);
}

.hero-section>* {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: "Funnel Display", sans-serif;
    font-size: 100px;
    font-weight: 700;
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-section .circle-svg {
    width: 100%;
    aspect-ratio: 1 / 1;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.hero-section .text-item {
    font-size: 5px;
    font-weight: 400;
    fill: var(--white-color);
    position: relative;
}

.hero-section .text-item::before {
    content: "";
    width: 1px;
    height: 20px;
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.hero-section .circular-line {
    stroke: var(--white-color);
    stroke-width: .2;
    fill: none;
}

.hero-section .overlay {
    position: relative;
    margin-top: -60%;
    width: 100%;
    background: linear-gradient(to Bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 1) 100%);
}

/* ==============================
    Hero Section End
==============================  */

/* ==============================
    Trademark Section Start
==============================  */
.marquee-wrap {
    padding: 40px;
    border-radius: 120px;
    box-shadow: 0 12px 33px rgba(0, 0, 0, 0.07);
    background-color: var(--white-color);
}

.marquee-container {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--white-color);
    position: relative;
}

.marquee-mask-left,
.marquee-mask-right {
    height: 100%;
    width: 10%;
    position: absolute;
    top: 0;
    z-index: 2;
}

.marquee-mask-left {
    left: 0;
    background: linear-gradient(90deg, var(--white-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-mask-right {
    right: 0;
    background: linear-gradient(270deg, var(--white-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
}

.logos-slide {
    flex-shrink: 0;
    display: flex;
    padding: 0px 10px;
    width: fit-content;
    gap: 20px;
    animation: 45s slide infinite linear;
}

.logo-wrapper {
    width: auto;
    height: 50px;
    flex-shrink: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ==============================
    Trademark Section End
==============================  */

/* ==============================
    Service Section Start
==============================  */
.service-section {
    background-color: var(--light-color);
}

.service-section .wrapper {
    height: 100%;
    border-radius: 20px;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.service-section .inverted-radius {
    width: 99px;
    height: 89px;
    padding: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: var(--light-color);
    border-radius: 0 0 20px 0;
}

.service-section .inverted-radius:after,
.service-section .inverted-radius:before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
}

.service-section .inverted-radius:after {
    background: transparent;
    left: 0;
    bottom: -20px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 4px var(--light-color);
}

.service-section .inverted-radius:before {
    background: transparent;
    top: 0;
    right: -20px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 4px var(--light-color);
}

.service-section .wrapper .icon-wrapper {
    width: 87px;
    height: 77px;
    border-radius: 20px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .service-section .wrapper img {
    width: 410px;
    height: auto;
    height: 450px;
    object-fit: cover;
    object-position: center;
} */

.service-section .figure {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 0;
}

.service-section .figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(40, 64, 154, 0) 0%, var(--primary-color) 100%);
    transition: transform 0.3s ease;
}

.service-section .figure .figure-caption {
    align-self: end;
    padding: 30px;
    inset: 0;
    position: absolute;
}

.service-section .figure .figure-caption .title a {
    font-family: "Funnel Display", sans-serif;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 8px;
}

.service-section .figure .figure-caption .detail {
    font-size: 16px;
    color: var(--light-color);
    font-weight: 400;
}


/* Second card */
.service-section .second-card {
    padding: 12px 30px 30px 30px;
    height: 100%;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.service-section .second-card .title {
    font-family: "Funnel Display", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-left: 80px;
    margin-bottom: 40px;
}

.service-section .second-card .img-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-section .second-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-section .second-card .detail {
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1.8;
}



.serviceSlider .figure,
.serviceSlider .second-card {
    display: none;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.serviceSlider .swiper-slide-active .figure {
    display: block;
}

.serviceSlider .swiper-slide-prev .second-card,
.serviceSlider .swiper-slide-next .second-card {
    display: block;
}


.service-section .swiper-slide {
    width: 450px;
    height: 450px;
}

.service-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service-section.col .figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 1) 100%);
}

.service-section.col .figure:hover::before {
    background: linear-gradient(to bottom, rgba(39, 63, 153, 0) 0%, rgba(39, 63, 153, 1) 100%);
}

.service-section.col .figure img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.milestone-section .inverted-radius {
    width: 114px;
    height: 70px;
    padding: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: var(--white-color);
    border-radius: 0 0 30px 0;
}

.milestone-section .inverted-radius:after,
.milestone-section .inverted-radius:before {
    width: 1rem;
    height: 1rem;
    content: "";
    position: absolute;
}

.milestone-section .inverted-radius:after {
    background: transparent;
    left: 0;
    bottom: -16px;
    border-top-left-radius: 30px;
    box-shadow: -5px -5px var(--white-color);
}

.milestone-section .inverted-radius:before {
    background: transparent;
    top: 0;
    right: -16px;
    border-top-left-radius: 30px;
    box-shadow: -5px -5px var(--white-color);
}

.service-section.col .wrapper .icon-link {
    font-size: 30px;
    color: var(--white-color);
    width: 87px;
    height: 77px;
    border-radius: 20px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10; */
}

.service-section.col .wrapper .icon-link i {
    transform: rotate(-45deg);
}

/* ==============================
    Service Section End
==============================  */

/* ==============================
    Step Section Start
==============================  */
.step-section .step-cards-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.step-section .card {
    width: 29%;
    padding: 50px 30px 30px;
    border: 0.5px solid var(--border-color);
    border-radius: 30px;
    border-top-right-radius: 16px;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 0;
    /* overflow: hidden; */
    box-shadow: 0 6px 7px rgba(27, 32, 40, 0.07);
}

.step-section .card .inverted-radius {
    width: 57px;
    height: 57px;
    padding: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    background: var(--white-color);
    border-radius: 0 0 0 20px;
}

.step-section .card .inverted-radius:after,
.step-section .card .inverted-radius:before {
    width: 1rem;
    height: 1rem;
    content: "";
    position: absolute;
}

.step-section .card .inverted-radius:after {
    background: transparent;
    right: 0;
    bottom: -16px;
    border-top-right-radius: 20px;
    box-shadow: 5px -5px 0 5px var(--white-color);
}

.step-section .card .inverted-radius:before {
    background: transparent;
    top: 0;
    right: 57px;
    border-top-right-radius: 20px;
    box-shadow: 5px -5px 0 5px var(--white-color);
}

.step-section .card .step-no {
    font-size: 20px;
    color: var(--white-color);
    width: 45px;
    height: 45px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-section .card.active .step-no {
    left: unset;
    right: 10px;
    transform: none;
}

.step-section .card.active {
    width: 42%;
    background: var(--dark-gradient);
}

.step-section .card .title {
    font-family: "Funnel Display", sans-serif;
    font-size: 46px;
    font-weight: 400;
    display: flex;
    align-items: center;
    flex: 1;
}

.step-section .card.active .title {
    color: var(--white-color);
}

.step-section .card .video-wrapper {
    display: none;
}

.step-section .card.active .video-wrapper {
    display: block;
}

.step-section .card .video-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.step-section .card .video-wrapper img,
.step-section .card .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-section .card .description {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.step-section .card.active .description {
    padding-top: 0;
    border-top: 0;
}

.step-section .card .description p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(85, 85, 85, 1);
}

.step-section .card.active .description p {
    color: var(--white-color);
}

/* ==============================
    Step Section End
==============================  */

/* ==============================
    Why Choose Section Start
==============================  */
/* .why-choose-section.radial-bg {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

.why-choose-section.radial-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.why-choose-section.radial-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.why-choose-section.radial-bg>* {
    position: relative;
    z-index: 2;
} */

.why-choose-section {
    background-color: var(--light-color);
}

.why-choose-section .wrap {
    padding: 40px;
    background-color: var(--white-color);
    border: 0.5px solid var(--border-color);
    border-radius: 30px;
    /* box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05); */
    position: relative;
    /* overflow: hidden; */
}

.why-choose-section .wrap .inverted-radius {
    width: 217px;
    height: 114px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 10;
    background: var(--light-color);
    border-radius: 30px 0 0 0;
    border-top: 0.5px solid var(--border-color);
    border-left: 0.5px solid var(--border-color);
}

.why-choose-section .wrap .inverted-radius:after,
.why-choose-section .wrap .inverted-radius:before {
    width: 30px;
    height: 30px;
    content: "";
    position: absolute;
}

.why-choose-section .wrap .inverted-radius:after {
    background: transparent;
    left: -30px;
    bottom: 0;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 8px 0 4px var(--light-color);
    border-right: 0.5px solid var(--border-color);
    border-bottom: 0.5px solid var(--border-color);
}

.why-choose-section .wrap .inverted-radius:before {
    background: transparent;
    top: -30px;
    right: 0;
    border-bottom-right-radius: 30px;
    box-shadow: 5px 8px 0 4px var(--light-color);
    border-right: 0.5px solid var(--border-color);
    border-bottom: 0.5px solid var(--border-color);
}

.why-choose-section .why-choose-image {
    position: relative;
    overflow: hidden;
}

.why-choose-section .why-choose-image video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-section .content .title {
    font-family: "Funnel Display", sans-serif;
    font-weight: 400;
    color: var(--dark-color);
    margin-bottom: 0;
    max-width: 17ch;
}

.why-choose-section .content .text {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-color);
}

.why-choose-section .why-choose-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.why-choose-section .why-choose-stat p {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
    max-width: 12ch;
}

.why-choose-section .choose-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 12px;
}

.why-choose-section .choose-tag {
    font-family: "Funnel Display", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    background-color: rgba(245, 245, 245, 1);
    padding: 16px 20px;
}

/* ==============================
    Why Choose Section End
==============================  */

/* ==============================
    Portfolio Section Start
==============================  */
.portfolio-section .wrapper {
    border-radius: 30px;
    position: relative;
    /* overflow: hidden; */
}

.portfolio-section .wrapper-1 {
    z-index: 10;
}

.portfolio-section .wrapper-1 .inverted-radius {
    width: 130px;
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--white-color);
    border-radius: 0 0 0 30px;
}

.portfolio-section .wrapper-1 .inverted-radius:after,
.portfolio-section .wrapper-1 .inverted-radius:before {
    width: 30px;
    height: 30px;
    content: "";
    position: absolute;
}

.portfolio-section .wrapper-1 .inverted-radius:after {
    background: transparent;
    left: -30px;
    top: 0;
    border-top-right-radius: 30px;
    box-shadow: 9px -4px 0 4px var(--white-color);
}

.portfolio-section .wrapper-1 .inverted-radius:before {
    background: transparent;
    bottom: -30px;
    right: 0;
    border-top-right-radius: 30px;
    box-shadow: 9px -4px 0 4px var(--white-color);
}

.portfolio-section .wrapper img {
    width: 100%;
    height: auto;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.portfolio-section .wrapper-2 img {
    height: 410px;
}

.portfolio-section .wrapper-3 {
    margin-top: -40px;
}

.portfolio-section .wrapper-3 .inverted-radius {
    width: 220px;
    height: 46px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 0 0 30px 0;
}

.portfolio-section .wrapper-3 .inverted-radius:after,
.portfolio-section .wrapper-3 .inverted-radius:before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
}

.portfolio-section .wrapper-3 .inverted-radius:after {
    background: transparent;
    right: -20px;
    top: 0;
    border-top-left-radius: 20px;
    box-shadow: -5px -4px 0 4px var(--white-color);
}

.portfolio-section .wrapper-3 .inverted-radius:before {
    background: transparent;
    bottom: -20px;
    left: 0;
    border-top-left-radius: 20px;
    box-shadow: -5px -4px 0 4px var(--white-color);
}

.portfolio-section .figure {
    width: 100%;
    position: relative;
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
}

.portfolio-section .figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.3s ease;
    border-radius: 30px;
}

.portfolio-section .figure .figure-caption {
    align-self: end;
    padding: 30px;
    inset: 0;
    position: absolute;
}

.portfolio-section .figure .figure-caption .category {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-section .figure .figure-caption h1 {
    margin-bottom: 0;
}

.portfolio-section .figure .figure-caption h1 a {
    font-family: "Funnel Display", sans-serif;
    font-size: 46px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 0;
    max-width: 17ch;
    display: block;
}

.portfolio-section .portfolio-service .section-heading {
    background: var(--dark-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-section .portfolio-service p {
    font-size: 20px;
    color: var(--dark-color);
    max-width: 17ch;
}

/* ==============================
    Portfolio Section End
==============================  */

/* ==============================
    Testimonial Section Start
==============================  */
.testimonial-section {
    background-color: var(--light-color);
}

.testimonial-section .card {
    height: 100%;
    padding: 50px 30px 30px;
    border: 0.5px solid var(--border-color);
    border-radius: 30px;
    border: 0;
    background-color: var(--white-color);
    position: relative;
    /* overflow: hidden; */
    transition: all 0.3s ease;
}

.testimonial-section .card .author-profile {
    width: 57px;
    height: 57px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 20px;
}

.testimonial-section .card .author-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-section .card .feedback {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.testimonial-section .card .author-name {
    font-family: "Funnel Display", sans-serif;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
}

.testimonial-section .card .inverted-radius {
    width: 140px;
    height: 48px;
    padding: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--light-color);
    border-radius: 0 0 30px 0;
}

.testimonial-section .card .inverted-radius:after,
.testimonial-section .card .inverted-radius:before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
}

.testimonial-section .card .inverted-radius:after {
    background: transparent;
    left: 0;
    bottom: -20px;  
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 5px var(--light-color);
}

.testimonial-section .card .inverted-radius:before {
    background: transparent;
    top: 0;
    right: -20px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 5px var(--light-color);
}

/* .testimonial-section .card:hover,
.testimonial-section .card:hover .inverted-radius,
.testimonial-section .card:hover .inverted-radius:before,
.testimonial-section .card:hover .inverted-radius:after {
    border-color: transparent;
} */

.testimonial-section .card .rating {
    /* position: absolute;
    top: 13px;
    left: 15px; */
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-section .card .rating i {
    font-size: 16px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* .testimonial-section .card:hover .rating i {
    color: var(--white-color);
} */

.testimonial-section .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 30px;
}

.testimonial-section .card:hover::before {
    opacity: 1;
}

.testimonial-section .card>* {
    position: relative;
    z-index: 1;
}

.testimonial-section .card:hover .feedback,
.testimonial-section .card:hover .author-name {
    color: var(--white-color);
}

.testimonial-section.single .card .title {
    font-weight: 600;
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    transition: -webkit-text-fill-color 0.3s ease, color 0.3s ease;
}

.testimonial-section.single .card:hover .title {
    -webkit-text-fill-color: var(--white-color);
}

.testimonial-section.single .card .subtitle {
    transition: color 0.3s ease;
}

.testimonial-section.single .card:hover .subtitle {
    color: var(--white-color);
}

/* ==============================
    Testimonial Section End
==============================  */

/* ==============================
    Blog Section Start
==============================  */
.blog-section {
    background-color: var(--white-color);
}

.blog-section.light {
    background-color: var(--light-color);
}

.blog-section .card {
    border: 0;
    padding: 0;
    background-color: var(--white-color);
    height: 100%;
}

.blog-section.light .card {
    border: 0;
    padding: 0;
    background-color: transparent;
    height: 100%;
}

.blog-section .card .img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 20px;
    position: relative;
}

.blog-section .card .img-wrapper .inverted-radius {
    width: 5rem;
    height: 5rem;
    padding: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 0 0 30px 0;
}

.blog-section .card .img-wrapper .inverted-radius:after,
.blog-section .card .img-wrapper .inverted-radius:before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
}

.blog-section .card .img-wrapper .inverted-radius:after {
    background: transparent;
    left: 0;
    bottom: -20px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 5px var(--white-color);
}

.blog-section .card .img-wrapper .inverted-radius:before {
    background: transparent;
    top: 0;
    right: -20px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 5px var(--white-color);
}

.blog-section.light .card .img-wrapper .inverted-radius {
    background-color: var(--light-color);
}

.blog-section.light .card .img-wrapper .inverted-radius:after,
.blog-section.light .card .img-wrapper .inverted-radius:before {
     box-shadow: -5px -5px var(--light-color);
}

.blog-section .card .img-wrapper .link {
    font-size: 30px;
    color: var(--white-color);
    width: 84px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-section .card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section .card h4 {
    font-family: "Funnel Display", sans-serif;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.blog-section .card p {
    font-family: "Funnel Display", sans-serif;
    font-size: 20px;
    color: var(--gray-color);
}

.blog-section .author-site {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.blog-section .author-site img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white-color);
}

.blog-section .author-site .site-address {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
}

.blog-section .author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.blog-section .author-info img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white-color);
}

.blog-section .author-info .name-role {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
}

.blog-section .nav-pills {
    gap: 15px;
}

.blog-section .nav-pills .nav-link {
    font-family: "Funnel Display", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 16px 24px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.blog-section .nav-pills .nav-link.active {
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
}

/* Navigation Button */
.blog-section .navigations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-section .navigations button {
    font-size: 20px;
    color: var(--gray-color);
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.blog-section .navigations button::before {
    content: "";
    inset: 0;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.blog-section .navigations button:hover::before {
    opacity: 1;
}

.blog-section .navigations button:hover {
    color: var(--white-color);
    border-color: transparent;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    font-size: 20px;
    color: var(--gray-color);
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    border-radius: 50%;
    border: 0.5px solid var(--border-color);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 0.5px solid transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* ==============================
    Blog Section End
==============================  */

/* ==============================
    Reach us Section Start
==============================  */
.reachus-section .heading-wrap {
    background-color: var(--light-color);
}

.reachus-section .gradient-wrap {
    background: linear-gradient(to bottom, var(--secondary-color) 42%, var(--primary-color) 100%);
}

.reachus-section .reach-banner {
    width: 100%;
    height: 270px;
    border-radius: 135px;
    position: relative;
    overflow: hidden;
}

.reachus-section .reach-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reachus-section .reach-banner::before {
    content: "";
    width: 20px;
    height: 100%;
    background-color: var(--secondary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.solution-wrap {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.solution-wrap h2 {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-wrap h2.dark {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    background: var(--dark-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-wrap h2.dark a {
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: underline !important;
}

.solution-wrap p {
    color: var(--gray-color);
}

/* ==============================
    Reach us Section End
==============================  */

/* ==============================
    Footer Section Start
==============================  */
.custom-footer {
    background: var(--dark-gradient);
    /*padding-block: 60px;*/
}

.footer-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon a {
    border: 1px solid #E2E9FF26;
    border-radius: 50%;
    text-decoration: none;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-icon a i {
    font-size: 15px;
    color: var(--white-color);
}

.footer-icon a:hover {
    border: none;
}

.footer-icon a::before {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease;
}

.footer-icon a:hover::before {
    opacity: 1;
}

.brand-description {
    color: var(--white-color);
    opacity: 0.8;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 25px !important;
    line-height: 1.7;
    max-width: 350px;
}

.custom-footer h4 {
    font-family: "Funnel Display", sans-serif;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.nav-links {
    list-style: none;
    padding-left: 0;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    font-weight: 600;
    color: var(--white-color);
    padding-left: 10px;
}

.office-timing {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.office-timing .office-item {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: var(--white-color);
}

.recent-post-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #FFFFFF1A;
}

.recent-post-wrapper:last-child .recent-post {
    border-bottom: 0;
    padding-bottom: 0;
}

.recent-post .img-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post h6 {
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 0;
}

.recent-post i {
    color: rgba(194, 193, 255, 1);
}

.recent-post p {
    color: var(--white-color);
}

.footer-bottom .bt {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    color: var(--white-color);
    font-size: 1rem;
    padding-block: 24px;
}

/* ==============================
    Footer Section End
==============================  */

/* ==============================
    Breadcrumb Section Start
==============================  */
.breadcrumb-section {
    position: relative;
}

.breadcrumb-section .breadcrumb-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-section .content {
    position: relative;
    z-index: 1;
}

.breadcrumb-section .content h1 {
    font-family: "Funnel Display", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}

.breadcrumb-section .content .shadow-text {
    font-family: "Funnel Display", sans-serif;
    font-size: 88px;
    font-weight: 700;
    color: transparent;
    margin-bottom: -60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 85%);
    /* background-size: 200% 200%; */
    -webkit-background-clip: text;
    -webkit-text-stroke: 1.5px #ffffff6e;
}

.breadcrumb-section .breadcrumb-btn {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

/* ==============================
    Breadcrumb Section End
==============================  */

/* ==============================
    About Section Start
==============================  */
.about-section .about-media-wrap {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.about-section .about-media-wrap img,
.about-section .about-media-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-list {
    margin: 0 0 20px;
}

.about-list li {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-list li:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.about-list li:nth-child(3) {
    margin-left: auto;
    width: fit-content;
}

/* ==============================
    About Section End
==============================  */

/* ==============================
    Our Story Section Start
==============================  */
.our-story-section {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

.our-story-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.our-story-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.our-story-section>* {
    position: relative;
    z-index: 2;
}


.our-story-section .subtitle {
    color: var(--dark-color);
}

/* ==============================
    Our Story Section End
==============================  */

/* ==============================
    Counter Section Start
==============================  */
.counter-section .card {
    max-width: 250px;
    height: 100%;
    color: var(--white-color);
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
}

.counter-section .card h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 0;
}

.counter-section .card p {
    font-size: 20px;
    font-weight: 400;
    color: var(--dark-color);
}

/* ==============================
    Counter Section End
==============================  */

/* ==============================
    Milestone Section Start
==============================  */
.milestone-section .figure {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.milestone-section .figure img,
.milestone-section .figure video {
    width: 100%;
    height: auto;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.milestone-section .figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    transition: transform 0.3s ease;
}

.milestone-section .figure .figure-caption {
    align-self: end;
    padding: 24px;
    inset: 0;
    position: absolute;
}

.milestone-section .figure .figure-caption .detail {
    font-size: 16px;
    color: var(--white-color);
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
}

.milestone-section .inverted-radius {
    width: 114px;
    height: 70px;
    padding: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: var(--white-color);
    border-radius: 0 0 30px 0;
}

.milestone-section .inverted-radius:after,
.milestone-section .inverted-radius:before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
}

.milestone-section .inverted-radius:after {
    background: transparent;
    left: 0;
    bottom: -20px;
    border-top-left-radius: 2cap;
    box-shadow: -5px -5px 0 5px var(--white-color);
}

.milestone-section .inverted-radius:before {
    background: transparent;
    top: 0;
    right: -20px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px 0 5px var(--white-color);
}

.milestone-section .badge-year {
    font-size: 22px;
    color: var(--white-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 16px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1; */
}

.milestoneSlider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.milestone-section .swiper-slide {
    padding-top: 100px;
}

.milestone-section .dashed-line {
    width: 100%;
    height: 2px;
    border-top: 2px dashed var(--secondary-color);
    position: absolute;
    top: 33px;
}



.milestone-section .tracking-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    margin-top: 0;
}

.milestone-section .tracking-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(to bottom,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-section .tracking-circle .inner-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white-color);
}

/* ==============================
    Milestone Section End
==============================  */

/* ==============================
    Our Team Section Start
==============================  */
.our-team-section .card {
    background-color: var(--white-color);
    border-radius: 0;
    border: 0;
    height: 100%;
}

.our-team-section .card .img-wrapper {
    width: 100%;
    aspect-ratio: 9/10;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.our-team-section .card .img-wrapper::before {
    content: "";
    width: 90%;
    aspect-ratio: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
}

.our-team-section .card .img-wrapper>* {
    position: relative;
    z-index: 3;
}

.our-team-section .card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team-section .card .name {
    font-family: "Funnel Display", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.our-team-section .card .post {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-color);
}

/* ==============================
    Our Team Section End
==============================  */

/* ==============================
    Faq Tabs Section Start
==============================  */
.faq-tabs-section {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

.faq-tabs-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.faq-tabs-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.faq-tabs-section>* {
    position: relative;
    z-index: 2;
}


.faq-tabs-section .nav-link {
    text-align: left;
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 27px;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.faq-tabs-section .nav-link .nav-header {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
}

.faq-tabs-section .nav-link .nav-header .arrow-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-tabs-section .nav-link .nav-header .arrow-wrap i {
    font-size: 24px;
    color: var(--primary-color);
    transform: rotate(-45deg);
}

.faq-tabs-section .nav-link .nav-header h4 {
    color: var(--dark-color);
    margin-bottom: 0;
}

.faq-tabs-section .nav-link .des {
    font-size: 16px;
    color: var(--gray-color);
}

/* Active nav-link */
.faq-tabs-section .nav-link.active {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.faq-tabs-section .nav-link.active .nav-header .arrow-wrap {
    background-color: rgba(255, 255, 255, 0.3);
}

.faq-tabs-section .nav-link.active .nav-header .arrow-wrap i {
    color: var(--white-color);
}

.faq-tabs-section .nav-link.active .nav-header h4 {
    color: var(--white-color);
}

.faq-tabs-section .nav-link.active .des {
    color: var(--white-color);
}

.faq-tabs-section .wrap {
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 27px;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.faq-tabs-section .wrap .question {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.faq-tabs-section .wrap .question .arrow-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-tabs-section .wrap .question .arrow-wrap i {
    font-size: 24px;
    color: var(--primary-color);
    transform: rotate(-45deg);
}

.faq-tabs-section .wrap .question h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.faq-tabs-section .wrap .question .des {
    font-size: 16px;
    color: var(--gray-color);
}


.faq-tabs-section .accordion-item {
    border: none;
    background-color: transparent;
    overflow: hidden;
    border-radius: 0;
}

.faq-tabs-section .accordion-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.faq-tabs-section .accordion-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-tabs-section .accordion-button {
    font-family: "Funnel Display", sans-serif;
    font-size: 24px;
    font-weight: 500;
    background-color: transparent;
    border: 0;
    padding: 30px 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 10px;
}

.faq-tabs-section .accordion-button:not(.collapsed) {
    color: var(--dark-color);
    box-shadow: none;
    background-color: var(--white-color);
}

.faq-tabs-section .accordion-body {
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding: 0 5px;
    padding-bottom: 30px;
}

.faq-tabs-section .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.faq-tabs-section .accordion-item:last-child .accordion-button.collapsed {
    padding-bottom: 0;
}

.faq-tabs-section .accordion-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
}

.faq-tabs-section .accordion-button::after {
    margin-left: auto;
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    background-image: none;
    transition: all 0.3s ease;
    transform: none;
    color: var(--primary-color);
}

.faq-tabs-section .accordion-button:not(.collapsed)::after {
    margin-left: auto;
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    background-image: none;
    transition: all 0.3s ease;
    transform: rotate(90deg);
    color: var(--primary-color);
}

/* ==============================
    Faq Tabs Section End
==============================  */

/* ==============================
    Contact Section Start
==============================  */
.contact-section {
    background-color: var(--light-color);
}

.contact-section.radial-bg {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

.contact-section.radial-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.contact-section.radial-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.contact-section.radial-bg>* {
    position: relative;
    z-index: 2;
}



.contact-section .form-wrap {
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 27px;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-control::placeholder {
    color: var(--gray-color);
}

.form-control:focus,
.form-select:focus {
    color: var(--gray-color);
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    box-shadow: none;
}

.form-select {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    padding: 16px 26px;
    border-radius: 99px;
    border: 1px solid var(--border-color);
    background-color: var(--light-color);
}

.form-control {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-color);
    padding: 16px 26px;
    border-radius: 99px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
}

textarea.form-control {
    border-radius: 20px;
}

.contact-section .contact-service-card {
    height: 100%;
    padding: 24px;
    background-color: var(--white-color);
    border-radius: 27px;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.contact-section .contact-service-card .contact-image {
    overflow: hidden;
}

.contact-section .contact-service-card .contact-image video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-section .contact-service-card .title {
    font-family: "Funnel Display", sans-serif;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section .contact-service-card .des {
    font-size: 20px;
    color: var(--gray-color);
    position: relative;
    margin-left: 60px;
}

.contact-section .contact-service-card .des::before {
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    top: 10px;
    left: -60px;
}

.contact-section .contact-details {
    margin-top: 30px;
}

.contact-section .contact-details .contact-item {
    margin-bottom: 20px;
}

.contact-section .contact-details .contact-item .title {
    font-family: "Funnel Display", sans-serif;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.contact-section .contact-details .contact-item .text {
    font-size: 20px;
    color: var(--dark-color);
}

.contact-section .contact-details .social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-section .contact-details .social-links .social-link {
    font-size: 15px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.contact-section .contact-details .social-links .social-link i {
    position: relative;
    z-index: 1;
}

.contact-section .contact-details .social-links .social-link:hover {
    color: var(--white-color);
}

.contact-section .contact-details .social-links .social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-section .contact-details .social-links .social-link:hover::before {
    opacity: 1;
}


.contactServiceSlider .swiper-pagination {
    position: static;
    margin-top: 15px;
}

.contactServiceSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
}

.contactServiceSlider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.contactServiceSlider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}

/* ==============================
    Contact Section End
==============================  */

.service-overview-media {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
}

.service-overview-media img,
.service-overview-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================
    Feature Section Start
==============================  */
.feature-section {
    background-color: var(--light-color);
}

.feature-section .card {
    height: 100%;
    padding: 30px;
    background-color: var(--white-color);
    box-shadow: 0px 12px 33px rgba(27, 32, 40, 0.05);
    border-radius: 20px;
    border: 0;
}

.feature-section .card .arrow-wrapper {
    font-size: 28px;
    color: var(--primary-color);
    width: 53px;
    height: 53px;
    background-color: rgba(242, 244, 255, 1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-section .card .arrow-wrapper i {
    /* background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text; */
    transform: rotate(-45deg);
}

.feature-section .card .title {
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-section .card .des {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
}

/* ==============================
    Feature Section End
==============================  */

/* ==============================
    Portfolio Project Section Start
==============================  */
.portfolio-projects {
    background-color: var(--light-color);
}

.portfolio-projects .nav-pills {
    gap: 15px;
}

.portfolio-projects .nav-pills .nav-link {
    font-family: "Funnel Display", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 16px 24px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.portfolio-projects .nav-pills .nav-link.active {
    color: var(--white-color);
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
}


.portfolio-projects .card-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.portfolio-projects .card {
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 20px;
    border: 0;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-projects .card::before {
    content: "";
    inset: 0;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.portfolio-projects .card:hover::before {
    opacity: 1;
}

.portfolio-projects .card .category {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.portfolio-projects .card .title {
    font-family: "Funnel Display", sans-serif;
    font-size: 45px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.portfolio-projects .card .des {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.portfolio-projects .card .tags-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 6px;
    margin-top: 20px;
}

.portfolio-projects .card .tags-wrap .tag {
    font-family: "Funnel Display", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 6px 12px;
    background-color: rgba(245, 245, 245, 1);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    transition: all 0.3s ease;
}

.portfolio-projects .card .portfolio-banner {
    width: 100%;
    min-height: 100%;
    height: 280px;
    border-radius: 20px;
    border-top-right-radius: 16px;
    position: relative;
    overflow: hidden;
}

.portfolio-projects .card .portfolio-banner img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.portfolio-projects .card .inverted-radius {
    width: 89px;
    height: 89px;
    padding: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--white-color);
    border-radius: 0 0 0 20px;
}

.portfolio-projects .card .inverted-radius:after,
.portfolio-projects .card .inverted-radius:before {
    width: 1rem;
    height: 1rem;
    content: "";
    position: absolute;
}

.portfolio-projects .card .inverted-radius:after {
    background: transparent;
    right: 0;
    bottom: -16px;
    border-top-right-radius: 20px;
    box-shadow: 5px -5px 0 5px var(--white-color);
}

.portfolio-projects .card .inverted-radius:before {
    background: transparent;
    top: 0;
    right: 89px;
    border-top-right-radius: 20px;
    box-shadow: 5px -5px 0 5px var(--white-color);
}

.portfolio-projects .card:hover .inverted-radius {
    background: rgb(42 65 153);
}

.portfolio-projects .card:hover .inverted-radius:after,
.portfolio-projects .card:hover .inverted-radius:before {
    box-shadow: 5px -5px 0 5px rgb(42 65 153);
}

.portfolio-projects .card .arrow-wrap {
    font-size: 26px;
    color: var(--white-color);
    width: 77px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-projects .card .arrow-wrap i {
    transform: rotate(-45deg);
}

.portfolio-projects .card .arrow-wrap::before {
    content: "";
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.portfolio-projects .card:hover .arrow-wrap::before {
    opacity: 1;
}

.portfolio-projects .card:hover .category,
.portfolio-projects .card:hover .title,
.portfolio-projects .card:hover .des {
    color: var(--white-color);
}

.portfolio-projects .card:hover .tags-wrap .tag {
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: transparent;
}

/* Navigation Button */
.portfolio-projects .navigations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.portfolio-projects .navigations button {
    font-size: 20px;
    color: var(--gray-color);
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.portfolio-projects .navigations button::before {
    content: "";
    inset: 0;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.portfolio-projects .navigations button:hover::before {
    opacity: 1;
}


.portfolio-projects .navigations button:hover {
    color: var(--white-color);
    border-color: transparent;
}

/* ==============================
    Portfolio Project Section End
==============================  */

/* ==============================
    project-discussion Section Start
==============================  */
.project-discussion {
    background-color: var(--white-color);
}

.discussion-wrap {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.discussion-wrap h2 {
    color: var(--white-color);
    font-weight: 700;
}

.discussion-wrap p {
    color: var(--white-color);
}

.white-btn {
    font-family: "Funnel Display", sans-serif;
    display: inline-block;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 99px;
    border: none;
    box-shadow: -9px 11px 38px 0px rgba(34, 58, 148, 0.2);
    transition: all .3s ease;
}

.white-btn:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

/* ==============================
    project-discussion Section End
==============================  */

/* ==============================
    project-overview Section Start
==============================  */
.project-overview .project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    margin-block: 20px;
}

.project-overview .project-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-overview .project-meta .meta-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.project-overview .tags-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 6px;
    margin-top: 20px;
}

.project-overview .tags-wrap .tag {
    font-family: "Funnel Display", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 6px 12px;
    background-color: rgba(245, 245, 245, 1);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    transition: all 0.3s ease;
}

.project-overview .project-overview-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 30px;
    overflow: hidden;
}

.project-overview .project-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================
    project-overview Section End
==============================  */

/* ==============================
    project-description Section Start
==============================  */
.project-description .subtitle {
    color: var(--gray-color);
}

.project-description .project-related-img {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    object-fit: cover;
}

.features h2 {
    font-weight: 700;
    background: linear-gradient(100deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.features .feature-list {
    margin-top: 20px;
}

.features .feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.features .feature-list .feature-item .check-icon {
    font-size: 13px;
    color: var(--white-color);
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .feature-list .feature-item p {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

/* ==============================
    project-description Section End
==============================  */

/* ==============================
    project-stack Section Start
==============================  */
.project-stack.light {
    background-color: var(--light-color);
}

.project-stack.light {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

.project-stack.light::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.project-stack.light::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.project-stack.light>* {
    position: relative;
    z-index: 2;
}


.project-stack {
    position: relative;
}

.project-stack>* {
    position: relative;
    z-index: 1;
}

.project-stack .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-stack .stack-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.project-stack .stack-wrapper .stack-logo {
    width: 120px;
    height: 120px;
    background-color: var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
}

.project-stack .stack-wrapper .stack-logo img {
    width: 60px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==============================
    project-stack Section End
==============================  */

.combine.radial-bg {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

.combine.radial-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.combine.radial-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.combine.radial-bg>* {
    position: relative;
    z-index: 2;
}

.media-wrapper {
    width: 100%;
    height: 545px;
    border-radius: 30px;
    overflow: hidden;
}

.media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==============================
    Position Section Start
==============================  */
.position-section {
    background-color: var(--light-color);
    position: relative;
    overflow: clip;
}

/* .position-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.position-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -435px;
    transform: translateY(-50%);
    width: 870px;
    height: 884px;
    border-radius: 50%;
    background: linear-gradient(14deg,
            rgba(97, 122, 210, 0.6) 0%,
            rgba(97, 122, 210, 0) 100%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.position-section>* {
    position: relative;
    z-index: 2;
} */


.position-section .card {
    height: 100%;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 20px;
    border: 0;
    box-shadow: 0px 12px 33px 0px rgba(27, 32, 40, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    /* overflow: hidden; */
    transition: all 0.3s ease;
}

.position-section .card:hover {
    /* box-shadow: 0px 12px 57px rgba(27, 32, 40, 0.25); */
    box-shadow: 10px 10px 15px rgba(27, 32, 40, 0.2);
}

.position-section .card .inverted-radius {
    width: 74px;
    height: 74px;
    padding: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(244 246 255);
    border-radius: 0 0 20px 0;
}

.position-section .card .inverted-radius:after,
.position-section .card .inverted-radius:before {
    width: 1rem;
    height: 1rem;
    content: "";
    position: absolute;
}

.position-section .card .inverted-radius:after {
    background: transparent;
    left: 0;
    bottom: -16px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px rgb(244 246 255);;
}

.position-section .card .inverted-radius:before {
    background: transparent;
    top: 0;
    right: -16px;
    border-top-left-radius: 20px;
    box-shadow: -5px -5px rgb(244 246 255);;
}

.position-section .card .arrow-link {
    font-size: 24px;
    color: var(--white-color);
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: absolute;
    top: 12px;
    left: 12px; */
}

.position-section .card .arrow-link i {
    transform: rotate(-45deg);
}

.position-section .card .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-left: 60px;
    /* margin-top: -45px; */
}

.position-section .card .publish-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.position-section .card .publish-date p {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-color);
}

.position-section .card .publish-date i {
    color: var(--primary-color);
}

.position-section .card .time-badge {
    font-size: 14px;
    font-weight: 400;
    color: var(--white-color);
    background: var(--dark-color);
    padding: 5px 12px;
    border-radius: 99px;

}

.position-section .card .title {
    font-family: "Funnel Display", sans-serif;
    font-weight: 600;
    color: var(--dark-color);

}

.position-section .card .des {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-color);
}

.position-section .card .job-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}

.position-section .card .job-location p {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
}

.position-section .card .job-location i {
    font-size: 22px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.position-section .card .tags-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 5px;
    margin-top: 20px;

}

.position-section .card .tags-wrap .tag {
    font-family: "Funnel Display", sans-serif;
    font-size: 14px;
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 99px;
    background-color: rgba(245, 245, 245, 1);
    border: 1px solid var(--border-color);
}

/* ==============================
    Position Section End
==============================  */


/* ==============================
    Faq Section Start
==============================  */
.faq-section .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .content h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0;
}

.faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.faq-section .accordion-item {
    border: none;
    background-color: transparent;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-family: "Funnel Display", sans-serif;
    font-size: 20px;
    font-weight: 600;
    border-radius: 99px !important;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 26px 28px;
    /* transition: all 0.3s ease; */
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 10px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--white-color);
    box-shadow: none;
    border-color: transparent;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 99px !important;
}

/* .faq-section .accordion-button > * {
    position: relative;
    z-index: 2;
}

.faq-section .accordion-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.faq-section .accordion-button:not(.collapsed)::before {
    opacity: 1;
} */

.faq-section .accordion-body {
    background-color: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    padding-top: 22px;
}

.faq-section .accordion-item p {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-color);
}

.accordion-button:not(.collapsed)::after {
    margin-left: auto;
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    background-image: none;
    transition: all 0.3s ease;
    transform: none;
}

.accordion-button::after {
    margin-left: auto;
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    background-image: none;
    transition: all 0.3s ease;
    transform: none;
}

.faq-section .accordion-body ul {
    margin-bottom: 0;
}

.faq-section .accordion-body p,
.faq-section .accordion-body ul li {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-color);
}

.faq-section .accordion-body p:not(:last-child) {
    margin-bottom: 10px !important;
}

/* ==============================
    Faq Section End
==============================  */


@media (max-width: 1399px) {


    .hero-section h1 {
        font-size: 70px;
    }

    .portfolio-section .wrapper-3 .inverted-radius {
        width: 190px;
        height: 46px;
    }
}

@media (max-width: 1199px) {

    .fs-100 {
        font-size: 80px;
    }

    .section-heading {
        font-size: 48px;
    }

    .section-title,
    .subtitle {
        font-size: 19px;
    }

    /* ==============================
        Header Section Start
    ==============================  */
    header .offcanvas-header,
    header .offcanvas-body {
        padding: 20px;
    }

    header .navbar-nav {
        gap: 0;
    }

    header .navbar-nav .nav-link {
        font-size: 16px;
        padding: 8px 0 !important;
    }

    .dropdown-menu {
        min-width: 120px;
        padding: 18px;
        border-radius: 14px;
    }

    .dropdown-toggle {
        font-size: 16px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 16px;
        padding-bottom: 12px;
    }

    .header-user.dropdown-menu li:last-child .dropdown-item {
        padding-top: 12px;
    }

    /* ==============================
        Header Section End
    ==============================  */
    .hero-section h1 {
        font-size: 60px;
    }

    /* ==============================
        Service Section Start
    ==============================  */
    .service-section .inverted-radius {
        width: 89px;
        height: 79px;
    }

    .service-section .wrapper .icon-wrapper {
        width: 77px;
        height: 67px;
    }

    .service-section.col .wrapper .icon-link {
        font-size: 28px;
        width: 77px;
        height: 67px;
    }

    /* ==============================
        Service Section End
    ==============================  */

    /* ==============================
        Step Section Start
    ==============================  */
    .steps-section .card {
        padding: 24px;
    }

    .step-section .card .title {
        font-size: 36px;
    }

    .step-section .card .description p {
        font-size: 15px;
    }

    /* ==============================
        Step Section End
    ==============================  */

    /* ==============================
        Why Choose Section Start
    ==============================  */
    .why-choose-section .wrap {
        padding: 30px;
    }

    .why-choose-section .wrap .inverted-radius{
        width: 200px;
        height: 100px;
    }

    .why-choose-section .content .text {
        font-size: 18px;
    }

    .why-choose-section .why-choose-stats {
        gap: 36px;
        margin-top: 36px;
    }

    /* ==============================
        Why Choose Section End
    ==============================  */

    /* ==============================
        Portfolio Section Start
    ==============================  */
    .portfolio-section .wrapper-3 .inverted-radius {
        width: 160px;
        height: 46px;
    }

    .portfolio-section .wrapper img {
        height: 400px;
    }

    .portfolio-section .wrapper-2 img {
        height: 360px;
    }

    .portfolio-section .figure .figure-caption .category {
        font-size: 18px;
    }

    .portfolio-section .figure .figure-caption h1 a {
        font-size: 38px;
    }

    .portfolio-section .portfolio-service p {
        font-size: 18px;
    }

    /* ==============================
        Portfolio Section End
    ==============================  */

    /* ==============================
        Blog Section Start
    ==============================  */
    .blog-section .card p {
        font-size: 19px;
    }

    /* ==============================
        Blog Section End
    ==============================  */

    /* ==============================
        Reach us Section Start
    ==============================  */
    .reachus-section .reach-banner {
        width: 100%;
        height: 240px;
    }

    .reachus-section .reach-banner::before {
        width: 18px;
    }

    .solution-wrap,
    .discussion-wrap {
        flex-wrap: wrap;
        border-radius: 40px;
    }

    /* ==============================
        Reach us Section End
    ==============================  */

    /* ==============================
        About Section Start
    ==============================  */
    .about-list li {
        font-size: 20px;
    }

    /* ==============================
        About Section End
    ==============================  */

    /* ==============================
        Counter Section Start
    ==============================  */
    .counter-section .card h1 {
        font-size: 48px;
    }

    .counter-section .card p {
        font-size: 19px;
    }

    /* ==============================
        Counter Section End
    ==============================  */

    /* ==============================
        Portfolio Project Section Start
    ==============================  */
    .portfolio-projects .card .title {
        font-size: 40px;
    }

    .portfolio-projects .card .inverted-radius {
        width: 77px;
        height: 77px;
    }

    .portfolio-projects .card .inverted-radius:before {
        right: 77px;
    }

    .portfolio-projects .card .arrow-wrap {
        font-size: 24px;
        width: 65px;
        height: 65px;
    }

    /* ==============================
        Portfolio Project Section End
    ==============================  */

    .media-wrapper {
        height: 480px;
    }

    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion {
        gap: 20px;
    }

    .faq-section .accordion-button {
        font-size: 18px;
        padding: 20px 24px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 19px;
    }

    /* ==============================
        Faq Section End
    ==============================  */
}

@media (max-width: 991px) {

    .py-120 {
        padding-block: 100px;
    }

    .py-100 {
        padding-block: 80px;
    }

    .py-80 {
        padding-block: 70px;
    }

    .py-60 {
        padding-block: 48px;
    }

    .py-40 {
        padding-block: 36px;
    }

    .theme-btn,
    .secondary-btn,
    .dark-btn,
    .white-btn {
        font-size: 18px;
        padding: 12px 26px;
    }

    .fs-100 {
        font-size: 64px;
    }

    .section-heading {
        font-size: 40px;
    }

    .section-title,
    .subtitle {
        font-size: 18px;
    }

    .form-label,
    .form-check .form-check-label,
    .form-control,
    .form-select,
    .forgot-password,
    .signup {
        font-size: 16px;
    }

    .footer-contact input,
    .form-control,
    .form-select {
        padding: 14px 22px;
    }

    .form-check input[type="checkbox"] {
        width: 21px;
        height: 21px;
    }

    .form-check input[type="checkbox"]::before {
        font-size: 12px;
    }

    .form-banner video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: unset;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    /* ==============================
        Hero Section Start
    ==============================  */
    .hero-section::before {
        content: unset;
    }

    .hero-section h1 {
        font-size: 45px;
    }

    /* ==============================
        Hero Section End
    ==============================  */

    /* ==============================
        Trademark Section Start
    ==============================  */
    .logos-slide {
        padding: 0px 7px;
        gap: 14px;
    }

    .logo-wrapper {
        height: 45px;
    }

    /* ==============================
        Trademark Section End
    ==============================  */

    /* ==============================
        Services Section Start
    ==============================  */
    .service-section .swiper-slide {
        width: 350px;
        height: 400px;
    }

    .service-section .inverted-radius {
        width: 82px;
        height: 72px;
    }

    .service-section .wrapper .icon-wrapper {
        width: 70px;
        height: 60px;
    }

    .service-section.col .figure img {
        height: 430px;
    }

    .service-section.col .wrapper .icon-link {
        font-size: 26px;
        width: 70px;
        height: 60px;
    }

    /* ==============================
        Services Section End
    ==============================  */

    /* ==============================
        Step Section Start
    ==============================  */
    .step-section .step-cards-wrapper {
        flex-wrap: wrap;
    }

    .step-section .card {
        width: 40%;
        min-height: 330px;
    }

    .step-section .card.active {
        width: 57%;
    }

    /* ==============================
        Step Section End
    ==============================  */

    /* ==============================
        Why Choose Section Start
    ==============================  */
    .why-choose-section .wrap .inverted-radius{
        width: 180px;
        height: 92px;
    }

    .why-choose-section .content .text {
        font-size: 17px;
    }

    .why-choose-section .why-choose-stats {
        gap: 30px;
        margin-top: 30px;
    }

    .why-choose-section .why-choose-stat p {
        font-size: 15px;
    }

    .why-choose-section .choose-tag {
        font-size: 16px;
        padding: 12px 16px;
    }

    /* ==============================
        Why Choose Section End
    ==============================  */

    /* ==============================
        Portfolio Section Start
    ==============================  */
    .portfolio-section .wrapper-3 {
        margin-top: unset;
    }

    .portfolio-section .wrapper img {
        height: 370px;
    }

    .portfolio-section .figure .figure-caption .category {
        font-size: 17px;
    }

    .portfolio-section .figure .figure-caption h1 a {
        font-size: 32px;
    }

    .portfolio-section .portfolio-service p {
        font-size: 17px;
    }

    /* ==============================
        Portfolio Section End
    ==============================  */

    /* ==============================
        Testimonial Section Start
    ==============================  */
    .testimonial-section.single .card .title {
        margin-top: 12px;
        margin-bottom: 20px;
    }
    /* ==============================
        Testimonial Section End
    ==============================  */

    /* ==============================
        Blog Section Start
    ==============================  */
    .blog-section .card .img-wrapper .inverted-radius {
        width: 87px;
        height: 72px;
    }

    .blog-section .card .img-wrapper .link {
        font-size: 28px;
        width: 75px;
        height: 60px;
    }

    .blog-section .card p {
        font-size: 18px;
    }

    .blog-section .nav-pills {
        gap: 12px;
    }

    .blog-section .nav-pills .nav-link {
        font-size: 17px;
        padding: 12px 20px;
    }

    .portfolio-projects .navigations {
        gap: 10px;
        margin-top: 24px;
    }

    .portfolio-projects .navigations button {
        font-size: 19px;
        width: 50px;
        height: 50px;
    }

    /* ==============================
        Blog Section End
    ==============================  */

    /* ==============================
        Reach us Section Start
    ==============================  */
    .reachus-section .reach-banner {
        width: 100%;
        height: 220px;
    }

    .reachus-section .reach-banner::before {
        width: 16px;
    }

    .solution-wrap,
    .discussion-wrap {
        padding: 30px;
        border-radius: 30px;
    }

    /* ==============================
        Reach us Section End
    ==============================  */

    /* ==============================
        Breadcrumb Section Start
    ==============================  */

    /* ==============================
        Breadcrumb Section End
    ==============================  */

    /* ==============================
        Counter Section Start
    ==============================  */
    .counter-section .card h1 {
        font-size: 40px;
    }

    .counter-section .card p {
        font-size: 18px;
    }

    /* ==============================
        Counter Section End
    ==============================  */

    /* ==============================
        Milestone Section Start
    ==============================  */
    .milestone-section .figure .figure-caption .detail {
        font-size: 15px;
        line-height: 1.7;
    }

    .milestone-section .inverted-radius {
        width: 101px;
        height: 62px;
    }

    .milestone-section .badge-year {
        font-size: 20px;
        padding: 10px 20px;
    }

    /* ==============================
        Milestone Section End
    ==============================  */

    /* ==============================
        Our Team Section Start
    ==============================  */
    .our-team-section .card .img-wrapper {
        margin-bottom: 20px;
    }

    .our-team-section .card .name {
        font-size: 20px;
    }

    .our-team-section .card .post {
        font-size: 17px;
    }

    /* ==============================
        Our Team Section End
    ==============================  */

    /* ==============================
        Faq Tabs Section Start
    ==============================  */
    .faq-tabs-section .nav-link {
        padding: 30px;
    }

    .faq-tabs-section .nav-link .nav-header {
        gap: 16px;
    }

    .faq-tabs-section .nav-link .nav-header .arrow-wrap,
    .faq-tabs-section .wrap .question .arrow-wrap {
        width: 44px;
        height: 44px;
    }

    .faq-tabs-section .nav-link .nav-header .arrow-wrap i,
    .faq-tabs-section .wrap .question .arrow-wrap i {
        font-size: 22px;
    }

    .faq-tabs-section .nav-link .des {
        font-size: 16px;
    }

    .faq-tabs-section .wrap {
        padding: 30px;
    }

    .faq-tabs-section .wrap .question {
        display: flex;
        gap: 18px;
        margin-bottom: 30px;
    }

    .faq-tabs-section .accordion-button {
        font-size: 22px;
        padding: 24px 5px;
    }

    .faq-tabs-section .accordion-body {
        padding-bottom: 24px;
    }

    .faq-tabs-section .accordion-item:last-child .accordion-body {
        padding-bottom: 0;
    }

    .faq-tabs-section .accordion-item:last-child .accordion-button.collapsed {
        padding-bottom: 0;
    }

    /* ==============================
        Faq Tabs Section End
    ==============================  */

    /* ==============================
        Contact Section Start
    ==============================  */
    .contact-section .form-wrap {
        padding: 30px;
    }

    .contact-section .contact-service-card {
        height: 100%;
        padding: 24px;
        background-color: var(--white-color);
        border-radius: 27px;
        box-shadow: 0 12px 33px rgba(27, 32, 40, 0.05);
    }

    .contact-section .contact-service-card .title {
        font-size: 24px;
    }

    .contact-section .contact-service-card .des {
        font-size: 18px;
    }

    .contact-section .contact-details .contact-item {
        margin-bottom: 16px;
    }

    .contact-section .contact-details .contact-item .title {
        margin-bottom: 12px;
    }

    .contact-section .contact-details .contact-item .text {
        font-size: 18px;
    }

    /* ==============================
        Contact Section End
    ==============================  */

    /* ==============================
        Portfolio Project Section Start
    ==============================  */
    .portfolio-projects .nav-pills {
        gap: 12px;
    }

    .portfolio-projects .nav-pills .nav-link {
        font-size: 17px;
        padding: 12px 20px;
    }

    .portfolio-projects .card-wrap {
        gap: 24px;
    }

    .portfolio-projects .card {
        padding: 24px;
    }

    .portfolio-projects .card .category {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .portfolio-projects .card .title {
        font-size: 35px;
        margin-bottom: 16px;
    }

    .portfolio-projects .card .des {
        font-size: 17px;
    }

    .portfolio-projects .card .tags-wrap {
        margin-top: 16px;
    }

    /* Navigation Button */
    .portfolio-projects .navigations {
        gap: 10px;
        margin-top: 24px;
    }

    .portfolio-projects .navigations button {
        font-size: 19px;
        width: 50px;
        height: 50px;
    }

    .portfolio-projects .card:hover .inverted-radius {
        background: rgb(64 88 179);
    }

    .portfolio-projects .card:hover .inverted-radius:after, 
    .portfolio-projects .card:hover .inverted-radius:before {
        box-shadow: 5px -5px 0 5px rgb(64 88 179);
    }

    /* ==============================
        Portfolio Project Section End
    ==============================  */

    .project-description .project-related-img {
        height: 350px;
        border-radius: 30px;
    }

    .project-stack .stack-wrapper {
        gap: 24px;
    }

    .project-stack .stack-wrapper .stack-logo {
        width: 105px;
        height: 105px;
    }

    .project-stack .stack-wrapper .stack-logo img {
        width: 60px;
    }


    .media-wrapper {
        height: 420px;
    }

    .service-overview-media {
        height: 400px;
    }

    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion-item .accordion-body {
        padding-top: 20px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 18px;
    }

    /* ==============================
        Faq Section End
    ==============================  */

}

@media (max-width: 767px) {

    .py-120 {
        padding-block: 80px;
    }

    .py-100 {
        padding-block: 60px;
    }

    .py-80 {
        padding-block: 60px;
    }

    .py-60 {
        padding-block: 42px;
    }

    .py-40 {
        padding-block: 32px;
    }

    .theme-btn,
    .secondary-btn,
    .dark-btn,
    .white-btn {
        font-size: 16px;
        padding: 10px 22px;
    }

    .fs-100 {
        font-size: 48px;
    }

    .section-heading {
        font-size: 32px;
    }

    .section-title,
    .subtitle {
        font-size: 17px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }


    header nav.navbar {
        padding: 14px 0;
    }

    /* ==============================
        Hero Section Start
    ==============================  */
    .hero-section h1 {
        font-size: 35px;
    }

    /* ==============================
        Hero Section End
    ==============================  */

    /* ==============================
        Trademark Section Start
    ==============================  */
    .marquee-wrap {
        padding: 30px;
        border-radius: 30px;
    }

    .logos-slide {
        padding: 0px 5px;
        gap: 10px;
    }

    .logo-wrapper {
        height: 40px;
    }

    /* ==============================
        Trademark Section End
    ==============================  */

    /* ==============================
        Services Section Start
    ==============================  */
    .service-section .swiper-slide {
        width: 300px;
        height: 360px;
    }

    .service-section .figure .figure-caption {
        padding: 24px;
    }

    .service-section .figure .figure-caption .detail {
        font-size: 15px;
    }

    .service-section.col .figure img {
        height: 360px;
    }

    .service-section .inverted-radius {
        width: 72px;
        height: 62px;
    }

    .service-section .wrapper .icon-wrapper {
        width: 60px;
        height: 50px;
        border-radius: 14px;
    }

    .service-section .wrapper .icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .service-section.col .wrapper .icon-link {
        font-size: 23px;
        width: 60px;
        height: 50px;
    }

    /* ==============================
        Services Section End
    ==============================  */

    /* ==============================
        Step Section Start
    ==============================  */
    .step-section .card {
        width: 48%;
        min-height: 330px;
    }

    .step-section .card.active {
        width: 100%;
    }

    .step-section .card .title {
        font-size: 30px;
    }

    .step-section .card .video-wrapper {
        margin-bottom: 20px;
    }

    .step-section .card .description {
        padding-top: 18px;
    }

    /* ==============================
        Step Section End
    ==============================  */

    /* ==============================
        Why Choose Section Start
    ==============================  */
    .why-choose-section .wrap .inverted-radius {
        width: 160px;
        height: 85px;
    }

    .why-choose-section .content .text {
        font-size: 16px;
    }

    .why-choose-section .why-choose-stats {
        gap: 30px;
        margin-top: 30px;
    }

    .why-choose-section .why-choose-stat p {
        font-size: 15px;
    }

    .why-choose-section .choose-tags {
        column-gap: 14px;
        row-gap: 10px;
    }

    .why-choose-section .choose-tag {
        font-size: 15px;
        padding: 10px 15px;
    }

    /* ==============================
        Why Choose Section End
    ==============================  */

    /* ==============================
        Portfolio Section Start
    ==============================  */
    .portfolio-section .wrapper .inverted-radius {
        width: 110px;
        height: 55px;
    }

    .portfolio-section .wrapper img {
        height: 340px;
    }

    .portfolio-section .figure .figure-caption {
        padding: 24px;
    }

    .portfolio-section .figure .figure-caption .category {
        font-size: 16px;
    }

    .portfolio-section .figure .figure-caption h1 a {
        font-size: 27px;
    }

    .portfolio-section .portfolio-service p {
        font-size: 15px;
    }

    /* ==============================
        Portfolio Section End
    ==============================  */

    /* ==============================
        Testimonial Section Start
    ==============================  */
    .testimonial-section.single .card .title {
        margin-bottom: 20px;
    }
    /* ==============================
        Testimonial Section End
    ==============================  */

    /* ==============================
        Blog Section Start
    ==============================  */
    .blog-section .card .img-wrapper .inverted-radius {
        width: 87px;
        height: 72px;
    }

    .blog-section .card .img-wrapper .link {
        font-size: 26px;
        width: 70px;
        height: 60px;
    }

    .blog-section .card p {
        font-size: 17px;
    }

    .blog-section .author-site .site-address {
        font-size: 17px;
    }

    .blog-section .author-info .name-role {
        font-size: 17px;
    }

    .blog-section .nav-pills {
        gap: 12px;
    }

    .blog-section .nav-pills .nav-link {
        font-size: 16px;
        padding: 12px 20px;
    }

    .blog-section .navigations {
        gap: 10px;
        margin-top: 20px;
    }

    .blog-section .navigations button {
        font-size: 18px;
        width: 44px;
        height: 44px;
    }

    /* ==============================
        Blog Section End
    ==============================  */

    /* ==============================
        Reach us Section Start
    ==============================  */
    .reachus-section .reach-banner {
        width: 100%;
        height: 190px;
    }

    .reachus-section .reach-banner::before {
        width: 14px;
    }

    .solution-wrap,
    .discussion-wrap {
        padding: 24px;
        border-radius: 24px;
    }

    /* ==============================
        Reach us Section End
    ==============================  */

    /* ==============================
        Breadcrumb Section Start
    ==============================  */
    .breadcrumb-section .content .shadow-text {
        font-size: 54px;
        margin-bottom: -40px;
    }

    .breadcrumb-section .content h1 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    /* ==============================
        Breadcrumb Section End
    ==============================  */

    /* ==============================
        About Section Start
    ==============================  */
    .about-section .about-media-wrap {
        height: 350px;
        border-radius: 24px;
    }

    .about-list li {
        font-size: 18px;
    }

    /* ==============================
        About Section End
    ==============================  */

    /* ==============================
        Counter Section Start
    ==============================  */
    .counter-section .card {
        max-width: 210px;
        margin-inline: auto;
    }

    .counter-section .card h1 {
        font-size: 32px;
    }

    .counter-section .card p {
        font-size: 16px;
    }

    /* ==============================
        Counter Section End
    ==============================  */

    /* ==============================
        Milestone Section Start
    ==============================  */
    .milestone-section .figure img {
        width: 100%;
        height: 350px;
    }

    /* ==============================
        Milestone Section End
    ==============================  */

    /* ==============================
        Faq Tabs Section Start
    ==============================  */
    .faq-tabs-section .nav-link {
        padding: 24px;
    }

    .faq-tabs-section .nav-link .nav-header {
        gap: 14px;
    }

    .faq-tabs-section .nav-link .nav-header .arrow-wrap,
    .faq-tabs-section .wrap .question .arrow-wrap {
        width: 40px;
        height: 40px;
    }

    .faq-tabs-section .nav-link .nav-header .arrow-wrap i,
    .faq-tabs-section .wrap .question .arrow-wrap i {
        font-size: 20px;
    }

    .faq-tabs-section .nav-link .nav-header h4 {}

    .faq-tabs-section .nav-link .des {
        font-size: 16px;
    }

    .faq-tabs-section .wrap {
        padding: 24px;
    }

    .faq-tabs-section .wrap .question {
        gap: 16px;
        margin-bottom: 20px;
    }

    .faq-tabs-section .wrap .question h4 {}

    .faq-tabs-section .wrap .question .des {}

    .faq-tabs-section .accordion-button {
        font-size: 20px;
        padding: 20px 5px;
    }

    .faq-tabs-section .accordion-body {
        padding-bottom: 20px;
    }

    .faq-tabs-section .accordion-item:last-child .accordion-body {
        padding-bottom: 0;
    }

    .faq-tabs-section .accordion-item:last-child .accordion-button.collapsed {
        padding-bottom: 0;
    }

    /* ==============================
        Faq Tabs Section End
    ==============================  */

    /* ==============================
        Contact Section Start
    ==============================  */
    .contact-section .form-wrap {
        padding: 24px;
    }

    .contact-section .contact-service-card .title {
        font-size: 21px;
    }

    .contact-section .contact-service-card .des {
        font-size: 17px;
    }

    .contact-section .contact-details .contact-item {
        margin-bottom: 14px;
    }

    .contact-section .contact-details .contact-item .title {
        margin-bottom: 10px;
    }

    .contact-section .contact-details .contact-item .text {
        font-size: 17px;
    }

    /* ==============================
        Contact Section End
    ==============================  */

    /* ==============================
        Feature Section Start
    ==============================  */
    .feature-section .card {
        padding: 24px;
    }

    .feature-section .card .arrow-wrapper {
        font-size: 25px;
        width: 45px;
        height: 45px;
    }

    /* ==============================
        Feature Section End
    ==============================  */

    /* ==============================
        Portfolio Project Section Start
    ==============================  */
    .portfolio-projects .nav-pills {
        gap: 12px;
    }

    .portfolio-projects .nav-pills .nav-link {
        font-size: 16px;
        padding: 12px 20px;
    }

    .portfolio-projects .card-wrap {
        gap: 20px;
    }

    .portfolio-projects .card {
        padding: 20px;
    }

    .portfolio-projects .card .category {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .portfolio-projects .card .title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .portfolio-projects .card .des {
        font-size: 16px;
    }

    .portfolio-projects .card .tags-wrap {
        margin-top: 14px;
    }

    .portfolio-projects .card .inverted-radius {
        width: 67px;
        height: 67px;
    }

    .portfolio-projects .card .inverted-radius:before {
        right: 67px;
    }

    .portfolio-projects .card .arrow-wrap {
        font-size: 22px;
        width: 55px;
        height: 55px;
    }

    /* Navigation Button */
    .portfolio-projects .navigations {
        gap: 10px;
        margin-top: 20px;
    }

    .portfolio-projects .navigations button {
        font-size: 18px;
        width: 44px;
        height: 44px;
    }

    /* ==============================
        Portfolio Project Section End
    ==============================  */

    .project-description .project-related-img {
        height: 300px;
        border-radius: 24px;
    }

    .features .feature-list .feature-item {
        gap: 14px;
        margin-bottom: 14px;
    }

    .features .feature-list .feature-item .check-icon {
        width: 26px;
        height: 26px;
    }

    .project-stack .stack-wrapper {
        gap: 24px;
    }

    .project-stack .stack-wrapper .stack-logo {
        width: 95px;
        height: 95px;
    }

    .project-stack .stack-wrapper .stack-logo img {
        width: 50px;
    }

    /* ==============================
        Position Section Start
    ==============================  */
    .position-section .card .inverted-radius {
        width: 65px;
        height: 65px;
    }

    .position-section .card .arrow-link {
        font-size: 22px;
        width: 53px;
        height: 53px;
    }

    .position-section .card .header {
        margin-left: 50px;
    }

    /* ==============================
        Position Section End
    ==============================  */


    .media-wrapper {
        height: 360px;
        border-radius: 24px;
    }

    .service-overview-media {
        height: 350px;
        border-radius: 24px;
    }

    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion {
        gap: 18px;
    }

    .faq-section .accordion-item .accordion-body {
        padding-top: 18px;
    }

    .faq-section .accordion-button {
        font-size: 17px;
        padding: 16px 20px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 17px;
    }

    /* ==============================
        Faq Section End
    ==============================  */

}

@media (max-width: 575px) {

    .draw-svg {
        width: 60px;
        height: 60px;
    }

    .py-120 {
        padding-block: 60px;
    }

    .py-100 {
        padding-block: 50px;
    }

    .py-80 {
        padding-block: 48px;
    }

    .py-60 {
        padding-block: 36px;
    }

    .py-40 {
        padding-block: 24px;
    }

    .theme-btn,
    .secondary-btn,
    .dark-btn,
    .white-btn {
        font-size: 15px;
        padding: 10px 24px;
    }

    .fs-100 {
        font-size: 36px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-title,
    .subtitle {
        font-size: 16px;
    }

    .form-label,
    .form-check .form-check-label,
    .form-control,
    .form-select,
    .forgot-password,
    .signup {
        font-size: 15px;
    }

    .footer-contact input,
    .form-control,
    .form-select {
        padding: 12px 18px;
        border-radius: 50px;
    }

    textarea.form-control {
        border-radius: 15px;
    }

    .form-check {
        gap: 8px;
    }

    .form-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .form-check input[type="checkbox"]::before {
        font-size: 10px;
    }

    .signup {
        display: block;
        text-align: center;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    /* ==============================
        Header Section Start
    ==============================  */
    header nav.navbar {
        padding: 10px 0;
    }

    header .navbar-toggler {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    header .navbar-brand {
        height: 50px;
    }

    header .navbar-brand img {
        width: 100%;
        height: 100%;
    }

    header .navbar-nav .nav-link {
        font-size: 15px;
        padding: 6px 0 !important;
    }

    .dropdown-menu {
        min-width: 100%;
        padding: 14px 16px;
    }

    .dropdown-toggle {
        font-size: 15px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 15px;
        padding-bottom: 10px;
    }

    .header-user .dropdown-menu li:last-child .dropdown-item {
        padding-top: 10px;
    }

    /* ==============================
        Header Section End
    ==============================  */

    /* ==============================
        Hero Section Start
    ==============================  */
    .hero-section {
        padding-block: 120px 30px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    /* ==============================
        Hero Section End
    ==============================  */

    /* ==============================
        Trademark Section Start
    ==============================  */
    .marquee-wrap {
        padding: 20px;
        border-radius: 20px;
    }

    .logos-slide {
        padding: 0px 5px;
    }

    .logo-wrapper {
        height: 35px;
    }

    /* ==============================
        Trademark Section End
    ==============================  */

    /* ==============================
        Services Section Start
    ==============================  */
    .service-section .swiper-slide {
        width: 100%;
        height: 300px;
    }

    .service-section .figure .figure-caption {
        padding: 20px;
    }

    .service-section .figure .figure-caption .detail {
        font-size: 14px;
    }

    .service-section.col .figure img {
        height: 300px;
    }

    /* ==============================
        Services Section End
    ==============================  */

    /* ==============================
        Step Section Start
    ==============================  */
    .step-section .card {
        width: 100%;
        min-height: 300px;
    }

    .step-section .card.active {
        width: 100%;
    }

    .step-section .card .title {
        font-size: 25px;
    }

    .step-section .card .description p {
        font-size: 14px;
    }

    /* ==============================
        Step Section End
    ==============================  */

    /* ==============================
        Why Choose Section Start
    ==============================  */
    .why-choose-section .wrap {
        padding: 16px;
        border-radius: 24px;
    }

    .why-choose-section .wrap .inverted-radius {
        width: 100px;
        height: 60px;
        border-radius: 24px 0 0 0;
    }

    .why-choose-section .wrap .inverted-radius:after, 
    .why-choose-section .wrap .inverted-radius:before {
        width: 24px;
        height: 24px;
        border-bottom-right-radius: 30px;
    }

    .why-choose-section .wrap .inverted-radius:before {
        top: -24px;
    }

    .why-choose-section .wrap .inverted-radius::after {
        left: -24px;
    }

    .why-choose-section .content .text {
        font-size: 15px;
    }

    .why-choose-section .why-choose-stats {
        gap: 14px;
        margin-top: 30px;
    }

    .why-choose-section .why-choose-stat p {
        font-size: 14px;
    }

    .why-choose-section .choose-tag {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* ==============================
        Why Choose Section End
    ==============================  */

    /* ==============================
        Portfolio Section Start
    ==============================  */
    .portfolio-section .wrapper {
        border-radius: 24px;
    }

    .portfolio-section .wrapper-1 .inverted-radius:after,
    .portfolio-section .wrapper-1 .inverted-radius:before {
        width: 24px;
        height: 24px;
        content: "";
        position: absolute;
    }

    .portfolio-section .wrapper-1 .inverted-radius:before {
        bottom: -24px;
        border-top-right-radius: 24px;
    }

    .portfolio-section .wrapper-1 .inverted-radius:after {
        left: -24px;
        border-top-right-radius: 24px;
    }

    .portfolio-section .wrapper .inverted-radius {
        width: 80px;
        height: 55px;
    }

    .portfolio-section .wrapper img {
        height: 300px;
    }

    .portfolio-section .figure .figure-caption {
        padding: 20px;
    }

    .portfolio-section .figure .figure-caption .category {
        font-size: 15px;
    }

    .portfolio-section .figure .figure-caption h1 a {
        font-size: 23px;
    }

    .portfolio-section .portfolio-service p {
        font-size: 14px;
    }

    /* ==============================
        Portfolio Section End
    ==============================  */

    /* ==============================
        Blog Section Start
    ==============================  */
    .blog-section .card .img-wrapper .inverted-radius {
        width: 77px;
        height: 67px;
    }

    .blog-section .card .img-wrapper .link {
        font-size: 24px;
        width: 65px;
        height: 55px;
    }

    .blog-section .card h4 {
        margin-bottom: 15px;
    }

    .blog-section .card p {
        font-size: 16px;
    }

    .blog-section .author-site {
        gap: 12px;
        margin-top: 15px;
    }

    .blog-section .author-site .site-address {
        font-size: 16px;
    }

    .blog-section .author-info {
        gap: 12px;
        margin-top: 15px;
    }

    .blog-section .author-info .name-role {
        font-size: 16px;
    }

    .blog-section .nav-pills {
        gap: 10px;
    }

    .blog-section .nav-pills .nav-link {
        font-size: 15px;
        padding: 10px 16px;
    }

    .blog-section .navigations button {
        font-size: 17px;
        width: 40px;
        height: 40px;
    }

    /* ==============================
        Blog Section End
    ==============================  */

    /* ==============================
        Testimonial Section Start
    ==============================  */
    .testimonial-section .card {
        padding: 50px 24px 24px;
    }

    .testimonial-section .card .feedback,
    .testimonial-section .card .subtitle {
        font-size: 15px;
    }

    .testimonial-section.single .card .title {
        margin-bottom: 16px;
    }

    /* ==============================
        Testimonial Section End
    ==============================  */

    /* ==============================
        Reach us Section Start
    ==============================  */
    .reachus-section .reach-banner {
        width: 100%;
        height: 150px;
    }

    .reachus-section .reach-banner::before {
        width: 10px;
    }

    .solution-wrap,
    .discussion-wrap {
        padding: 20px;
    }

    .solution-wrap p,
    .discussion-wrap {
        font-size: 15px;
    }

    /* ==============================
        Reach us Section End
    ==============================  */

    /* ==============================
        Breadcrumb Section Start
    ==============================  */
    .breadcrumb-section .content .shadow-text {
        font-size: 48px;
        margin-bottom: -36px;
    }

    .breadcrumb-section .content h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* ==============================
        Breadcrumb Section End
    ==============================  */

    /* ==============================
        About Section Start
    ==============================  */
    .about-section .about-media-wrap {
        height: 300px;
        border-radius: 20px;
    }

    .about-list li {
        font-size: 16px;
    }

    /* ==============================
        About Section End
    ==============================  */

    /* ==============================
        Counter Section Start
    ==============================  */
    .counter-section .card {
        max-width: 200px;
        text-align: center;
    }

    .counter-section .card div {
        justify-content: center;
    }

    .counter-section .card h1 {
        font-size: 28px;
    }

    .counter-section .card p {
        font-size: 15px;
    }

    /* ==============================
        Counter Section End
    ==============================  */

    /* ==============================
        Milestone Section Start
    ==============================  */
    .milestone-section .figure img {
        width: 100%;
        height: 300px;
    }

    .milestone-section .figure .figure-caption .detail {
        font-size: 15px;
        line-height: 1.6;
    }

    .milestone-section .inverted-radius {
        width: 96px;
        height: 60px;
    }

    .milestone-section .badge-year {
        font-size: 18px;
    }

    .milestone-section .swiper-slide {
        padding-top: 80px;
    }

    .milestone-section .dashed-line {
        top: 28px;
    }

    .milestone-section .tracking-circle {
        width: 56px;
        height: 56px;
    }

    .milestone-section .tracking-circle .inner-circle {
        width: 24px;
        height: 24px;
    }

    /* ==============================
        Milestone Section End
    ==============================  */

    /* ==============================
        Our Team Section Start
    ==============================  */
    .our-team-section .card .name {
        font-size: 19px;
    }

    .our-team-section .card .post {
        font-size: 16px;
    }

    /* ==============================
        Our Team Section End
    ==============================  */

    /* ==============================
        Faq Tabs Section Start
    ==============================  */
    .faq-tabs-section .nav-link {
        padding: 20px;
        border-radius: 20px;
    }

    .faq-tabs-section .nav-link .nav-header {
        gap: 12px;
    }

    .faq-tabs-section .nav-link .nav-header .arrow-wrap,
    .faq-tabs-section .wrap .question .arrow-wrap {
        width: 36px;
        height: 36px;
    }

    .faq-tabs-section .nav-link .nav-header .arrow-wrap i,
    .faq-tabs-section .wrap .question .arrow-wrap i {
        font-size: 19px;
    }

    .faq-tabs-section .nav-link .nav-header h4 {
        font-size: 18px;
    }

    .faq-tabs-section .nav-link .des {
        font-size: 15px;
    }

    .faq-tabs-section .wrap {
        padding: 20px;
        border-radius: 20px;
    }

    .faq-tabs-section .wrap .question {
        gap: 12px;
        margin-bottom: 16px;
    }

    .faq-tabs-section .wrap .question h4 {
        font-size: 18px;
    }

    .faq-tabs-section .wrap .question .des {
        font-size: 16px;
    }

    .faq-tabs-section .accordion-button {
        font-size: 16px;
        padding: 18px 5px;
    }

    .faq-tabs-section .accordion-body {
        padding-bottom: 18px;
    }

    .faq-tabs-section .accordion-item:last-child .accordion-body {
        padding-bottom: 0;
    }

    .faq-tabs-section .accordion-item:last-child .accordion-button.collapsed {
        padding-bottom: 0;
    }

    /* ==============================
        Faq Tabs Section End
    ==============================  */

    /* ==============================
        Contact Section Start
    ==============================  */
    .contact-section .form-wrap {
        padding: 20px;
        border-radius: 20px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-select {
        padding: 12px 20px;
    }

    .form-control {
        padding: 12px 20px;
    }

    .contact-section .contact-service-card {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-section .contact-service-card .title {
        font-size: 20px;
    }

    .contact-section .contact-service-card .des {
        font-size: 16px;
    }

    .contact-section .contact-details .contact-item .title {
        font-size: 20pxblog;
        margin-bottom: 8px;
    }

    .contact-section .contact-details .contact-item .text {
        font-size: 16px;
    }

    /* ==============================
        Contact Section End
    ==============================  */

    /* ==============================
        Feature Section Start
    ==============================  */
    .feature-section .card {
        padding: 20px;
    }

    .feature-section .card .arrow-wrapper {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }

    .feature-section .card .des {
        font-size: 15px;
    }

    /* ==============================
        Feature Section End
    ==============================  */

    /* ==============================
        Portfolio Project Section Start
    ==============================  */
    .portfolio-projects .nav-pills {
        gap: 10px;
    }

    .portfolio-projects .nav-pills .nav-link {
        font-size: 14px;
        padding: 10px 16px;
    }

    .portfolio-projects .card .category {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .portfolio-projects .card .title {
        font-size: 26px;
    }

    .portfolio-projects .card .des {
        font-size: 15px;
    }

    .portfolio-projects .card .inverted-radius {
        width: 57px;
        height: 57px;
    }

    .portfolio-projects .card .inverted-radius:before {
        right: 57px;
    }

    .portfolio-projects .card .arrow-wrap {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }

    /* Navigation Button */
    .portfolio-projects .navigations button {
        font-size: 17px;
        width: 40px;
        height: 40px;
    }


    .portfolio-projects .card .portfolio-banner {
        min-height: unset;
        height: 240px;
    }

    /* ==============================
        Portfolio Project Section End
    ==============================  */

    /* ==============================
        Portfolio description Section Start
    ==============================  */
    .project-description .project-related-img {
        height: 270px;
    }

    .features .feature-list .feature-item {
        gap: 10px;
        margin-bottom: 10px;
    }

    .features .feature-list .feature-item .check-icon {
        font-size: 11px;
        width: 24px;
        height: 24px;
    }

    .features .feature-list .feature-item p {
        font-size: 15px;
    }

    .project-stack .stack-wrapper {
        gap: 20px;
    }

    .project-stack .stack-wrapper .stack-logo {
        width: 80px;
        height: 80px;
    }

    .project-stack .stack-wrapper .stack-logo img {
        width: 40px;
    }

    /* ==============================
        Portfolio description Section End
    ==============================  */

    /* ==============================
        Position Section Start
    ==============================  */
    .position-section .card {
        padding: 24px;
    }

    .position-section .card .inverted-radius {
        width: 57px;
        height: 57px;
    }

    .position-section .card .arrow-link {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }

    .position-section .card .tags-wrap {
        margin-top: 16px;
    }

    .position-section .card .des {
        font-size: 15px;
    }

    /* ==============================
        Position Section End
    ==============================  */

    .media-wrapper {
        height: 300px;
        border-radius: 20px;
    }

    .service-overview-media {
        height: 300px;
        border-radius: 20px;
    }

    /* ==============================
        Faq Section Start
    ==============================  */
    .faq-section .accordion {
        gap: 16px;
    }

    .faq-section .accordion-item .accordion-body {
        padding-top: 16px;
    }

    .faq-section .accordion-button {
        font-size: 16px;
        padding: 16px 20px;
    }

    .faq-section .accordion-body p,
    .faq-section .accordion-body ul li {
        font-size: 16px;
    }

    /* ==============================
        Faq Section End
    ==============================  */



    .nav-section .nav-links a {
        font-size: 15px;
    }

    .copyright {
        font-size: 14px;
        padding-block: 20px;
        text-align: center;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 15px;
    }

    .back-to-top.show {
        bottom: 18px;
        right: 18px;
    }

    .back-to-top.show:hover {
        bottom: 26px;
    }
}
