/*----------------------------------------------

[ALL CONTENTS]

1. Import
2. Root
3. Reset
4. General
5. Section
6. Helper Class
7. Header
9. Footer
10. Modal
12. All Media Queries

----------------------------------------------*/
/*----------------------------------------------
1. Import
----------------------------------------------*/
/* #region Import */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url(vendor/bootstrap.min.css);
@import url(vendor/animate.min.css);
@import url(vendor/aos.css);
@import url(vendor/all.min.css);
/* #endregion Import */
/*----------------------------------------------
2. Root
----------------------------------------------*/
/* #region Root */
:root {
    --primary-font: "Tajawal", sans-serif;
    --secondary-font: "Tajawal", sans-serif;
    --h1-size: 2.8rem;
    --h1-weight: 600;
    --h2-size: 3rem;
    --h2-weight: 600;
    --h3-size: 2rem;
    --h3-weight: 600;
    --h4-size: 1.5rem;
    --h4-weight: 600;
    --h5-size: 1.2rem;
    --h5-weight: 600;
    --h6-size: 1rem;
    --h6-weight: 600;
    --p-size: 1rem;
    --p-weight: 400;
    --header-bg-color: #121117;
    --nav-brand-height: 55px;
    --top-nav-item-color: #F5F5F5;
    --nav-item-color: #121117;
    --primary-color:  #4dbd98;
    --secondary-color: #4A5F6B;
    --white-color: #F9F9F9;
    --black-color: #040402;
    --grey-color: #f3f5f7;
    --dark-grey-color: #191919;
    --primary-t-color: #283C47;
    --secondary-t-color: #F5F5F5;
    --primary-p-color: #4A5F6B;
    --secondary-p-color: #E1E1E1;
    --primary-b-color: #F5F5F5;
    --primary-l-color: rgba(0, 0, 0, .12);
    --secondary-l-color: rgba(45, 49, 54, 0.09);
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2rem;
    --valid-color: #007A4D;
    --invalid-color: #E34F4F;
    --primary-bg-color: #FFFFFF;
    --primary-bg-color-2: #F6F9FE;
    --primary-bg-color-3: #E5E5E5;
    --secondary-bg-color: #040402;
    --secondary-bg-color-2: #111111;
    --secondary-bg-color-3: #191919;
    --card-bg-color: #16182D;
    --footer-bg-color: #121117;
    --transform-scale: scale3d(1.06, 1.06, 1.06);
    --transition-function: cubic-bezier(.645, .045, .355, 1);
    --transition-duration: 0.35s;
    --transition-duration-short: 0.25s;
}

/* #endregion Root */
/*----------------------------------------------
3. Reset
HTML5 display-role reset for older browsers
----------------------------------------------*/
/* #region Reset */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    overflow-x: hidden;
}

body {
    padding: 0 !important;
    background-color: #FEFEFE;
    font-family: var(--secondary-font);
    color: var(--primary-p-color);
}
body.odd {
    background-color: var(--secondary-bg-color);
    color: var(--secondary-p-color);
}

ol,
ul {
    padding-inline-start: 20px;
}

ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}

ul ul {
    list-style: circle;
}

pre,
code {
    display: block;
    margin: 1rem 0;
    color: var(--primary-color);
}

blockquote,
q {
    display: block;
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    border-inline-start: 5px solid var(--primary-bg-color-3);
    quotes: none;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
}

.odd blockquote,
q {
    border-inline-start: 5px solid var(--secondary-bg-color-3);
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

blockquote p,
q p {
    margin: 0;
}

figure {
    margin-bottom: 1.5rem;
}

figcaption {
    margin-bottom: 1.5rem;
    font-style: italic;
    padding: 1rem 1.5rem;
    border-inline-start: 5px solid var(--primary-bg-color-3);
}

.odd figcaption {
    border-inline-start: 5px solid var(--secondary-bg-color-3);
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 10px;
}
table tr:not(:last-child) {
    border-bottom: 1px solid;
    border-color: var(--primary-l-color);
}
table .odd tr:not(:last-child) {
    border-color: var(--secondary-l-color);
}
table td {
    padding: 10px 0;
}
table th {
    padding: 10px 0;
}

/* #endregion Reset */
/*----------------------------------------------
4. General
----------------------------------------------*/
/* #region General */
::-moz-selection {
    background: rgba(166, 175, 189, 0.3);
}

::selection {
    background: rgba(166, 175, 189, 0.3);
}

::-moz-selection {
    background: rgba(166, 175, 189, 0.3);
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

a:not(.btn),
a:link:not(.btn),
a:visited:not(.btn),
a:hover:not(.btn),
a:active:not(.btn) {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.4s ease-out 0s;
}

a:not([href]),
a:not([href]):hover,
a:not([href]) i,
a:not([href]) i:hover {
    color: var(--primary-b-color);
}

p {
    margin: 1.5rem 0;
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    line-height: 1.5;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
p:first-child {
    margin-top: 0;
}
p:last-child {
    margin-bottom: 0;
}

.odd:not(.comment) p {
    color: var(--white-color);
}

.page-template .odd p {
    opacity: 0.7;
}

.swiper-wrapper.odd p {
    opacity: 0.8;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    line-height: 1.2;
    font-family: var(--primary-font);
    color: var(--primary-t-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
h1 em {
    display: block;
    font-size: var(--h2-size);
    font-weight: 300;
}

h2 {
    margin: 1.5rem 0;
    font-size: var(--h2-size);
    font-weight: var(--h2-weight);
    line-height: 1.2;
    font-family: var(--primary-font);
    color: var(--primary-t-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.odd h2 {
    color: var(--white-color);
}

h3 {
    margin: 1.5rem 0;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--primary-font);
    color: var(--primary-t-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h4 {
    margin: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--primary-font);
    color: var(--primary-t-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.odd h4 {
    color: var(--secondary-t-color);
}

h5 {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--primary-font);
    color: var(--primary-t-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h6 {
    margin: 1.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--primary-font);
    color: var(--primary-t-color);
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

b,
strong {
    font-weight: 700;
}

li {
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

dt {
    margin: 15px 0;
}

address {
    margin-bottom: 1rem;
}

form {
    width: 100%;
}

input,
textarea,
select {
    width: 100%;
    height: 50px;
    background: no-repeat;
    box-shadow: none;
    padding: 0.7rem 1rem;
    border-color: var(--primary-l-color);
    border-width: 2px;
    border-radius: 0.375rem;
}

input {
    border-color: var(--primary-p-color);
    color: var(--primary-p-color);
}
input:focus {
    border-color: var(--primary-t-color);
    color: var(--primary-t-color);
}
input[type=radio] {
    height: initial;
}
input[type=submit] {
    border: 1px solid;
    padding: 2.5px 10px;
    display: block;
    width: fit-content;
    max-width: 200px;
    text-align: center;
    color: var(--primary-color);
}
input[type=submit]:hover {
    background-color: var(--primary-color);
    color: var(--primary-b-color);
    border-color: var(--primary-color);
}
input[type=checkbox] {
    padding: 0;
}

textarea {
    height: 100px;
    resize: none;
    border-color: var(--primary-p-color);
    color: var(--primary-t-color);
}
textarea:focus {
    border-color: var(--primary-t-color);
    color: var(--primary-t-color);
}

select {
    appearance: none;
    text-indent: 1px;
    text-overflow: "";
    line-height: 1.2;
    border-color: var(--primary-l-color);
    color: var(--primary-t-color);
}
select option {
    color: #2f323a;
}
select:focus {
    border-color: var(--primary-t-color);
    color: var(--primary-t-color);
}

.input-group .btn {
    border-radius: 0.375rem;
}

hr {
    margin: 35px 0;
    border-top: 1px solid var(--primary-l-color);
}

.odd hr {
    margin: 35px 15px;
    border-top: 1px solid var(--secondary-l-color);
}
.ms-16{
    margin-inline-start: 16px;
}
.me-16{
    margin-inline-end: 16px;
}
/* #endregion General */
/*----------------------------------------------
5. Section
----------------------------------------------*/
/* #region Section */
section {
    width: 100%;
    padding: 100px 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
section.no-hero {
    padding: 150px 0 130px;
}
section#slider:not(.bg-inherit) {
    background-color: var(--hero-bg-color);
}

main {
    padding: 0;
}

.container {
    padding: 0;
    max-width: 1170px;
}
.container.header {
    max-width: 1140px;
}
.container.full {
    max-width: 100%;
}
.container.full-grid {
    padding: 0;
    max-width: calc(100% - 30px);
    margin: 0 15px;
}
.container.smaller {
    max-width: 970px;
}

.row {
    margin-inline-start: 0;
    margin-inline-end: 0;
}

.vh-75 {
    height: 75vh;
}

.vh-85 {
    height: 85vh;
}
@media (max-width: 575px) {
    .vh-85 {
        height: 100%;
    }
}

.vh-90 {
    height: 90vh;
}
@media (max-width: 575px) {
    .vh-90 {
        height: 100%;
    }
}

.clearfix {
    display: block;
    content: "";
    clear: both;
}

/* #endregion Section */
/*----------------------------------------------
6. Helper Class
----------------------------------------------*/
/* #region Helper Class */
.avatar-sm {
    height: 56px;
    width: 56px;
    border-radius: 7px;
    background-color: var(--primary-color);
    align-content: center;
    text-align: center;
}
.avatar-sm img{
    width: 28px;
    height: 28px;
}
.avatar-md {
    height: 4rem;
    width: 4rem;
}

.avatar-lg {
    height: 5rem;
    width: 5rem;
}

.avatar-max-lg {
    height: 6rem;
    width: 6rem;
}

.swap-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 26px;
}
.swap-icon .icon {
    margin: 0 !important;
    height: auto;
    width: auto;
    font-size: 2rem !important;
    line-height: 1;
}
.swap-icon:hover .icon {
    animation: swap ease-out var(--transition-duration);
}

@keyframes swap {
    0% {
        transform: translateX(0);
    }
    25% {
        opacity: 0;
    }
    30% {
        transform: translateX(1rem);
    }
    35% {
        transform: translateX(-1rem);
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}
.video-play-button {
    display: flex;
}
.video-play-button a.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: #fff;
    border-radius: 100%;
    transform: scale(1);
}
.video-play-button a.play-button i {
    fill: var(--primary-color);
    font-size: 18px;
}
.video-play-button a.play-button::before {
    position: absolute;
    content: "";
    top: -2px;
    inset-inline-start:-2px;
    bottom: -2px;
    inset-inline-end:-2px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    animation: ripple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
}
.video-play-button a.play-button.hide-animation::before {
    display: none;
}
.video-play-button a.play-button:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

@keyframes ripple {
    0% {
        border-width: 4px;
        transform: scale(1);
    }
    80% {
        border-width: 1px;
        transform: scale(1.35);
    }
    100% {
        opacity: 0;
    }
}
.intro {
    margin-bottom: 60px;
}
.intro .title:not(.layout-2) {
    position: relative;
}
.intro .title:not(.layout-2)::after {
    position: absolute;
    content: "";
    height: 3px;
    width: 50px;
    background-color: var(--primary-color);
    bottom: -15px;
    inset-inline-start:50%;
    transform: translateX(-50%);
}
.intro p{
    font-size: 20px;
}
[dir="rtl"] .intro .title:not(.layout-2)::after {
    transform: translateX(50%);
}

.intro .title:not(.layout-2).layout-3::after {
    inset-inline:0;
    transform: inherit;
    margin: auto;
    bottom: 0;
}
.intro .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}
.intro .badge i {
    color: var(--primary-color);
}

.list-group-item {
    margin: 0;
    background: none;
    font-size: 1rem;
    padding-inline-end: 0;
    padding-inline-start: 0;
    background-color: transparent;
    border-color: var(--card-bg-color);
}
.list-group-item a {
    transition: 0.3s;
}
.list-group-item .badge.circle {
    background-color: var(--card-bg-color);
}

.post-holder {
    list-style: none;
    width: 100%;
    border-inline-start: 5px solid var(--primary-color);
    background-color: var(--primary-bg-color-2);
    padding: 25px;
    margin-top: 35px;
}

.posted-on a:not(.btn) {
    font-weight: 600;
}

.list-group .list-group-item {
    margin: 0.25rem 0;
}
.list-group .list-group-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5rem;
    width: 3.5rem;
    background-color: #fff;
    border-radius: var(--border-radius-sm);
    font-size: 1.5rem;
    color: var(--primary-color);
}
.list-group .list-group-item .icon span {
    font-size: 2rem;
}
.list-group .list-group-item .icon.layout-2 {
    background-color: transparent;
}
.list-group.list-group-horizontal .list-group-item:not(:last-child) {
    margin-inline-end: 0.8rem;
}

.btn {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
    text-align: center;
    padding: 11px 16px;
    border: 0 none;
    border-radius: 7px;
    outline: 0 none;
    cursor: pointer;
    z-index: 1;
}
.btn.btn-white{
    background: var(--primary-b-color);
    border:2px solid var(--primary-b-color);

    color: var(--primary-color);
}
.btn.btn-white:hover{
    background: var(--primary-color);
    color: #fff;
}

.btn:hover, .btn:focus, .btn:active {
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.btn.btn-bordered {
    background: transparent none repeat scroll 0 0;
    color: #444;
}
.btn.btn-bordered::before {
    position: absolute;
    content: "";
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    background-image: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
    top: -2px;
    inset-inline-start:-2px;
    border-radius: 100px;
    transition: all 0.3s ease 0s;
    z-index: -2;
}
.btn.btn-bordered:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    inset-inline-start:0;
    border-radius: 100px;
    background: #fff none repeat scroll 0 0;
    transition: all 0.3s ease 0s;
    z-index: -1;
}
.btn.btn-bordered:hover, .btn.btn-bordered:focus, .btn.btn-bordered.active {
    color: #fff;
}
.btn.btn-bordered:hover::after, .btn.btn-bordered:focus::after, .btn.btn-bordered.active::after {
    opacity: 0;
}
.btn.btn-bordered-white {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
}
.btn.btn-bordered-white::after {
    position: absolute;
    content: "";
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    background-image: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
    top: -2px;
    inset-inline-start:-2px;
    border-radius: 100px;
    opacity: 0;
    transition: all 0.3s ease 0s;
    z-index: -1;
}
.btn.btn-bordered-white:hover, .btn.btn-bordered-white:focus {
    border-color: transparent;
    outline: 0 none;
}
.btn.btn-bordered-white:hover::after, .btn.btn-bordered-white:focus::after {
    opacity: 1;
}
.btn.content-btn {
    padding: 0;
    font-weight: 600;
    color: var(--primary-t-color);
    text-align: start;
    line-height: 1.2;
    background: transparent;
    box-shadow: none;
    padding-inline-end: 15px;
}
@media (max-width: 575px) {
    .btn.content-btn {
        margin-bottom: 5px;
    }
}
.btn.content-btn::before {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    top: 50%;
    inset-inline-end:0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.btn.content-btn::after {
    position: absolute;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    top: 50%;
    inset-inline-end:-10px;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.btn.content-btn:hover {
    color: var(--primary-color);
}
.btn.content-btn:hover::before {
    inset-inline-end:-10px;
    opacity: 1;
}
.btn.content-btn:hover::after {
    inset-inline-end:-20px;
    opacity: 0;
}

.btn-smaller {
    font-size: 0.9rem;
    padding: 12px 18px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 30px;
}



/* #endregion Helper Class */
/*----------------------------------------------
7. Header
----------------------------------------------*/
/* #region Header */
header {
    position: relative;
    z-index: 5;
}
header .navbar-expand {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 0  25px;
    background-color: #fff;
}
header .navbar-expand .navbar-brand {
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 0;
    color: var(--nav-item-color);
    width: 130px;
}
header .navbar-expand .navbar-brand i {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: initial;
    color: var(--primary-color);
}
header .navbar-expand .navbar-nav.toggle {
    display: none;
}
header .navbar-expand .navbar-nav.toggle i {
    font-size: 20px;
}
header .navbar-expand .navbar-nav .nav-item {
    margin: 0;
}
header .navbar-expand .navbar-nav .nav-item a:not(.btn) {
    display: flex;
    align-items: center;
    padding-inline-end: 1rem;
    padding-inline-start: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
}
header .navbar-expand .navbar-nav .nav-item .nav-link:not(.btn):not(.title):hover, header .navbar-expand .navbar-nav .nav-item .nav-link.active:not(.btn):not(.title) {
    color: var(--primary-color);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu {
    display: block;
    width: max-content;
    min-width: 14.375rem;
    padding: 0.625rem 0;
    border: none;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu::before {
    content: "";
    position: absolute !important;
    top: -10px;
    inset-inline-end:auto;
    bottom: auto;
    inset-inline-start:10px;
    width: 0;
    height: 0;
    border-inline-start: 10px solid transparent;
    border-inline-end: 10px solid transparent;
    border-bottom: 10px solid #fff;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link:not(.btn) {
    justify-content: space-between;
    padding: 0.625rem;
    color: var(--nav-item-color);
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 700;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link.title {
    font-weight: 600;
    color: var(--primary-t-color);
    opacity: 0.8;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .nav-link:not(.btn):not(.title):hover {
    background-color: rgba(1, 114, 128, 0.05);
    color: var(--primary-color);
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
    top: -8px;
    inset-inline-start:100%;
}
header .navbar-expand .navbar-nav .dropdown .dropdown-menu .dropdown-menu::before {
    content: none;
}
header .navbar-expand .navbar-nav .dropdown i.icon-arrow-down {
    position: relative;
    top: 1.5px;
    margin: 0 0 0 0.3rem;
    font-size: 12px;
    font-weight: 600;
}
header .navbar-expand .navbar-nav .dropdown i.icon-arrow-right {
    position: relative;
    top: 0;
    inset-inline-start:5px;
    margin: 0 0 0 0.3rem;
    font-size: 10px;
    font-weight: 600;
}
header .navbar-expand .navbar-nav .dropdown:hover > .dropdown-menu {
    visibility: unset;
    opacity: 1;
    margin: 0;
    transform: translateY(0px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
header .navbar-expand .icons img {
    margin-inline-end: 16px;
}
header .navbar-sticky {
    background-color: #fff;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.dropdown .dropdown-menu > li {
    padding: 0 0.625rem;
}

.menu .items {
    margin-inline-start: -5px;
    width: calc(100% + 10px);
}
.menu .navbar-nav {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
}
.menu .navbar-nav .nav-item {
    margin: 0;
}
.menu .navbar-nav .nav-item .nav-link:not(.btn) {
    width: calc(100% - 12px);
    padding: 0.5rem 1rem;
    margin: 0 5px;
    border-radius: var(--border-radius-sm);
}
.menu .navbar-nav .nav-item .nav-link:not(.btn):hover {
    background-color: #e5e6f6;
    color: var(--primary-color);
}
.menu .navbar-nav .nav-item .nav-link:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-t-color);
}
.menu .navbar-nav .dropdown .dropdown-menu {
    display: none;
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    background: none;
    border: none;
    visibility: visible;
    opacity: 1;
}
.menu .navbar-nav .dropdown .dropdown-menu.show {
    display: block;
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link {
    padding: 0.625rem;
    margin: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--nav-item-color);
    text-align: start;
    text-transform: uppercase;
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link:hover, .menu .navbar-nav .dropdown .dropdown-menu .nav-link.active {
    color: var(--primary-color);
}
.menu .navbar-nav .dropdown .dropdown-menu .nav-link.title {
    font-weight: 600;
    color: var(--primary-t-color);
    border: none;
    opacity: 0.8;
}
.menu .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
    position: relative;
    top: initial;
    inset-inline-start:initial;
}
.menu .navbar-nav .dropdown .dropdown-menu .left,
.menu .navbar-nav .dropdown .dropdown-menu .right {
    width: 50%;
}
.menu .navbar-nav .dropdown:first-child {
    margin-top: 0;
}
.menu .navbar-nav i.icon-arrow-down {
    font-size: 18px;
}

.dropdown .nav-link i {
    transition: transform 0.3s ease-in-out;
}

.rotate-arrow {
    transform: rotate(-180deg);
    transition: transform 0.3s ease-in-out; /* Smooth transition for the rotation */
}

.navbar-nav .dropdown-menu {
    transition: visibility 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.navbar-nav .show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* #endregion Header */
/*----------------------------------------------
8. Feature
----------------------------------------------*/
/* #region Feature */
.preloader-main {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    inset-inline-start:0;
    bottom: 0;
    inset-inline-end:0;
    z-index: 99999;
}
.preloader-main .preloader-wapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader-main .loader-section {
    position: fixed;
    top: 0;
    height: 100%;
    width: calc(50% + 1px);
    background-color: var(--primary-bg-color);
}
.preloader-main .loader-section.section-left {
    inset-inline-start:0;
}
.preloader-main .loader-section.section-right {
    inset-inline-end:0;
}
.preloader-main .preloader {
    position: relative;
    display: block;
    height: 80px;
    width: 170px;
    top: -40px;
    z-index: 99;
}
.preloader-main .loaded .section-left {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.preloader-main .loaded .section-right {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.preloader-main .loaded .preloader {
    transition: 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}
.preloader-main circle.dot:nth-of-type(1) {
    animation: slide 2s ease infinite;
}
.preloader-main circle.dot:nth-of-type(2) {
    transform: translateX(-55px);
    animation: slide 2s ease infinite;
    animation-delay: 1s;
}

@keyframes slide {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(70px);
    }
}
.icon {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 44px;
    display: block;
    margin: auto;
}
.icon.smaller {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 24px;
}
.icon.bigger {
    width: 7rem;
    height: 7rem;
    margin: 0;
    font-size: 6.5rem;
    line-height: 7rem;
    font-weight: bold;
}
.icon.circle {
    border-radius: 100px;
    font-size: 28px;
}

.icons {
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
}
.how-do{
    background-color: #F4F5F7;
}
.items .item {
    margin-top: 30px;
    position: relative;
}
.items .item .image-box{
    border: 1px solid #E5E7EB;
    background-color: #fff;
    padding: 16px 33px;
    border-radius: 16px;
    height: 255px;
}
.grid-col-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
}
.grid-col-4 .item .image-box{
    border: 0;
    box-shadow: 0px 4px 6px -4px #0000001A;
    box-shadow: 0px 10px 15px -3px #0000001A;
    height: 330px;
    padding-block: 40px;
    text-align: center;
}
.grid-col-4 .item .image-box .avatar-sm{
    margin: auto;
}
.grid-col-4 .item .content h4{
    font-size: 20px;
}
.grid-col-4 .item .content p{
    font-size: 16px;
}
.grid-col-4 .item::before{
    content: "";
    position: absolute;
    width: 80px;
    height: 2px;
    background-color: #D1D5DC;
    inset-inline-end: -80px;
    top: 70px;
}
.grid-col-4 .item:last-child:before{
    display: none;
}

.card {
    background-color: transparent;
    border: none;
    border-radius: var(--border-radius-sm);
}
.card .image-holder {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}
.card .image-holder img {
    transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay {
    position: absolute;
    inset-inline-start:0;
    z-index: 1;
    width: 100%;
    display: flex;
    padding: 3vh;
    color: var(--white-color);
}
.card .card-overlay.top {
    top: 0;
    bottom: auto;
    background: 17, 16, 19;
    background: linear-gradient(180deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}
.card .card-overlay.fade-up {
    transform: translateY(6%);
    opacity: 0;
    transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay.fade-down {
    transform: translateY(-6%);
    opacity: 0;
    transition: all var(--transition-function) var(--transition-duration);
}
.card .card-overlay:not(.top) {
    bottom: 0;
}
.card.scale:hover .card-thumb img {
    transform: var(--transform-scale);
}
.card.has-shadow .card-thumb::before {
    position: absolute;
    content: "";
    bottom: 0;
    inset-inline-start:0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 85%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 7, 18, 0)), to(rgba(3, 7, 18, 0.45)));
    background: linear-gradient(180deg, rgba(3, 7, 18, 0), rgba(3, 7, 18, 0.45));
    -webkit-transition: opacity var(--transition-function) var(--transition-duration);
    transition: opacity var(--transition-function) var(--transition-duration);
}
.card.layout-2 .card-overlay {
    color: var(--white-color);
}
.card.layout-2 .card-overlay .title,
.card.layout-2 .card-overlay .badge {
    color: var(--white-color);
}
.card.layout-2 .card-overlay .show-project .project-link a {
    color: var(--white-color);
}
.card.layout-2 .card-overlay:not(.top) {
    background: 17, 16, 19;
    background: linear-gradient(360deg, rgba(17, 16, 19, 0.5) 0%, rgba(17, 16, 19, 0) 100%);
}
.card:hover .card-overlay.fade-up {
    transform: none;
    opacity: 1;
}
.card:hover .card-overlay.fade-down {
    transform: none;
    opacity: 1;
}

.has-overlay {
    position: relative;
    z-index: 1;
}
.has-overlay::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    inset-inline-start:0;
    opacity: 0.94;
    z-index: -1;
}
.has-overlay.overlay-gradient::after {
    background: linear-gradient(-47deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
.has-overlay.overlay-dark::after {
    background: rgba(16, 16, 45, 0.9);
}

.clip-text,
.text-effect {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-text, .btn,
.text-effect,
.blog-details .pagination > li.active > a {
    background-image: linear-gradient(150deg, var(--secondary-color) 0%, var(--primary-color) 78%);
}

a.badge:not(.btn),
.badge {
    display: inline-flex;
    gap: 0.25em;
    margin: 0.25rem 0;
    padding: 18px;
    font-size: 0.94em;
    font-weight: 500;
    transition: all var(--transition-function) var(--transition-duration);
}
a.badge:not(.btn).small,
.badge.small {
    padding: 0.35rem 0.65rem;
}
a.badge:not(.btn).outlined,
.badge.outlined {
    border: 2px solid currentColor;
    color: currentColor;
}
a.badge:not(.btn):not(.outlined),
.badge:not(.outlined) {
    background-color: #e5e6f6;
}
a.badge:not(.btn):hover,
.badge:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.shapes-container {
    position: absolute;
    top: 0;
    inset-inline-start:0;
    inset-inline-end:0;
    bottom: 0;
}

.shape {
    position: relative;
}

.shape-bottom {
    position: absolute;
    top: auto;
    bottom: -1px;
    inset-inline-start:0;
    inset-inline-end:0;
}

.bg-shape {
    position: absolute;
    height: 190%;
    width: 100%;
    display: block;
    border-radius: 120px;
    background: var(--primary-bg-color-2);
    bottom: 0;
    inset-inline-end:0;
    transform: translate(35%, -28%) rotate(-35deg);
    z-index: 0;
}
@media (max-width: 991px) {
    .bg-shape {
        height: 130%;
    }
}

.social-icons i {
    display: block;
    height: 100%;
    color: #ffff;
    margin: 0 auto;
    line-height: 2.5rem;
    transition: all var(--transition-function) var(--transition-duration-short);
}
.social-icons > a.icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 5px;
    background-color: var(--white-color);
    border-radius: calc(var(--border-radius-sm) / 2);
    color: var(--primary-color);
    transition: all var(--transition-function) var(--transition-duration-short);
    overflow: hidden;
}
.social-icons > a.icon:hover i:first-child {
    margin-top: -2.5rem;
}

.main {
    background-color: var(--primary-bg-color);
}

.scroll-to-top {
    position: fixed;
    z-index: 5;
    inset-inline-end:25px;
    bottom: 25px;
    display: none;
    width: 40px;
    height: 45px;
    border-radius: 4px;
    background-color: rgba(35, 35, 35, 0.65);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    line-height: 45px;
    text-align: center;
    opacity: 0.85;
    transition: all var(--transition-function) var(--transition-duration);
}
.scroll-to-top a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 45px !important;
}
.scroll-to-top i {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
}
.scroll-to-top:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    opacity: 1;
}

.primary-bg {
    background-color: var(--primary-bg-color-2);
}
.primary-bg .btn-bordered::after {
    background-color: var(--primary-bg-color-2);
}
.primary-bg .badge {
    background-color: #fff !important;
}

.download-button img {
    max-width: 190px;
}

.hero-section {
    position: relative;
    background-attachment: scroll;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}
.circle-button {
    position: absolute;
    bottom: 110px;
}
.rotate-circle {
    animation-name: rotateCircle;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero-section .img-side .image{
    height: 650px;
    width: 100%;
    border-radius: 50px;

}
.hero-section .img-side .image img{
    height: 650px;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}
.hero-section .hero-content {
    position: relative;
    z-index: 1;
}
.hero-section .hero-content .sub-heading {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}
.hero-section .hero-thumb.animate img {
    position: relative;
    animation: bounceHero 3s infinite;
}
.hero-section.layout-3 {
    background-color: var(--primary-color);
}
.hero-section.layout-3 .shape-bottom svg {
    overflow: hidden;
    width: 100%;
    line-height: 0;
    direction: ltr;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


@keyframes bounceHero {
    0% {
        top: 0px;
    }
    50% {
        top: 25px;
    }
    100% {
        top: 0px;
    }
}
.benefits{
    background-color:var(--primary-color)
}
.benefits .badge{
    background-color:  rgba(243, 244, 246, 0.16) !important;
    padding: 7px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.benefits .benefits-desc{
    gap: 16px;
    margin-bottom: 30px;
}
.benefits .benefits-desc img{
    width: 40px;
    height: 40px;
}
.benefits .benefits-desc .benefits-content h3{
    margin-bottom: 8px !important;
    font-size: 19px;
}
.benefits .benefits-desc .benefits-content p{
    margin-top: 8px;
    font-size: 16px;
}
.grid-col-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.grid-col-2 .grid-item{
    position: relative;
}
.grid-col-2 .grid-item:nth-child(1){
    align-content: end;
}
.grid-col-2 .grid-item:nth-child(odd) {
    text-align: end;
}
.grid-col-2 .grid-item span{
    position: absolute;
    inset-inline-start: 20%;
    bottom: 0;
}
.grid-col-2 .grid-item:nth-child(2) span{
    inset-inline-start: auto;
    inset-inline-end: 2%;
}
.absolute-img{
    background: #fff;
    padding: 25px;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
}
.absolute-img:nth-child(2) {
    position: absolute;
    inset-block: auto;
    top: 10px;
    inset-inline: 0;
    margin: auto;
    background-color: transparent}
.contact-info  .list-group-item{
    border-bottom: 0;
}
.contact-info .list-group-item h4{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
}
.form-floating>label{
    inset-inline-start: 0;
    inset-inline-end: auto;
}
form{
    border:1px solid rgba(235, 235, 235, 1);
    padding: 25px;
    border-radius: 7px;
}
.form-floating img{
    position: absolute;
    inset-inline-end: 0;
    inset-block: 0;
    margin: auto;
    padding: 16px;
}
.form-control{
    background-color: transparent;
}
/*----------------------------------------------
9. Footer
----------------------------------------------*/
/* #region Footer */
footer{
    background: var(--primary-color) !important;
}
.footer-area .footer-top {
    padding: 80px 0;
}
.footer-area .footer-top hr {
    margin: 25px 0;
    border-style: solid;
}
.footer-area .footer-top .social-icons a.icon {
    color: var(--white-color);
}
.footer-area .nav-item {
    margin: 0;
}
.footer-area .nav-item a.nav-link {
    display: inline-block;
    padding: 0.5rem 0;
    font-weight: 500;
}
.footer-area .nav-item a.nav-link:hover{
    color: white;
}
.footer-area .nav-item a.nav-link:not(:hover) {
    color: var(--nav-item-color);
}
.footer-area .copyright-area {
    border-top: 2px solid rgba(254, 251, 248, 1);
    gap: 16px;
}
@media (min-width: 992px) {
    .footer-area.footer-fixed {
        position: fixed;
        bottom: 0;
        inset-inline-start:0;
        inset-inline-end:0;
        z-index: -1;
    }
}
@media (max-width: 575px) {
    .footer-area .items .item:first-child {
        margin-top: 0;
    }
}
footer.footer-area.p-0 {
    background: var(--primary-color);
}
.footer-items .logo{
    width: 180px;
    filter: brightness(10);
}
.footer-area .nav-item a.nav-link:not(:hover) {
    color: #fff !important;
}
.social-icons img{
    width: 32px;
    height: 32px;
    object-fit: contain;
}
/* #endregion Footer */
/*----------------------------------------------
10. Modal
----------------------------------------------*/
/* #region Modal */
.modal-open {
    overflow-x: hidden;
    overflow-y: hidden;
}

.modal-dialog-slideout {
    min-height: 100%;
    margin: 0 0 0 auto;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
    height: 100%;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    transform: translate(100%, 0) scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
    display: flex;
    align-items: start;
    height: 100%;
    transform: translate(0, 0);
}

.modal-content {
    overflow-x: hidden;
    border: none;
    border-radius: 0;
    background-color: var(--primary-bg-color);
}
.modal-content.full {
    height: 100%;
}

.modal-header {
    align-items: center;
    padding: 25px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    color: var(--primary-t-color);
}
.modal-header .modal-title {
    line-height: 0;
}
.modal-header .icon-close {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px 25px 75px;
}

/* #endregion Modal */
/*----------------------------------------------
12. All Media Queries
----------------------------------------------*/
/* #region All Media Queries */
@media (max-width: 1199px) {
    /* #region Section */
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    /* #endregion Section */
    /* #region Header */
    header .navbar-expand .navbar-nav.toggle {
        display: flex;
    }
    header .navbar-expand .navbar-nav.contacts, header .navbar-expand .navbar-nav.items, header .navbar-expand .navbar-nav.icons .social {
        display: none;
    }
    /* #endregion Header */
}
@media (max-width: 991px) {
    /* #region General */
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-section .img-side .image img,
    .hero-section .img-side .image{
        height: 400px;
    }
    .circle-button{
        bottom: 30px;
    }
    .circle-button img{
        width: 150px;
    }
    .grid-col-4 {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    .grid-col-4 .item::before {
        content: "";
        position: absolute;
        width: 80px;
        height: 2px;
        background-color: #D1D5DC;
        inset-inline: 0;
        margin: auto;
        top: auto;
        bottom: -40px;
        transform: rotate(90deg);
    }
    .grid-col-4 .item .image-box,
    .items .item .image-box{
        height: auto;
        padding-inline: 20px;
    }
    .grid-col-2 .grid-item span{
        display: none;
    }
    /* #endregion General */
    /* #region Helper Class */
    .intro {
        margin-bottom: 50px;
    }
    .header .btn.swap-icon{
        display: none;
    }
    /* #endregion Helper Class */
}
@media (max-width: 767px) {

    /* #region General */
    body {
        overflow-x: hidden;
    }
    .col-sm-6{
        width: 50% !important;
    }
    h1 {
        font-size: 2rem;
    }
    form h3{
        font-size: 25px;
    }
    header .navbar-expand .navbar-nav.icons .nav-item a:not(.btn){
        padding-inline: 0 !important;
    }
    /* #endregion General */
    /* #region Section */
    section {
        padding: 90px 0;
    }
    /* #endregion Section */
    /* #region Header */
    .navbar-brand {
        margin: 0;
    }
    /* #endregion Header */
}
@media (max-width: 600px) {
    /* #region Header */
    header .navbar-sticky {
        margin-top: 0 !important;
    }
    /* #endregion Header */
}
@media (max-width: 576px) {
    /* #region Helper Class */
    .avatar-lg {
        width: 4rem;
        height: 4rem;
    }
    /* #endregion Helper Class */
    /* #region Modal */
    .modal-body {
        align-items: start;
    }



    /* #endregion Modal */
}
.form-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.text-success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.text-danger {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.text-info {
    display: block;
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}


/* for pages style */

/* Custom Page Content Styles */

.page-content {
    padding: 60px 0;
    min-height: 60vh;
}

.page-content-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.page-content-wrapper h1,
.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4,
.page-content-wrapper h5,
.page-content-wrapper h6 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 600;
    line-height: 1.3;
}

.page-content-wrapper h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.page-content-wrapper h2 {
    font-size: 2rem;
}

.page-content-wrapper h3 {
    font-size: 1.75rem;
}

.page-content-wrapper h4 {
    font-size: 1.5rem;
}

.page-content-wrapper p {
    margin-bottom: 1.25em;
    line-height: 1.8;
    font-size: 1.05rem;
}

.page-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.page-content-wrapper li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

.page-content-wrapper blockquote {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.page-content-wrapper table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.page-content-wrapper table th,
.page-content-wrapper table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.page-content-wrapper table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.page-content-wrapper a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content-wrapper a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Breadcrumb Styles */
.breadcrumb-bar {
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color));
    padding: 40px 0;
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.breadcrumb-item {
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

.breadcrumb-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* RTL Support */
[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
    content: "‹";
}

[dir="rtl"] .page-content-wrapper ul,
[dir="rtl"] .page-content-wrapper ol {
    padding-right: 2em;
    padding-left: 0;
}

[dir="rtl"] .page-content-wrapper blockquote {
    border-left: none;
    border-right: 4px solid #007bff;
    padding-left: 0;
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }

    .page-content-wrapper {
        padding: 25px 20px;
    }

    .breadcrumb-title {
        font-size: 1.75rem;
    }

    .page-content-wrapper h1 {
        font-size: 1.875rem;
    }

    .page-content-wrapper h2 {
        font-size: 1.5rem;
    }

    .page-content-wrapper h3 {
        font-size: 1.25rem;
    }
}

/* Button Styles Enhancement */
.btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px; /* Small gap above scroll-to-top */
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #999;
}

.whatsapp-icon {
    margin-top: 0;
    color: white;
}

/* RTL Support */
[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 40px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 70px; /* Small gap for mobile */
        right: 20px;
        font-size: 25px;
    }
    
    [dir="rtl"] .whatsapp-float {
        right: auto;
        left: 20px;
    }
}
/* Device Features Section */
.device-features-section {
    background-color: #fff;
    padding: 100px 0;
}

.device-features-section .feature-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
}

.device-features-section .features-list {
    margin-bottom: 30px;
}

.device-features-section .feature-item {
    gap: 20px;
}

.device-features-section .feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-features-section .feature-icon i {
    color: #fff;
    font-size: 20px;
}

.device-features-section .feature-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--primary-t-color);
}

.device-features-section .feature-content p {
    margin: 0;
    font-size: 16px;
    color: var(--primary-p-color);
}

/* Screen Sizes Section */
.screen-sizes-section {
    padding: 100px 0;
}

.screen-comparison-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
}

.comparison-table {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
}

.screen-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.screen-table thead th {
    background-color: #F9FAFB;
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-t-color);
    border-bottom: 2px solid #E5E7EB;
}

.screen-table thead th.highlight {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.screen-table tbody td {
    padding: 16px 12px;
    text-align: center;
    font-size: 14px;
    color: var(--primary-p-color);
    border-bottom: 1px solid #E5E7EB;
}

.screen-table tbody td:first-child {
    text-align: start;
    font-weight: 500;
}

.screen-table tbody td.highlight {
    background-color: rgba(77, 189, 152, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.screen-table tbody tr:last-child td {
    border-bottom: none;
}

.savings-highlight {
    margin-top: 30px;
}

.savings-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.savings-box h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.savings-box .savings-amount {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.savings-box .savings-percentage {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    .device-features-section,
    .screen-sizes-section {
        padding: 60px 0;
    }
    
    .device-features-section .feature-image {
        text-align: center;
        margin-top: 30px;
    }
    
    .screen-comparison-image {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .comparison-table {
        padding: 20px;
    }
    
    .screen-table {
        font-size: 12px;
    }
    
    .screen-table thead th,
    .screen-table tbody td {
        padding: 10px 6px;
    }
}

@media (max-width: 767px) {
    .savings-box .savings-amount {
        font-size: 24px;
    }
}
/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-buttons .btn {
    white-space: nowrap;
}

.header-buttons .btn-bordered {
    padding: 11px 20px;
}

.header-buttons .btn-bordered i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .header-buttons {
        display: none;
    }
}