/* font-family */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.heading-font {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.body-font {
    font-family: "Public Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.bg--maroon {
    background-color: var(--primary-color);
}

:root {
    --primary-color: #952e31;
    --secondary-color: #696a6c;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #f7f4f3;
    --opacity10: 0.1;
    --opacity20: 0.2;
    --opacity30: 0.3;
    --opacity40: 0.4;
    --opacity50: 0.5;
    --opacity60: 0.6;
    --opacity70: 0.7;
    --opacity80: 0.8;
    --opacity90: 0.9;
    --opacity100: 1;
    --font-weight-extrabold: 800;
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --font-weight-Regular: 400;
    --font-weight-light: 300;
    --font-weight-extraLight: 200;
    --space-desktop: 40px;
    --space-tablet: 30px;
    --space-mobile: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--black);
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;

}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
input {
    display: block;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input:focus,
textarea:focus,
button:focus,
a:focus,
select:focus,
.form-control:focus,
.btn:focus,
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
select:focus-visible,
.form-control:focus-visible,
.btn:focus-visible {
    outline: none;
    box-shadow: none;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
    display: none;
}

body {
    overflow-x: hidden;
    line-height: inherit;
    font-size: 1rem;
    font-family: "Public Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: var(--font-weight-Regular);
}

.title-head h2 {
    font-size: 40px;
    line-height: normal;
    font-weight: var(--font-weight-bold);
    text-transform: capitalize;
}

.title-head.black {
    color: var(--black);
}

.title-head.white {
    color: var(--white);
}

.title-head.primary {
    color: var(--primary-color);
}

.btn--primary {
    font-size: 32px;
    line-height: normal;
    color: var(--primary-color);
    border: 1px solid var(--black);
    border-radius: 10px;
    padding: 10px 22px;
    background: var(--white);
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
    transition: 0.5s all;
}

.btn--primary.black {
    color: var(--black);
}

/* header */
header {
    position: relative;
    z-index: 1000;
}

.header.sticky {
    padding: 0px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.navbar {
    margin: 20px 0px;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 10px;
    padding: 12px 20px;
}

.btn--header {
    font-size: 14px;
    line-height: normal;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    border: 1px solid var(--black);
    border-radius: 10px;
    padding: 15px 10px;
    text-transform: capitalize;
    background: var(--white);
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1);
    transition: 0.5s all;
    text-align: center;
}

.btn--header:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
    color: var(--white);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transform: translateY(4px);
}

.btn--primary:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
    color: var(--white);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transform: translateY(4px);
}

.btn--primary.black:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
    color: var(--primary-color);
    background: var(--white);
    border: 1px solid var(--black);
    transform: translateY(4px);
}

.cta-btn .btn.btn--primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(4px);
}

.btn--primary.black span svg,
.cta-btn .btn.btn--primary span svg,
.btn.btn--primary span svg {
    width: 35px;
    height: 50px;
    margin-left: 10px;
    transform: rotate(-35deg);
    transition: 0.5s all;
}

.btn--primary.black:hover span svg,
.cta-btn .btn.btn--primary:hover span svg,
.btn.btn--primary:hover span svg {
    transform: rotate(0deg);
}

.btn.btn--primary:hover #bannerarrow path {
    stroke: var(--white);
}

.nav-item {
    padding: 0 1rem 0 0;
    background: transparent;
    border-radius: 10px;
    margin: 0 5px;
    transition: 0.5s all;
}

.navbar-nav .nav-link {
    color: var(--black);
    text-transform: uppercase;
    font-weight: var(--font-weight-Regular);
    font-size: 16px;
    line-height: normal;
    position: relative;
    transition: 0.5s all;
}

.navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    right: 0px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
    margin: auto;
    transition: 0.5s all;
}

.nav-item.active,
.nav-item:hover,
.nav-item.show {
    background: var(--primary-color);
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link,
.nav-item.show .nav-link {
    color: var(--white);
}

.nav-item.active .nav-link::before,
.nav-item:hover .nav-link::before,
.nav-item.show .nav-link::before {
    background: var(--white);
    height: 9px;
    border-radius: 40%;
}

.nav-item.dropdown.custom-dropdown {
    position: static;
}

.custom-dropdown .dropdown-menu {
    max-width: 780px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 1px solid var(--black);
}

.custom-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 15px 8px 0;
    width: 50%;
    background-color: transparent;
}

.custom-dropdown .dropdown-item a {
    color: var(--black);
}

.custom-dropdown .dropdown-item a:hover {
    color: var(--primary-color);
}

.custom-dropdown .dropdown-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.custom-dropdown h6 {
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
    font-size: 18px;
    text-transform: capitalize;
    color: var(--secondary-color);
}

.dropdown-item-list {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-item-list.child {
    display: block;
}

.dropdown-main-box {
    display: flex;
}

/* banner */
.banner-content,
.main-baner {
    position: relative;
}

.main-baner {
    height: 640px;
    background: #F7F4F3;
    padding: 20px;
    border: 1px solid var(--black);
    border-radius: 30px;
}

.main-baner::after {
    position: absolute;
    content: "";
    background: url(../images/banner-bottomm.png);
    background-size: 468px 175px;
    background-position: center;
    background-repeat: no-repeat;
    width: 470px;
    height: 170px;
    left: -3px;
    bottom: -1px;
    border-radius: 0 0 0 30px;
    z-index: 0;
}

.banner-btn {
    position: relative;
    z-index: 1;
    left: 27px;
    top: 70px;
    bottom: 0;
}

.benner-container {
    position: relative;
    overflow: hidden;
}

.custom-box h1,
.custom-box h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 5px;
    filter: drop-shadow(5px -3px 0px var(--primary-color)) drop-shadow(1px 0px 0px white) drop-shadow(0px 1px 0px white) drop-shadow(-1px 0px 0px white) drop-shadow(0px -1px 0px white)
}

.custom-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    height: 300px;
    padding: 40px 25px;
}

.banner-box {
    border-radius: 30px;
    background-color: #F7F4F3;
    padding: 15px;
    position: absolute;
    width: 65%;
    right: 0;
    bottom: 0;
}

.custom-box p {
    font-size: 24px;
    color: var(--white);
    font-weight: var(--font-weight-light);
    margin: 20px 0 0 0;
}

.baner-img {
    display: flex;
    align-items: center;
}

.banner-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    width: 100px;
    border-radius: 44px;
    margin-right: 20px;
    border: 1px solid var(--black);
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    transition: 0.5s all;
}

.banner-icon-wrapper img {
    width: 50px;
}

.banner-icon-wrapper:hover {
    transform: scale(1.1);
}

.box-right {
    position: relative;
}

.box-right .arrow-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-right .arrow-btn:hover {
    background: var(--white);
}

.box-right .arrow-btn svg {
    transform: rotate(-30deg);
    width: 15px;
    height: 15px;
    transition: 0.5s all;
}

.box-right .arrow-btn:hover svg {
    transform: rotate(0deg);
    width: 28px;
    height: 20px;
}

#arrowhead path {
    stroke: var(--white);
    transition: 0.5s all;
}

.box-right .arrow-btn:hover #arrowhead path {
    stroke: var(--primary-color);
}

.box-right figure {
    width: 200px;
    height: 250px;
    position: relative;
}

.box-right figure::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s all;
}

.box-right figure img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    box-shadow: -10px 10px 0px 0px rgba(223, 223, 223, 1);
    border-radius: 10px;
}

.box-right:hover figure::before {
    background: rgba(0, 0, 0, 0.5);
}

.dropdown-main-box.inner-child {
    justify-content: space-between;
}

.dropdown-main-box.inner-child .box-right figure {
    width: 450px;
    height: 190px;
    position: relative;
}

.dropdown-main-box.inner-child .box-right figure img {
    object-fit: cover;
}

.triangle-border {
    position: absolute;
    top: -16px;
    left: 100px;
}

.arrow-second-child .triangle-border {
    left: 265px;
}

.arrow-third-child .triangle-border {
    left: 374px;
}

.tearms-head {
    position: relative;
    z-index: 3;
}

.header-top-color::before {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 35%;
    background-color: var(--primary-color);
    left: 0;
    z-index: 0;
    border-radius: 0px 0px 30px 30px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
        /* flex: 1 0 0; */
    }

    .navbar-brand {
        flex: 1 0 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 90px;
    }

    .top-bottom-padding {
        padding-top: var(--space-desktop);
        padding-bottom: var(--space-desktop);
    }

    .top-bottom-margin {
        margin-top: var(--space-desktop);
        margin-bottom: var(--space-desktop);
    }


}

button:focus {
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 2rem;
    height: 1.2rem;
}

.mobile-menu ul li {
    padding: 10px 10px;
    position: relative;
    margin: 10px 0;
}

.mobile-menu ul li.active,
.has-dropdown.open {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    display: block;
    width: 100%;
}

.mobile-menu ul li.active a,
.has-dropdown.open a {
    color: var(--white);
}

.mobile-menu ul li.active::before {
    background: var(--white);
}

.mobile-menu ul li::before {
    position: absolute;
    content: "";
    right: 25px;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
    margin: auto;
    transition: 0.5s all;
}

.dropdown-menu {
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 10px;
    width: 95%;
    left: 0;
    right: 0;
    margin: auto;
    top: 50px;
}

.has-dropdown.open .dropdown-menu li {
    padding: 5px;
    margin: 5px;
}

.has-dropdown.open .dropdown-menu li a {
    font-size: 16px;
    color: var(--black);
}

.has-dropdown.open .dropdown-menu li::before {
    content: none;
}

.has-dropdown.open .dropdown-menu .triangle-border {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
    width: 16px;
}

/* .drop-down-menu {
    display: none; 
    list-style: none;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
} */

/* Add styling when dropdown is active */
/* .has-dropdown.active > a {
    color: #b30000;
    font-weight: bold;
} */
@media screen and (max-width: 1280px) and (min-width: 992px) {
    .btn--header {
        font-size: 14px;
        padding: 10px 8px;
        box-shadow: 3px 4px 0px 0px rgba(0, 0, 0, 1);
    }

    .navbar {
        margin: 20px 0px;
        padding: 12px 14px;
    }

    .nav-item {
        padding: 0 0.5rem 0 0;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

@media (min-width: 768px) {

    .top-bottom-padding {
        padding-top: var(--space-tablet);
        padding-bottom: var(--space-tablet);
    }

    .top-bottom-margin {
        margin-top: var(--space-tablet);
        margin-bottom: var(--space-tablet);
    }

    .nav-item {
        padding: 0 1.2rem;
        margin: 12px 5px;
    }


    .dropdown-menu.nav-item.show {
        position: relative;
    }

}

@media (max-width: 767.99px) {

    .top-bottom-padding {
        padding-top: var(--space-mobile);
        padding-bottom: var(--space-mobile);
    }

    .top-bottom-margin {
        margin-top: var(--space-mobile);
        margin-bottom: var(--space-mobile);
    }
}

/* banner section */
/* Slider Container */
/* .slider {
    width: 80%;
    margin: 50px auto;
} */

/* Slide Item */
.slider img {
    border-radius: 20px;
    height: 450px;
    width: 100%;
    object-fit: cover;
}

/* Center Arrow Buttons */
.slick-prev,
.slick-next {
    z-index: 1;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.card {
    padding: 17px;
    border: 1px solid var(--primary-color);
    flex: 1 1 calc(25% - 20px);
    min-width: 260px;
    max-width: 100%;
    border-radius: 10px;
    background-color: #F7F4F3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrapper {

    display: flex;
    align-items: center;
    justify-content: start;
}



.card h3 {
    margin: 10px 0px 10px 20px;
    font-size: 22px;
    color: var(--black);
    font-weight: var(--font-weight-medium);
}

.card p {
    font-size: 16px;
    color: var(--black);
    font-weight: var(--font-weight-light);
    line-height: normal;
    margin: 10px 0;
}

.card:hover {
    transform: translateY(-30px);
    background-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card:hover h3,
.card:hover p {
    color: var(--white);
}

@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
        background-color: #F7F4F3;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .card:hover h3,
    .card:hover p {
        color: var(--black);
    }
}

@media (max-width: 992px) {
    .card {
        flex: 1 1 calc(50% - 20px);
        /* 2 cards per row on medium screens */
    }
}

@media (max-width: 576px) {
    .card {
        flex: 1 1 100%;
        margin: 8px 0;
    }
}

.custom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.custom-card {
    flex: 0 0 calc(33.333% - 10px);
    background-color: #fff;
    border: 1px solid var(--black);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: left;
    transition: all 0.3s ease-in-out;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.custom-card:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 5px 5px 0px 0px rgba(149, 46, 49, 1), 6px 6px 0px 0 white;
}

.card-content.double-line {
    height: 56%;
    position: absolute;
    transition: all 0.3s ease-in-out;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
    bottom: 0px;
    overflow: hidden;
}

.custom-card:hover .card-content.double-line {
    height: 100%;
    bottom: -18px;
}

.card-content {
    height: 42%;
    position: absolute;
    transition: all 0.3s ease-in-out;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
    bottom: 0px;
    overflow: hidden;
}

.custom-card:hover .card-content {
    height: 100%;
    bottom: -33px;
}

.custom-card .icon-wrapper {
    font-size: 24px;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.card-title {
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    color: var(--black);
    line-height: normal;
    margin-bottom: 16px;
}

.text-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hover-description {
    font-size: 20px;
}

/* @media (max-width: 992px) {
    .custom-card {
        flex: 0 0 calc(50% - 20px);

    }
} */

@media (max-width: 992px) {
    .navbar {
        margin: 0 0 20px 0;
        border-radius: 0 0 10px 10px;
        border: none;
        box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 1);
    }

    .header .container {
        padding: 0;
    }

    .header.sticky {
        padding: 0px 0 10px 0;
    }

    
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.stat-card {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(149, 46, 49, 1), 6px 6px 0 #fff;
    text-align: left;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card.one-card {
    transform: rotate(7deg);
}

.stat-card.two-card {
    transform: rotate(7deg);
}

.stat-card.three-card {
    transform: rotate(-3deg);
    margin-top: 35px;
}

.stat-card h2 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    position: relative;
}

.stat-card h2 span {
    font-size: 1.5rem;
    position: absolute;
    margin-left: 2px;
    color: #000;
}

.stat-card p {
    font-size: 1rem;
    color: #555;
}

/* .stat-card:hover {
    transform: translateY(-10px) rotate(-3deg);
    box-shadow: 7px 7px 0 rgba(149, 46, 49, 1), 8px 8px 0 #fff;
} */

@media (max-width: 768px) {
    .stat-card {
        transform: none;
        box-shadow: 3px 3px 0 rgba(149, 46, 49, 1), 4px 4px 0 #fff;
    }

    .stat-card:hover {
        transform: none;
        box-shadow: 3px 3px 0 rgba(149, 46, 49, 1), 4px 4px 0 #fff;
    }
}

.who-we-are span.quetion-mark,
.about--who span.quetion-mark {
    font-size: 30px;
    background: var(--white);
    border: 1px solid var(--black);
    height: 50px;
    width: 50px;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    box-shadow: 3px -3px 0px 0px rgba(0, 0, 0, 1);
    transform: rotate(32deg);
    margin-left: 9px;
}

.who-we-are span,
.about-who-we span {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
}

.who-we-are p,
.about-who-we p {
    font-size: 20px;
    font-weight: var(--font-weight-light);
    color: var(--black);
    margin-bottom: 20px;
}

.who-we-are .title-head {
    margin-bottom: 30px;
}

.who-we-are .row {
    align-items: center;
}

.tech-stack {
    border-radius: 10px;
    border: 1px solid var(--black);
    background-image: url(../images/grid.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slick-continuous-slider {
    padding: 20px 0;
}

.slick-continuous-slider .slick-item {
    margin: 0 25px;

}

.cta--button::after {
    position: absolute;
    content: "";
    background-image: url("../images/grid-bottom.png");
    background-size: cover;
    /* Ensures the image covers the area */
    background-position: top center;
    background-repeat: repeat-y;
    width: 100%;
    height: 50%;
    bottom: 0;
    animation: gridAnimationbottom 4s linear infinite;
    z-index: -1;
}

.cta--button::before {
    position: absolute;
    content: "";
    background-image: url("../images/grid-top.png");
    background-size: cover;
    /* Ensures the image covers the area */
    background-position: bottom center;
    background-repeat: repeat-y;
    width: 100%;
    height: 50%;
    top: 0;
    animation: gridAnimationtop 4s linear infinite;
    z-index: -1;
}

.cta-btn {
    margin-top: 30px;
}

/* Keyframes for continuous animation */
@keyframes gridAnimationbottom {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes gridAnimationtop {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

.cta--button {
    background-color: var(--black);
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: 130px 0;
}

.case-study-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.case-study-title img {
    background: var(--white);
    padding: 18px 25px;
    box-shadow: 5px 5px 0px 0px rgba(224, 74, 85, 1);
    border-radius: 18px;
}

.case-study.two .case-study-title img {
    box-shadow: 5px 5px 0px 0px rgba(228, 193, 49, 1);
}

.case-study-title h6 {
    color: black;
    text-transform: capitalize;
    font-size: 32px;
    font-weight: var(--font-weight-semibold);
    margin-left: 20px;
}

.case-study p {
    color: black;
    font-size: 28px;
    margin: 15px 15px 0;
    text-align: left;
    font-weight: var(--font-weight-light);

}

.case-study.two .case-study-title h6 {
    color: black;
}

.case-study.two p {
    color: black;
    text-align: right;
}
.case-study.two .case-study-title {
    justify-content: flex-end;
    margin-right: 20px;
}
.case-study {
    border-radius: 16px;
    border: 1.5px solid var(--black);
    display: flex;
    align-items: center;
}

.case-study.one {
    background: #FAF1F3;
    box-shadow: -7px 7px 0px 0px rgba(253, 248, 249, 1), -8px 8px 0px 0 rgba(0, 0, 0, 1);
}

.case-study.two {
    background: #FFF4C6;
    box-shadow: 7px 7px 0px 0px rgba(255, 250, 232, 1), 8px 8px 0px 0 rgba(0, 0, 0, 1);
}

.card-slider {
    background: var(--white);
    border: 1px solid #ADADAD;
    border-radius: 10px;
    padding: 20px;
    transition: 0.5s all;
    margin: 0 10px;
    height: 250px;
}


.slider-item:hover .card-slider {
    border: 1px solid var(--primary-color);
}

.slick-slide .card-slider img {
    display: block;
    width: 60px;
    margin-bottom: 20px;
}

.slick-slide .card-slider h3 {
    font-size: 28px;
    color: var(--black);
    line-height: normal;
    margin-bottom: 15px;
    font-weight: var(--font-weight-medium);
}

.slick-slide .card-slider p {
    font-size: 20px;
    color: var(--black);
    line-height: normal;
    margin-bottom: 15px;
    font-weight: var(--font-weight-light);
}

.custom-button,
.custtom--btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 150px;
}

.custom--arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid;
    background: var(--white);
    transition: 0.5s all;
}

.custom--arrow svg {
    width: 28px;
    height: 28px;
}

.custom-prev.custom--arrow,
.prev-arrow.custom--arrow {
    box-shadow: -5px 2px 0px 0px rgba(0, 0, 0, 1);
}

.custom-prev.custom--arrow:hover,
.custom-next.custom--arrow:hover,
.prev-arrow.custom--arrow:hover,
.next-arrow.custom--arrow:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.custom-prev:hover #arrows path,
.custom-next:hover #arrows path,
.prev-arrow:hover #arrows path,
.next-arrow:hover #arrows path {
    stroke: var(--white);
}

.custom-prev.custom--arrow svg,
.prev-arrow.custom--arrow svg {
    transform: rotate(180deg);
}

.custom-next.custom--arrow,
.next-arrow.custom--arrow {
    box-shadow: 5px 2px 0px 0px rgba(0, 0, 0, 1)
}

.flex--box,
.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-content h4 {
    font-size: 22px;
    font-weight: var(--font-weight-medium);
    color: var(--black);
    text-transform: capitalize;
}

.testimonial-content p.role {
    font-size: 18px;
    font-weight: var(--font-weight-light);
    color: #828282;
    text-transform: capitalize;
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial--box {
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 15px;
    height: 250px;
}

.testimonial--box p {
    font-size: 20px;
    font-weight: var(--font-weight-light);
    color: var(--black);
}

.testimonial-section .left-side {
    display: flex;
    max-width: 65%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 300px;
}

.testimonial-section {
    background: #F7F4F3;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 25px;
}

.testimonial-slide {

    margin: 0 auto;
    position: relative;
    /* For absolute positioning if needed */
    overflow: hidden;
    /* Hide the overflowing previous slide */
}

/* Dim inactive slides */
/* .testimonial-slide .slick-slide {
    opacity: 0.6;
  } */
/* Highlight the active slide */
.testimonial-slide .slick-center {
    opacity: 1;
}

.hidden-slide {
    /* display: none !important; */
    opacity: 0;
}

footer {
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 10px 10px 0px 0px;
}

.social-media {
    margin: 25px 0;
}

.social-media a {
    background: white;
    width: 60px;
    height: 60px;
    display: inline-flex;
    border: 1px solid var(--black);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 0px 0px rgba(149, 46, 49, 1), 4px 4px 0px 0 rgba(0, 0, 0, 1);
    margin-right: 10px;
    transition: 0.5s all;
}

.social-media a:hover {
    box-shadow: 0px 0px 0px 0px rgba(149, 46, 49, 1), 0px 0px 0px 0 rgba(0, 0, 0, 1);
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.social-media a:hover #social path {
    fill: var(--white);
}

.compny-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.foot-link h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 24px;
}

.foot-link li {
    font-size: 18px;
    font-weight: var(--font-weight-medium);

    margin-bottom: 20px;
}

.foot-link li a {
    color: var(--black);
}

.info-text {
    display: flex;
    align-items: flex-start;
}

.info-text img {
    width: 22px;
    margin-right: 10px;
}

.foot-link {
    width: 190px;
}

.foot-link.info {
    width: 305px;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    padding: 22px 22px;
    border: 1.2px solid var(--black);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.compney {
    width: 65%;
}

.compney {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--white);
}

.polices {
    width: 35%;
}

.polices ul {
    display: flex;
    justify-content: flex-end;
}

.polices ul li {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    margin: 0px 15px;
}

.polices ul li a {
    color: var(--white);
}

.banner-title-head h2 {
    font-size: 60px;
    line-height: normal;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    padding-bottom: 24px;
}

.inner-benner p {
    font-size: 32px;
    line-height: normal;
    font-weight: var(--font-weight-light);
    color: var(--black);
    padding-bottom: 30px;
}

.servies-info {
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.inner-info-servies {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--black);
    border-radius: 30px;
    background: #F7F4F3;
}

.left-part .servies--img {
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.right-part .servies-deliver-info {
    text-align: right;
    padding: 0 40px 0 0px;
}

.left-part .servies-deliver-info {
    text-align: left;
    padding: 0 0 0 40px;
}

.right-part .servies--img {
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.offer-section {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 0px 0px 30px 30px;
}

.offer-list ul {
    display: flex;
    flex-wrap: wrap;
}

.offer-list ul li {
    font-size: 18px;
    color: var(--white);
    font-weight: var(--font-weight-light);
    padding: 12px 30px;
    position: relative;
    width: 50%;
}

.offer-list ul li::before {
    position: absolute;
    content: "";
    background: url(../images/tickmark.svg);
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    left: 0;
    top: 11px;
    bottom: 0;
}

.title-head h3 {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    line-height: normal;
    margin-bottom: 10px;
}

.title-head.white h3 {
    color: var(--white);
}

.title-head.black h3 {
    color: var(--black);
}

.title-head h6 {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    line-height: normal;
    margin-bottom: 10px;
}

.base-content p {
    font-size: 22px;
    font-weight: var(--font-weight-light);
    line-height: normal;
    margin-bottom: 10px;
}

.servies--btn {
    margin-top: 24px;
}

.servies--btn .btn.btn--primary {
    font-size: 16px;
    padding: 5px 15px;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1);
}

.servies--btn .btn.btn--primary span svg {
    width: 23px;
    height: 36px;
    margin-left: 5px;
}

.accordion {
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #DFC1C1;
    background-color: transparent;
    margin: 10px 0;
}

.accordion-header {
    padding: 20px;
    background: transparent;
    color: var(--black);
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    position: relative;
}

.accordion-content {
    display: none;
    padding: 0 0 0 15px;
    background: transparent;
    font-size: 22px;
    line-height: 28px;
    font-weight: 300;
    color: var(--white);
}

.accordion-item.active {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 0px 20px 20px 0px;
}

.accordion-item.active .accordion-header {
    color: var(--white);
}

.row.why--choose {
    display: flex;
    align-items: center;
}

.row.why--choose .title-head p {
    font-size: 22px;
}

.our-process .card-slider {
    border: 1px solid transparent;
}

.our-process .card-slider:hover {
    border: 1px solid var(--black);
}

.slider-line-img {
    margin-bottom: 20px;
    position: absolute;
    top: 0px;
    right: -120px;
}
.slider-section
{
    position: relative;
    overflow: hidden;
    padding: 50px 0 0;
}
.faq-item {
    margin: 0px 0 20px;
    padding: 25px 30px;
    background: var(--white);
    color: var(--black);
    border-radius: 22px;
    border: 1px solid var(--black);
}

.faq-question {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    position: relative;

}

.faq-item.active .faq-question {
    border-bottom: 1px solid #DFC1C1;
    padding-bottom: 20px;
}

.faq-question::after {
    content: "";
    position: absolute;
    background: url(../images/down-arrow.png);
    background-repeat: no-repeat;
    right: 1px;
    transition: 0.3s;
    width: 26px;
    height: 23px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: 30px;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 0px;
    border-radius: 5px;
}

.faq-answer p {

    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
}

.faq--section p {
    font-size: 22px;
    font-weight: var(--font-weight-light);
    line-height: 26px;
    margin-top: 20px;
}

.contect-info-form {
    padding: 50px 0 50px 0;
    display: flex;
    align-items: center;
}

.contect-info {
    position: relative;
}

.head--box {
    background: #F7F4F3;
    color: var(--primary-color);
    border: 1px solid var(--black);
    border-radius: 30px;
    padding: 30px;
    width: 200px;
    height: 252px;
    position: absolute;
    left: -75px;
    top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom--box {
    font-size: 24px;
    font-weight: var(--font-weight-medium);
    color: var(--black);
    background: #F7F4F3;
    border-radius: 30px;
    border: 1px solid var(--black);
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: absolute;
    right: 173px;
    bottom: 0;
}
#services 
{
    color: white;
}
.bottom--box span {
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    text-decoration: underline;
}

.form-container {
    padding: 20px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    /* position: absolute;
    bottom: 18px; */
}

.service--page .form-container input,
.service--page .form-container select,
.service--page .form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--white);
    border-radius: 0px;
    font-size: 16px;
    background: transparent;
    color: var(--white);
}

#contactForm button {
    background: white;
    color: var(--primary-color);
    padding: 15px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: capitalize;
}

button:hover {
    background: #f4f4f4;
}

.form-field {
    position: relative;
    margin-bottom: 20px;
}

.about-benner-container {
    position: relative;
}

.about-benner-container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 66%;
    right: -10px;
    bottom: -7px;
    background: var(--primary-color);
    border-radius: 30px;
    z-index: 1;
}

.about-banner-img {
    z-index: 3;
    position: relative;
}

.banner-head {
    width: 611px;
    background: var(--white);
    border-radius: 30px;
    padding: 0 10px;
    position: absolute;
    top: 0;
}

.banner-head .title-head h2 {
    text-transform: uppercase;
    font-size: 60px;
}

.banner-head p {
    font-size: 22px;
    font-weight: var(--font-weight-light);
    line-height: normal;
}

.banner-bottom {
    position: absolute;
    right: 70px;
    bottom: 40px;
    z-index: 5;
}

.about-who-section {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.about--quate--part {
    position: relative;
}

.about-who-img {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.about-who-img img {
    margin: 5px 0;
}

.about-who-we {
    background: #F7F4F3;
    padding: 30px 30px 75px 30px;
    border-radius: 30px;
}

.about-who-img .piece1 {
    transform: translateX(0px);
    transition: 0.5s all;
}

.about-who-img .piece2 {
    transform: translateX(-55px);
    transition: 0.5s all;
}

.about-who-img .piece3 {
    transform: translateX(0px);
    transition: 0.5s all;
}

.about-who-img:hover .piece1 {
    transform: translateX(-55px);
    transition: 0.5s all;
}

.about-who-img:hover .piece2 {
    transform: translateX(0px);
    transition: 0.5s all;
}

.about-who-img:hover .piece3 {
    transform: translateX(-55px);
    transition: 0.5s all;
}

.outer-contain {
    position: relative;
    height: 632px;
}

.who-are .title-head h2 span {
    color: var(--primary-color);
}

.who-are .about--image {
    background: white;
    padding: 10px;
    border: 1px solid var(--black);
    border-radius: 10px;
    box-shadow: 3px 0px 0px 0px rgba(0, 0, 0, 1);
}

.about-quote {
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    width: 514px;
    background: var(--white);
    border-radius: 0px 30px 0px 0px;
    padding: 15px 10px 10px 30px;
    position: absolute;
    bottom: 0;
    height: 75px;

}

.about-quote::before {
    position: absolute;
    content: "";
    background: var(--primary-color);
    width: 112px;
    height: 2px;
    left: 30px;
    bottom: -5px;
}

.vission-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 400px;
}

.vission-content h2 {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.vission-card {
    position: relative;

}

.vission-head {
    margin-bottom: 50px;
    position: relative;
}

.vission-head::before {
    position: absolute;
    content: "";
    background: var(--white);
    width: 112px;
    height: 2px;
    left: 0px;
    bottom: -30px;

}

.vission-card::before {
    position: absolute;
    content: '';
    background: var(--primary-color);
    background-repeat: no-repeat;
    width: 510px;
    height: 520px;
    background-size: contain;
    z-index: 0;
    border-radius: 30px;
}

.vission-card::after {
    position: absolute;
    content: '';
    background: transparent;
    border: 1px solid var(--black);
    width: 520px;
    height: 480px;
    z-index: -1;
    bottom: -65px;
    border-radius: 30px;
    right: 30px;
}

.outer-icon {
    background: white;
    position: absolute;
    right: -112px;
    top: -2px;
    width: 120px;
    height: 120px;
    border-radius: 0px 0px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vission-content p {
    font-size: 24px;
    font-weight: var(--font-weight-light);
    color: var(--white);
    width: 100%;
    margin-bottom: 15px;
}

.vission-content-info {
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    width: 430px;
}

.vission-img {
    background: #F7F4F3;
    padding: 20px;
    border-radius: 26px;
}

.vission-img img {
    width: 52px;
}

.vission-mission {
    height: 700px;
    margin-top: 70px;
}

.right-mission {
    transform: translateY(140px);
}

.vission-card.right-mission::after {
    bottom: -120px;
}

.core-value {
    position: relative;
    background: url(../images/back-dropp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.core-value::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(149, 46, 49, 0.8);
    z-index: 0;

}

.core-value-section {
    position: relative;
    z-index: 1;
}

.core-value-section .title-head h2 {
    border: 1px solid var(--white);
    border-radius: 30px;
    padding: 15px 0;
}

/* Section container */

.commitment-section {
    margin: 40px 0;
    position: relative;
}

.icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

/* Horizontal line */
.commitment-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 1px;
    height: 100%;
    background: white;
    right: 0;
    margin: auto;
}

.commitment:last-child::before {
    display: none;
}

.commitment-box {
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 75px;
    border-radius: 10px;
    color: var(--white);
    font-size: 32px;
    font-weight: var(--font-weight-semibold);
    width: 50%;
}

.commitment::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    width: 50%;
    height: 1px;
    background-color: var(--white);
    bottom: 1px;
    margin: auto;
    transition: 0.5s all;
}

.commitment-section:hover .commitment::before {
    width: 100%;
}

.commitment {
    display: flex;
    align-items: center;
    padding: 6px 0px;
    position: relative;
}

.commitment .content {
    width: 50%;
    color: var(--white);
    font-size: 22px;
    font-weight: var(--font-weight-light);
    padding: 0 0px 0 30px;
}

.leadership-section .outer-contain .about-who {
    padding: 30px;
    width: 489px;
    border: 1px solid #952E31;
    border-radius: 30px;
    position: absolute;
    top: 45%;
    background: white;
    left: 12%;
    height: 342px;
}

.leadership-section .image-cont .outer-contain .about-who {
    height: 385px;
}

.image-cont .about-who p {

    margin-bottom: 24px;
}


.about-who p {
    font-size: 22px;
    font-weight: var(--font-weight-light);
    margin-bottom: 15px;
}

.founder-co {
    margin-top: 10px;
}

.founder-co h6 {
    text-align: right;
    font-weight: var(--font-weight-semibold);
    font-size: 20px;
}

.founder-co p {
    text-align: right;
    font-weight: var(--font-weight-light);
    font-size: 18px;
}

.quote-line {
    position: absolute;
    left: 0;
    right: 0;
    width: 25%;
    height: 1px;
    bottom: -94px;
    background: var(--primary-color);
    margin: auto;
}

.quote--line {
    position: absolute;
    left: 0;
    right: 0;
    width: 25%;
    height: 1px;
    top: -87px;
    background: var(--primary-color);
    margin: auto;
}

.image-cont .outer-contain {
    transform: translateY(90px);
}

.about-cta {
    background: var(--white);
    border-radius: 30px;
    margin: 20px 0;
    padding: 60px 0;
}

.contact-page .form-container input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--black);
    border-radius: 0px;
    font-size: 16px;
    background: transparent;
    color: var(--black);
}

.contact-page .form-container label {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 5px;
    /* position: absolute;
    bottom: 18px; */
}

.contact-page .form-container #contactForm button {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: capitalize;
}

/* Input field */
/* .input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    background: transparent;
} */

/* Label styling */
/* .input-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
} */

/* Move label up when input is focused or clicked */
/* .input-field.focused + .input-label {
    top: 0;
    left: 10px;
    font-size: 12px;
    color: #3498db;
    background: white;
    padding: 0 5px;
    
} */
footer .row {
    align-items: center;
}

.case-categories {
    margin: 30px 0;
}

.tab-container {
    width: 400px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    flex: 1;
    padding: 15px 23px;
    border: 1px solid var(--black);
    background: #F7F4F3;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
    transition: 0.3s;
    line-height: 28.2px;
    margin-right: 10px;
    color: var(--black);
}

.tab-btn.active {
    background: #FFDFE0;
    color: var(--primary-color);
}

/* Tab Content */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.case-studies {
    display: flex;
    background: #F7F4F3;
    border: 1px solid var(--black);
    border-radius: 30px;
    margin: 30px 0;
    padding: 0px 0 0 0;
    align-items: flex-end;
}

.case-studies.right-bottom-side {
    align-items: flex-start;
}

.img-container {
    height: 500px;
    object-fit: cover;
    border-radius: 0 30px 0 30px;
}

.case-studies.left-top-side .case-imge img {
    width: 100%;
    height: 100%;
    border-radius: 0 30px 0 30px;
    transition: transform 0.5s ease-in-out;

}

.case-studies.right-bottom-side .case-imge img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 30px;
    transition: transform 0.5s ease-in-out;


}

.right-bottom-side .case-content {
    padding: 30px 80px 40px 50px;
}

.case-content h2 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    color: var(--black);
}

.case-content h5 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 25px;
}

.case-content p {
    font-size: 22px;
    line-height: 25px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 10px;
}

.case-imge {
    flex: 1 0 40%;
    height: 500px;
    /* Adjust as needed */
    overflow: hidden;
    /* Ensures image stays within bounds */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.case-content {
    flex: 1 0 60%;
}

.case-content {
    padding: 30px 60px 40px 80px;
}

.case-imge.casetwo {
    border-radius: 0px 30px 0 30px;
}

.casetwo .img-container {
    height: 550px;
    object-fit: cover;
    border-radius: 20px 30px 45px 30px;

}

.case-content.case-content.casethree {
    padding: 30px 60px 130px 80px;
}

.case-imge.case-imge.casethree {
    flex: 1 0 40%;
    height: 400px;
    border-radius: 0px 30px 0 30px;
}

.case-content.casefour {
    padding: 30px 80px 130px 50px;
}

.case-content.casetwo {
    padding: 30px 80px 100px 50px;
}

.case-imge.casefour {
    border-radius: 0px 30px 0 30px;
    height: 550px;
}

.casefour .img-container {
    height: 600px;
    object-fit: cover;
    border-radius: 0 30px 0 30px;
}

/* .img-container:hover img {
    transform: translate(20px, -20px);
} */
.succes-msg {
    margin: 15px 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: white;
    font-weight: 300;
}

.succes-msg img {
    margin-right: 10px;
}

.contact-page .succes-msg {
    color: green;
}

.our-work.header-top-color::before {
    height: 65%;
}

.our-work p {
    color: white;
    font-size: 20px;
    font-weight: 300;
}

.contact-page.header-top-color::before {
    height: 40%;
}

.leadership-section {
    margin: 20px 0;
    height: 800px;
}
.desktop-view
{
    display: block;
}
.mobile-view
{
    display: none;
}
.row.row.contact_main{
    margin: 0 0 30px 0;
}
#contactForm p{
    color: white;
    margin: 0px 0 10px;
    text-align: center;
} 
#contactForm p a{
    color: #E3CCCC;
    text-decoration: underline;
}
.serv-img
{
    position: relative;
}
.serv-img::before
{
    position: absolute;
    content: "";
    background: url(../images/servies-bannerback.png);
    background-repeat: no-repeat;
    background-size: 98%;
    width: 100%;
    height: 100%;
    left: 13px;
    top: 10px;
    z-index: -1;
    border-radius: 35px;
}
.service--process p
{
    font-size: 22px;
    line-height: normal;
    color: var(--black);
    padding: 5px 0;
}
.bottom--box img
{
    width: 85px;
    display: block;
    margin: auto;

}
@media screen and (max-width: 1399px) and (min-width: 1299px) {
    .main-baner::after {
        background-size: 406px 175px;
        width: 410px;
        height: 170px;
        left: -6px;
        bottom: -1px;
    }

    .banner-btn {
        position: relative;
        z-index: 1;
        left: 3px;
        top: 60px;
        bottom: 0;
    }

    .bottom--box {
        font-size: 22px;
        width: 192px;
        height: 145px;
        padding: 20px;
        right: 5px;
        bottom: -30px;
    }

    .head--box {
        padding: 20px;
        width: 180px;
        height: 220px;
        left: -60px;
        top: -22px;
    }

    .contact-page.header-top-color::before {
        height: 47%;
    }

    .leadership-section .outer-contain .about-who {
        width: 450px;
        height: 370px;
    }

    .leadership-section .image-cont .outer-contain .about-who {
        height: 400px;
    }

    .vission-card::after {
        width: 440px;
        height: 490px;
        bottom: -55px;
        right: 15px;

    }

    .about--quate--part {
        position: relative;
        margin: 0px 50px 0 0;
    }

    .banner-head .title-head h2 {
        font-size: 55px;
    }

    .banner-head {
        width: 510px;
        top: -10px;
    }

    .banner-bottom {
        right: 22px;
        bottom: 28px;
    }
    .card-title {
        font-size: 30px;
    }
    .serv-img::before {
        left: 21px;
        top: 22px;
    }
    
}

@media screen and (max-width: 1299px) and (min-width: 1199px) {
    .main-baner::after {
        background-size: 386px 175px;
        width: 400px;
        height: 180px;
        left: -8px;
        bottom: -4px;
    }

    .banner-btn {
        position: relative;
        z-index: 1;
        left: 18px;
        top: 65px;
        bottom: 0;
    }

    .btn--primary {
        font-size: 28px;
        padding: 6px 15px;
        box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    }

    .bottom--box {
        font-size: 22px;
        width: 192px;
        height: 145px;
        padding: 20px;
        right: 5px;
        bottom: -30px;
    }

    .head--box {
        padding: 20px;
        width: 170px;
        height: 205px;
        left: -44px;
        top: -5px;
    }

    .contect-info-form .title-head h2 {
        font-size: 34px;
    }

    .contact-page.header-top-color::before {
        height: 47%;
    }

    .leadership-section .outer-contain .about-who {
        width: 450px;
        height: 370px;
    }

    .leadership-section .image-cont .outer-contain .about-who {
        height: 400px;
    }

    .vission-card::after {
        width: 440px;
        height: 490px;
        bottom: -55px;
        right: 15px;

    }

    .about--quate--part {
        position: relative;
        margin: 0px 50px 0 0;
    }

    .banner-head .title-head h2 {
        font-size: 55px;
    }

    .banner-head {
        width: 510px;
        top: -10px;
    }

    .banner-bottom {
        bottom: 28px;
    }
    .card-title {
        font-size: 26px;
    }
    .card-content.double-line {
        height: 50%;
    }
    .card-content {
        height: 39%;
    }
    .serv-img::before {
        left: 21px;
        top: 22px;
    }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .main-baner::after {
        background-size: 338px 165px;
        width: 353px;
        height: 180px;
        left: -10px;
        bottom: -9px;
    }

    .banner-btn {
        position: relative;
        z-index: 1;
        left: 4px;
        top: 70px;
        bottom: 0;
    }

    .btn--primary {
        font-size: 24px;
        padding: 6px 15px;
        box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    }

    .bottom--box {
        font-size: 22px;
        width: 238px;
        height: 178px;
        padding: 20px;
        right: 5px;
        bottom: -21px;
    }

    .head--box {
        padding: 20px;
        width: 150px;
        height: 180px;
        left: -28px;
        top: 15px;
    }

    .contect-info-form .title-head h2 {
        font-size: 30px;
    }

    .contact-page.header-top-color::before {
        height: 47%;
    }

    .leadership-section .outer-contain .about-who {
        width: 402px;
        height: 390px;
        left: 8%;
    }

    .leadership-section .image-cont .outer-contain .about-who {
        height: 435px;
    }

    .about-who p {
        font-size: 20px;
    }

    .image-cont .outer-contain {
        transform: translateY(65px);
    }

    .commitment-box {

        padding: 15px 20px 15px 25px;
        font-size: 28px;
    }

    .commitment .content {
        font-size: 18px;
        padding: 0px 0px 8px 20px;
    }

    .vission-card::before {
        width: 100%;
        height: 435px;
    }

    .vission-content p {
        font-size: 22px;
    }

    .vission-card::after {
        content: none;
    }

    .right-mission {
        transform: translateY(0px);
    }

    .vission-card.right-mission::after {
        bottom: -80px;
    }

    .vission-mission {
        height: auto;
        margin-top: 60px;
        margin-bottom: 29px;
    }

    .vission-content-info {
        margin-top: 70px;
        width: 400px;
    }

    .outer-icon {
        right: -57px;
    }

    .about--quate--part {
        position: relative;
        margin: 0px 50px 0 0;
    }

    .about-who-we {
        background: #F7F4F3;
        padding: 20px 20px 75px 20px;
        border-radius: 30px;
    }

    .about-who-we p {
        font-size: 18px;
        font-weight: var(--font-weight-light);
        color: var(--black);
        margin-bottom: 20px;
    }

    .about-quote {
        font-size: 20px;
        width: 430px;
        height: 70px;
    }

    .about-who-section {
        align-items: center;
    }

    .banner-head .title-head h2 {
        font-size: 40px;
        text-align: left;
    }

    .banner-head {
        width: 453px;
        top: -10px;
    }

    .banner-bottom {
        bottom: 20px;
        right: 40px;
    }
    .custom-card {
        flex: 0 0 calc(50% - 10px);
    }
    .card-title {
        font-size: 28px;
    }
    .card-content.double-line {
        height: 42%;
    }
    .custom-grid {
        justify-content: center;
        gap: 20px;
    }
    .serv-img::before {
        left: 19px;
        top: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .case-studies.left-top-side {
        flex-direction: column-reverse
    }

    .case-content {
        padding: 30px;
    }

    .case-content,
    .case-imge {
        flex: 1 0 100%;
        width: 100%;
        justify-content: flex-start;
    }

    .left-top-side .img-container {
        height: 500px;
        object-fit: fill;
        border-radius: 0 30px 0 30px;
        width: 900px;
    }

    .right-bottom-side .img-container {
        height: 500px;
        object-fit: fill;
        border-radius: 30px 0px 30px 0px;
        width: 900px;
    }

    .right-bottom-side .case-content {
        padding: 30px;
    }

    .case-studies.right-bottom-side {
        flex-direction: column;
    }

    .case-studies.right-bottom-side {
        align-items: flex-end;
    }

    .case-imge.casetwo {
        border-radius: 30px;
        justify-content: flex-end;
    }

    .case-content.case-content.casethree {
        padding: 30px;
    }

    .case-content h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .case-content h5 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 15px
    }

    .case-content p {
        font-size: 18px;
        line-height: 24px;
    }

    .contact-page.header-top-color::before {
        height: 47%;
    }
}

@media screen and (max-width: 991.99px) {
    .btn--primary {
        font-size: 24px;
        padding: 6px 15px;
        box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    }

    .footer-bar {
        padding: 10px 15px;
        flex-direction: column-reverse;
    }

    .slick-slide .card-slider h3 {
        font-size: 26px;

    }

    .compney,
    .polices {
        width: 100%;
        text-align: center;
    }

    .polices ul {
        justify-content: center;
        margin: 0px 0 10px;
    }

    .polices ul li {
        margin: 0;
        border-right: 2px solid white;
        padding: 0 15px;
    }

    .polices ul li:last-child {
        border-right: 1px solid transparent;
    }

    footer {
        border: 1px solid transparent;
    }

    .compny-info {
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .social-media {
        margin: 0px 0 25px;
    }

    .social-media h3 {
        font-size: 22px;
        font-weight: var(--font-weight-bold);
        color: var(--primary-color);
        margin-bottom: 18px;
    }

    .social-media a {
        width: 40px;
        height: 40px;
        box-shadow: 2px 2px 0px 0px rgba(149, 46, 49, 1), 3px 3px 0px 0 rgba(0, 0, 0, 1);
    }

    .social-media a svg {
        width: 15px;
    }

    .testimonial-section .left-side {
        max-width: 100%;
        width: 100%;
        height: auto;
        text-align: center;
        align-items: center;
    }

    .mobile-btn {
        margin: auto;
        width: 150px;
    }

    .title-head h2 {
        font-size: 28px;
        text-align: center;
    }

    .case-study-title {
        padding: 32px 0 0 0px;
    }

    .case-study p {
        font-size: 22px;
        margin: 30px 30px 30px;
    }

    .card-slider {
        background: #F7F4F3;
        border: 0.088rem solid var(--primary-color);
        margin: 10px 10px;
    }

    .flex--box {
        justify-content: center;
    }

    .slick-continuous-slider .slick-slide img {
        width: 70px;
    }

    .slick-continuous-slider .slick-item {
        margin: 0 10px;
    }

    .who-we-are span.quetion-mark {
        font-size: 25px;
        height: 40px;
        width: 40px;
    }

    .slider img {
        border-radius: 20px;
        height: 350px;
        width: 100%;
        object-fit: cover;
    }

    .banner-content {
        padding: 0px 20px;
    }

    .main-baner::after {
        content: none;
    }

    .banner-box {
        border-radius: 10px;
        background-color: #F7F4F3;
        padding: 15px;
        position: relative;
        width: 100%;
        right: 0;
        bottom: 0;
    }

    .custom-box {
        background-color: var(--primary-color);
        border-radius: 10px;
        height: auto;
        padding: 25px 25px;
    }

    .banner-btn {
        position: relative;
        z-index: 1;
        left: 0;
        top: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
    }

    .main-baner {
        height: auto;
        background: #F7F4F3;
        padding: 20px 0px;
        border: 1px solid var(--black);
        border-radius: 30px;
    }

    .custom-box h1,
    .custom-box h2 {
        font-size: 38px;
    }

    .banner-icon-wrapper {
        width: 85px;
    }

    .banner-icon-wrapper img {
        width: 35px;
    }

    .bottom--box {
        right: 114px;
    }

    .head--box {
        padding: 20px;
        width: 143px;
        height: 200px;
        left: -11px;
        top: 3px;
    }

    .form-container {
        margin: 40px 0 0;
    }

    .contect-info-form {
        padding: 50px 0 0px 0;

    }

    .contact-page.header-top-color::before {
        height: 43%;
    }

    .outer-contain {
        position: relative;
        height: 100%;
        margin: 10px 0;
    }

    .leadership-section .outer-contain .about-who {
        padding: 20px;
        width: 100%;
        top: unset;
        background: white;
        left: 23%;
        height: auto;
        bottom: 13px;
    }

    .image-cont .outer-contain {
        transform: translateY(0px);
    }

    .leadership-section .image-cont .outer-contain .about-who {
        height: auto;
    }

    .leadership-section {
        margin: 20px 0;
        height: auto;
    }

    .commitment-box {
        padding: 15px 20px 15px 0px;
        font-size: 28px;
    }

    .commitment .content {
        font-size: 18px;
        padding: 8px 0px 8px 0px;
    }

    .core-value-section .title-box {
        margin: auto;
        width: 40%;
    }

    .vission-mission {
        height: auto;
        margin-top: 70px;
    }

    .right-mission {
        transform: translateY(0px);
    }

    .vission-content {
        position: relative;
        z-index: 2;
        padding: 30px;
        width: 85%;
    }

    .vission-card::after {
        content: none;
    }

    .vission-card::before {
        width: 100%;
        height: 100%;
    }

    .vission-content-info {
        width: 100%;
    }

    .vission-card {
        margin: 20px 0;
    }

    .about--quate--part {
        position: relative;
        margin: 0px 0 38px;
    }

    .about-who-img:hover .piece1,
    .about-who-img .piece2,
    .about-who-img:hover .piece3 {
        transform: translateX(0px);
        transition: 0.5s all;
    }

    .about-who-img {
        align-items: center;
    }

    .banner-bottom .btn--primary {
        font-size: 20px;
    }

    .banner-bottom {
        right: 10px;
        bottom: 10px;
    }

    .banner-head .title-head h2 {
        text-transform: uppercase;
        font-size: 30px;
        text-align: left;
    }

    .banner-head {
        width: 340px;
        top: -8px;
    }

    .banner-head p {
        font-size: 16px;
    }

    .btn--primary.black span svg,
    .cta-btn .btn.btn--primary span svg,
    .btn.btn--primary span svg {
        width: 27px;
        height: 40px;
    }
    .servies-info {
        padding: 20px 0;
    }
    .left-part .servies-deliver-info{
        text-align: center;
        padding: 0 20px 25px;
    }
    .right-part .servies-deliver-info {
        text-align: center;
        padding: 20px 20px 25px;
    }
    .title-head h3 {
        font-size: 26px;
    }
    .title-head h6 {
        font-size: 20px;
    }
    .base-content p {
        font-size: 16px;
    }
    .left-part .servies--img, .right-part .servies--img {
        justify-content: center;
    }
    .left-part .servies--img img, .right-part .servies--img img
    {
        width: 90%;
        border-radius: 30px;
        margin: auto;
        display: block;
    }
    .offer-list ul {
        flex-direction: column;
    }
    .offer-list ul li {
        width: 100%;
    }
    .accordion-header {
        font-size: 26px;
    }
    .accordion-content {
        font-size: 18px;
        line-height: 24px;
    }
    .accordion {
        border-radius: 5px;
        overflow: hidden;
        margin: 20px 0;
    }
    .row.why--choose .title-head p {
        font-size: 20px;
        text-align: center;
        margin: 10px 0 0;
    }
    .banner-title-head h2 {
        font-size: 42px;
        padding-bottom: 16px;
    }
    .inner-benner p {
        font-size: 26px;
        padding-bottom: 20px;
    }
    .banner-img {
        width: 60%;
        margin: auto;
        padding: 40px 0 0 0;
    }

    .custom-card {
        flex: 0 0 calc(50% - 10px);
    }
    .custom-card .card-content,
.custom-card .card-content.double-line {
    position: static;
    /* Remove absolute positioning */
    height: auto;
    /* Allow content to adjust naturally */
    width: 100%;
    margin: 0;
}

.custom-card:hover {
    transform: none;
    /* Disable hover effect */
    box-shadow: none;
    /* Keep default shadow */
    border: 1px solid var(--black);
}

.custom-card .hover-description {
    display: block;
    /* Always show description */
}

.card-title {
    font-size: 26px;
    margin-bottom: 10px;
}
.custom-grid {
    justify-content: center;
    gap: 20px;
}
.serv-img::before {
    left: 15px;
    top: 56px;
}
}

@media screen and (max-width: 767.99px) {
    .case-study.one {
        flex-direction: column-reverse;
    }

    .custom-box h1,
    .custom-box h2 {
        font-size: 28px;
    }

    .btn--primary.black span svg,
    .cta-btn .btn.btn--primary span svg,
    .btn.btn--primary span svg {
        width: 28px;
        height: 40px;
        margin-left: 10px;
        transform: rotate(-35deg);
        transition: 0.5s all;
    }

    .right-bottom-side .case-content {
        padding: 20px;
    }

    .case-content.case-content.casethree {
        padding: 20px;
    }

    .case-content {
        padding: 20px;
    }

    .case-content h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .case-content h5 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px
    }

    .case-content p {
        font-size: 16px;
        line-height: 24px;

    }

    .left-top-side .img-container,
    .right-bottom-side .img-container {
        height: 320px;
        width: 480px;
    }

    .case-imge.casefour {
        border-radius: 30px 0px 30px 0px;
        height: 550px;
    }

    .case-imge.casefour {
        justify-content: flex-end
    }

    .bottom--box {
        right: 17px;
        font-size: 19px;
        width: 120px;
        height: 120px;
        padding: 19px;
        bottom: 2px;
        border-radius: 20px;
    }

    .contact-page.header-top-color::before {
        height: 40%;
    }

    .about-cta {
        padding: 35px 0;
    }

    .outer-contain img {
        width: 100%;
    }

    .leadership-section .outer-contain .about-who {
        padding: 20px;
        width: 90%;
        border-radius: 30px;
        position: relative;
        top: -3%;
        background: white;
        left: 0%;
        height: auto;
        right: 0;
        margin: auto;
    }

    .quote-line,
    .quote--line {
        display: none;
    }

    .outer-contain {
        position: relative;
        margin: 10px 0;
    }

    .who-are .about--image {
        display: none;
    }

    .core-value-section .title-box {
        margin: auto;
        width: 53%;
    }

    .commitment-section::after {
        content: none;
    }

    .commitment {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .commitment-box,
    .commitment .content,
    .commitment::before {
        width: 100%;
    }

    .commitment-box {
        padding: 15px 20px 15px 0px;
        font-size: 24px;
    }

    .commitment-box .icon img {
        width: 60px;
    }

    .icon {
        width: 50px;
        height: 50px;
        margin-right: 24px;
    }

    .core-value-section .title-box {
        margin: auto;
        width: 100%;
    }

    .outer-icon {
        right: -78px;
    }

    .about-quote {
        font-size: 18px;
        width: 350px;
        padding: 8px 10px 10px 10px;
    }

    .about-benner-container {
        position: relative;
        border: 1px solid var(--primary-color);
        padding: 20px;
        border-radius: 30px;
    }

    .about-benner-container::before {
        content: none;
    }

    .banner-head {
        position: relative;
        width: 100%;
        top: unset;
        margin-bottom: 10px;
    }
    .banner-bottom 
    {
        position: relative;
        bottom: unset;
        right: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0 0;
    }
    .desktop-view
{
    display: none;
}
.mobile-view
{
    display: block;
}
.servies-info {
    padding: 20px 0;
}
.left-part .servies-deliver-info{
    text-align: center;
    padding: 0 20px 25px;
}
.right-part .servies-deliver-info {
    text-align: center;
    padding: 20px 20px 25px;
}
.title-head h3 {
    font-size: 26px;
}
.title-head h6 {
    font-size: 20px;
}
.base-content p {
    font-size: 16px;
}
.left-part .servies--img, .right-part .servies--img {
    justify-content: center;
}
.left-part .servies--img img, .right-part .servies--img img
{
    width: 90%;
    border-radius: 30px;
    margin: auto;
    display: block;
}
.offer-list ul {
    flex-direction: column;
}
.offer-list ul li {
    width: 100%;
}
.accordion-header {
    font-size: 22px;
}
.accordion-content {
    font-size: 16px;
    line-height: 24px;
}
.custom-card {
    flex: 0 0 100%;
    /* 1 card per row for small screens */
    height: auto;
    /* Adjust height for small screens */
}
.faq--section p {
    font-size: 16px;
    line-height: 23px;
    margin-top: 13px;
}
.faq-answer {
    padding: 0px 0px;
    border-radius: 5px;
}
.faq-item.active .faq-question {
    padding-bottom: 15px;
}
.faq-question {
    font-size: 20px;
}
.faq-item {
    margin: 0px 0 15px;
    padding: 15px 15px;
    background: var(--white);
    color: var(--black);
    border-radius: 15px;
    border: 1px solid var(--black);
}
.serv-img::before {
    left: 12px;
    top: 53px;
}
}

@media screen and (max-width: 492.99px) {
    .case-study.one {
        flex-direction: column-reverse;
    }

    .custom-box h1,
    .custom-box h2 {
        font-size: 22px;
        filter: drop-shadow(2px 3px 0px var(--primary-color)) drop-shadow(1px 0px 0px white) drop-shadow(0px 1px 0px white) drop-shadow(-1px 0px 0px white) drop-shadow(0px -1px 0px white);
    }

    .banner-icon-wrapper {
        width: 50px;
    }

    .banner-icon-wrapper img {
        width: 30px;
    }

    .custom-box p {
        font-size: 20px;
        color: var(--white);
        font-weight: var(--font-weight-light);
        margin: 12px 0 0 0;
    }

    .custom-box {
        background-color: var(--primary-color);
        border-radius: 10px;
        height: auto;
        padding: 15px 15px;
    }

    .banner-icon-wrapper {
        margin-right: 8px;
    }

    .btn--primary {
        font-size: 20px;
        padding: 6px 15px;
        box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    }

    .testimonial--box {
        background: var(--white);
        border: 1px solid var(--black);
        border-radius: 20px;
        padding: 15px;
        margin: 20px 15px;
        height: auto;
    }

    .testimonial {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .testimonial-section {
        background: #F7F4F3;
        border: 1px solid var(--primary-color);
        border-radius: 30px;
        padding: 10px;
    }

    .left-top-side .img-container,
    .right-bottom-side .img-container {
        height: 220px;
        width: 357px;
    }

    .vission-content p {
        font-size: 18px;
    }

    .outer-icon {
        right: -57px;
    }

    .about-who p {
        font-size: 16px;
        font-weight: var(--font-weight-light);
        margin-bottom: 15px;
    }

    .about-quote {
        font-size: 15px;
        width: 280px;
        padding: 8px 10px 10px 10px;
    }
    .banner-bottom .btn--primary {
        font-size: 16px;
    }
    .btn--primary.black span svg, .cta-btn .btn.btn--primary span svg, .btn.btn--primary span svg {
        width: 25px;
        height: 32px;
    }
    .head--box {
        padding: 15px;
        width: 112px;
        height: 157px;
        left: -11px;
        top: 3px;
        border-radius: 20px;
    }
    .title-head h2 {
        font-size: 22px;
        text-align: center;
    }
    .bottom--box {
        right: 0px;
        font-size: 19px;
        width: 100px;
        height: 100px;
        padding: 9px;
        bottom: -3px;
        border-radius: 20px;
    }
    .serv-img::before {
        left: 10px;
        top: 51px;
    }
    .banner-title-head h2 {
        font-size: 32px;
        padding-bottom: 16px;
    }
    .inner-benner p {
        font-size: 22px;
        padding-bottom: 20px;
    }
    .offer-section {
        padding: 15px;
    }
    .offer-list ul li {
        font-size: 16px;
    }
    .accordion-header {
        font-size: 20px;
        padding: 15px;
    }
    .form-container {
        padding: 0;
        border-radius: 8px;
    }
}

@media screen and (max-width: 339.99px) {
    .polices ul {
        flex-direction: column;
    }

    .polices ul li {
        border-right: 2px solid transparent;
        padding: 5px 15px;
    }

    .testimonial--box {
        padding: 15px;
        margin: 12px 5px;
        height: 297px;
    }

    .testimonial-content p.role {
        font-size: 16px;
    }

    .testimonial-content h4 {
        font-size: 18px;
    }

    .title-head h2 {
        font-size: 26px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 7px;
    }

    .left-top-side .img-container,
    .right-bottom-side .img-container {
        height: 180px;
        width: 274px;
    }

    .vission-content h2 {
        font-size: 26px;
    }

    .vission-img {
        padding: 12px;
        border-radius: 20px;
    }

    .vission-content {
        z-index: 2;
        padding: 15px;
        width: 90%;
    }

    .vission-img img {
        width: 45px;
    }

    .outer-icon {
        right: -28px;
        width: 90px;
        height: 90px;
    }

    .about-quote {
        font-size: 15px;
        width: 225px;
        padding: 8px 10px 10px 10px;
    }
    .banner-bottom .btn--primary {
        font-size: 14px;
    }
    .btn--primary.black span svg, .cta-btn .btn.btn--primary span svg, .btn.btn--primary span svg {
        width: 20px;
        height: 22px;
    }
    .serv-img::before {
        left: 7px;
        top: 47px;
    }
    .banner-title-head h2 {
        font-size: 30px;
        padding-bottom: 16px;
    }
    .inner-benner p {
        font-size: 20px;
        padding-bottom: 20px;
    }
}