@font-face {
    font-family: JannaLT-Regular;
    src: url(https://bok.tdfclient.com/back-end/assets/fonts/JannaLT-Regular.ttf);
}

/* Fonts */
:root {
    --default-font: "Montserrat", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    /* --background-color: #ffffff; */
    /* Background color for the entire website, including individual sections */
    --default-color: #222222;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #172a28;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #429145;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

    --nav-color: #000000;
    /* The default color of the main navmenu links */
    --nav-hover-color: #b4a685;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #967b3a;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #9b7725;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --btn-color: #B39A4C;
    --btn-hover-color: #000000;


    /*  */
    --web-history-title-color: #B39A4C;
    --bok-maroon: #8E0806;
    --bok-bg-maroon: #8E0806;
    --background-color: #ffffff;

    --font-color: #ffffff;
    --font-color: #000000;

    --service-icon-color: #B39A4C !important;

    --tab-color: #6c757d;
    --list-color:#000000


}



/* :root {
    --background-color: #ffffff;
    --default-color: #000000;
    --heading-color: #000000;
    --transition: all 0.5s;
    --z-index: 997;
} */

[data-theme="dark"] {
    --background-color: #121212;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --bok-maroon: #B39A4C;
    --bok-bg-maroon: #B39A4C;
    --font-color: #ffffff;
    --web-red-color: #B39A4C !important;
    --service-icon-color: #8E0806 !important;
    --list-color:#ffffff;
}


.text-danger {
    color: var(--bok-maroon) !important;
}


.bok-maroon {
    color: var(--bok-maroon) !important;
}

.bok-maroon-bg {
    background: var(--bok-bg-maroon);
}

.bok-strong {
    font-weight: 500 !important;
}




/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f2f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #008374;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #00b6a1;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font) !important;
    font-family: JannaLT-Regular;
}

a {
    color: var(--nav-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--nav-dropdown-hover-color);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    background-color: var(--background-color);
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
}


/* Pages Top Setting */
.Page-part {
    margin-top: 10px;
    margin-bottom: 30px;
}

.Page-part h2 {
    color: var(--web-red-color) !important;
    font-size: 50px !important;
    font-weight: 500;
}

.Page-part p {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    /* padding: 0px 100px 0px 100px; */
}

.Page-part2 {
    display: none;
    list-style: none;
    /* Remove default bullet points */
    padding: 0;
    margin: 0 auto;
    /* Center the list */
    justify-content: center;
    /* Horizontally center the menu items */
}

.Page-part2 li {
    margin-right: 20px;
    /* Space between menu items */
    position: relative;
    /* For the side line */
}

.Page-part2 li:not(:last-child)::after {
    content: "|";
    /* Side line after each item except last */
    position: absolute;
    right: -10px;
    /* Adjust spacing for the line */
    color: #ccc;
    /* Line color */
}

.Page-part2 a {
    text-decoration: none;
    /* Remove underline */
    color: #000;
    color: var(--heading-color);
    /* Text color */
    font-size: 14px;
}




.header .topbar {
    background-color: #ffffff;
    color: #0B0B0B !important;
    height: 62px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
    border-bottom: 1px solid #BAAA45;
    font-weight: 400;


}

.header .topbar .contact-info i {
    font-style: normal;
    color: #0B0B0B !important;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 1px;
    color: #0B0B0B !important;
}


.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: #0B0B0B !important;
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: #0B0B0B !important;
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
    font-size: 12px;
}

.header .topbar .social-links-2 a {
    font-size: 14px;
    color: #c02626 !important;
    line-height: 0;
    transition: 0.3s;
    /* margin-left: 20px; */
}

.header .topbar .social-links a:hover {
    color: #0B0B0B !important;
}

.header .topbar .social-links-2 a:hover {
    color: #0B0B0B !important;
}

.header .branding {
    min-height: 60px;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 97px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    font-size: 32px;
    margin-left: 2px;
    color: var(--nav-hover-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*  */
.top-menu-2 ul {
    display: flex;
    /* Align the list items horizontally */
    list-style: none;
    /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.top-menu-2 li {
    margin-right: 20px;
    /* Space between menu items */
    position: relative;
    /* For the side line */
}

.top-menu-2 li:not(:last-child)::after {
    content: "|";
    /* Side line after each item */
    position: absolute;
    right: -10px;
    /* Adjust spacing for the line */
    color: #ccc;
    /* Line color */
}

.top-menu-2 a {
    text-decoration: none;
    /* Remove underline */
    color: #000;
    /* Text color */
    font-size: 12px;
}

.top-menu-2 a:hover {
    color: #B39A4C;
    /* Change color on hover */
}






.top-menu-3 {
    display: none;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
    font-weight: 600;
    margin-top: 50px;
}



.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 0px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--default-color);
    border-color: var(--default-color);
    transform: scale(1.1);
}

.footer h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links p {
    font-size: 16px
}



.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 16px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.footer .footer-links ul li:hover {
    padding-left: 5px;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
    font-size: 16px;
}

.footer .footer-links ul a:hover {
    color: var(--default-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 4px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--btn-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--web-red-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: var(--default-color);
    --default-color: #fff;
    --heading-color: #fff;
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

/* .page-title .heading {
    padding: 160px 0 80px 0;
} */

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 92%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol a {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
    color: var(--default-color);
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    /* background-color: var(--background-color); */
    /* padding: 60px 0; */
    scroll-margin-top: 112px;
    overflow: clip;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    font-weight: 250;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    /* position: relative; */
    padding: 100px 0 0 0;
}

.hero .container {
    position: relative;
    z-index: 3;
    /* top: -20px; */
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h2 .accent {
    color: var(--conrast-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--nav-dropdown-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 50%;
}

.hero .btn-get-started:hover {
    /* border-color: color-mix(in srgb, var(--accent-color), transparent 60%); */
    background: var(--accent-color);

}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 600;
    color: var(--default-color);
}

.hero .btn-watch-video i {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover i {
    color: var(--default-color);
}



.hero .icon-boxes {
    margin-top: -60px;
    padding-bottom: 20px;
    z-index: 4;
}


.hero .icon-box {
    /* padding: 60px 30px; */
    position: relative;
    overflow: hidden;
    /* background: var(--background-color); */
    /* box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
    top: 35px;
    left: 50px;
}

.hero .icon-box .title {
    margin-bottom: 15px;
    font-size: 25px;
    margin-left: 10px;
}

.hero .icon-box .title a {
    color: #f2f9f9;
    transition: 0.3s;
    text-align: start;
    font-weight: 100px;
    font-size: 16px;
}

.icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 48px;
    line-height: 1;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.icon-box .icon img {
    transition: 0.3s;
}

.hero .icon-box:hover .icon img {
    transform: rotate(360deg);
}

.hero .icon-box :hover {
    /* SHAH */
    /* background-color: color-mix(in srgb, var(--background-color), white 10%); */
    color: var(--service-icon-color) !important;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
    color: var(--contrast-color);
}


/* .btn {
    display: inline-flex;
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    width: 250px;
    height: 50px;
    font-weight: 400;
} */

/* .btn:hover {
    background-color: var(--nav-hover-color);
    text-decoration: none;
    border: 1px solid var(--nav-hover-color);
} */

/* .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-left: 40px;
}
 */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.swiper-slide {
    margin-bottom: 30px;
}

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 10px;
}

.stats .stats-item i {
    font-size: 44px;
    color: var(--accent-color);
    line-height: 0;
    margin-right: 15px;
}

.stats .stats-item .purecounter {
    color: var(--heading-color);
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 40px;
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 15px 0 0 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action {
    background-color: #B59B4D;
    color: #ffffff !important;
    margin-top: 100px;
}

.call-to-action .container {
    padding-bottom: 30px;
    padding-top: 30px;
}



.call-to-action p {
    color: #f9f9f9 !important;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 25px !important;
    font-family: var(--default-font);
}

.call-to-action p {
    color: var(--default-color);
    margin-bottom: 20px;
}

.call-to-action .play-btn {
    width: 94px;
    height: 94px;
    margin-bottom: 20px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.call-to-action .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 20%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.call-to-action .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--default-color);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--default-color);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.call-to-action .play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
    color: var(--heading-color);
}

.services .service-item:hover .icon:before {
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-item:hover h3 {
    border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: var(--heading-color);
}

.services .service-item:hover .readmore {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.container12 {
    padding-inline-end: var(--swiper-offset-size, 0);
    --swiper-slides-to-display: 3;
    --swiper-offset-size: 95px;
    --swiper-slides-gap: 0px;
}


.testimonials .testimonial-item {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    margin: 30px 15px;
    position: relative;
    height: 100%;
    background-color: #F8F8F8;
    border-radius: 10px;
}


.testimonials .card-body {
    /* max-height: 260px; */
    overflow: auto;
}


.testimonials .swiper-wrapper h3 {
    text-align: left;
    font-size: 20px !important;
    font-weight: 400;
}


.testimonials .swiper-wrapper p {
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
}



.testimonials.card-title {
    font-size: 20px;
    color: black;
    font-weight: 500;
    line-height: 25px
}



.testimonials .card-body {
    height: 200px;
}


.testimonials .card-img-top {
    /* width: 415px;
    height: 339px; */
    /* Set a fixed height to ensure all images are the same size */
    object-fit: cover;
    /* Ensures the image covers the area while maintaining aspect ratio */
    height: 200px;
    object-fit: cover;
    height: 250px;
    border-radius: 20px;
    object-position: 100% 20%;
}




.testimonials .testimonial-item .testimonial-img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.testimonials .testimonial-item .content-box {
    height: 270px;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    padding: 10px;
    margin-bottom: -25px;
}

.testimonials .testimonial-item p {
    font-size: 15px !important;
    padding: 10px;
    font-weight: 500 !important;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials h3 {
    font-size: 40px !important;
    font-weight: 500;
    line-height: 45px;
}

.testimonials .content {
    font-size: 16px !important;
    font-weight: 400;
}


.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}



.portfolio .portfolio-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.portfolio .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
}

.team .member img {
    border-radius: 15px;
    overflow: hidden;
}

.team .member .member-content {
    padding: 0 20px 30px 20px;
}

.team .member h4 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.team .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team .member .social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    padding: 60px 0 120px 0;
}

.pricing .section-title {
    margin-bottom: 40px;
}

.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    height: 100%;
    position: relative;
    border-radius: 15px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.pricing .icon {
    margin: 30px auto 20px auto;
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    transform-style: preserve-3d;
}

.pricing .icon i {
    color: var(--background-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
    line-height: 0;
}

.pricing .icon::before {
    position: absolute;
    content: "";
    height: 86px;
    width: 86px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.pricing .icon::after {
    position: absolute;
    content: "";
    height: 102px;
    width: 102px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-2px);
}

.pricing h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 25px;
    text-align: center;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
    font-weight: 400;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    transition: none;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    transition: 0.3s;
}

.pricing .buy-btn:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    z-index: 10;
    border: 3px solid var(--accent-color);
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
    background: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.recent-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.recent-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
}

.recent-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.recent-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.recent-posts .title a:hover {
    color: var(--accent-color);
}

.recent-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.recent-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
    background-color: var(--accent-color);
    height: 100%;
    padding: 20px;
}

#contact .info {
    padding: 40px;
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    color: var(--contrast-color);
    font-size: 20px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    padding: 30px;
}

.contact .php-email-form a {
    color: #000 !important;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 15px 15px;
    box-shadow: none;
    border-radius: 10;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--btn-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}


.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.blog-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: var(--accent-color);
}

.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
    padding: 10px 0 40px 0;
}

.blog-author .author-container {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
    margin: 0 10px 10px 0;
}

.social-links p {
    font-size: 16px;
}

.blog-author .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
}

.blog-author p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: var(--default-color);
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}

.comment-form form input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: var(--default-color);
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 3px 10px;
    position: relative;
    transition: 0.3s;
}

.search-widget form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type=text]:focus {
    outline: none;
}

.search-widget form button {
    background: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
    margin-bottom: -10px;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}



/* home Call to action */
.accent-background {
    background: #B59B4D;
}



.demo-top {
    padding-top: 250px;
}

.custom-search {
    position: relative;

    /* width: 300px; */
}

.custom-search-input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    height: 50px;
    padding-left: 10px;
    font-size: 16px;
    font-weight: lighter;
}

.custom-search-botton {
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border: 0;
    background: #8E0806;
    color: #fff;
    outline: none;
    margin: 0;
    padding: 0 10px;
    border-radius: 4px;
    z-index: 2;
    font-size: 16px;
    font-weight: 400 !important
}

.no-gutters {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}


/* Global Btn */
.custom-action-btn {
    position: relative;
    background-color: #c4a654;
    color: white;
    border-radius: 5px;
    padding: 15px 30px;
    border: none;
    margin-top: 20px;
    /* width: 210px; */
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effects */
.custom-action-btn:hover {
    background: var(--web-red-color);
    color: #fff;
    transform: scale(1.05);
}

/* Border animation using ::before */
.custom-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* Animate border on hover */
.custom-action-btn:hover::before {
    transform: scaleX(1);
}


/* END */


.custom-action-btn-calculator {
    background-color: #ECECEC;
    /* Default background */
    color: var(--default-color);
    /* Default text color */
    border-radius: 5px;
    padding: 15px 30px;
    border: none;
    margin-top: 20px;
    /* Space above the button */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth color transition */
}

.custom-action-btn-calculator:hover {
    background-color: #a68945;
    /* Hover state */
    color: white;
}

.custom-action-btn-calculator:focus {
    background-color: #8b7438;
    /* Focus state */
    color: white;
    outline: none;
}

.custom-action-btn-calculator.active {
    background-color: var(--bok-bg-maroon) !important;
    /* Custom active background color */
    color: var(--background-color) !important;
}


/* custom swiper */

.custom-swiper-navigation {
    position: absolute;
    bottom: 8px;
    left: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.swiper-button-prev.custom-prev,
.swiper-button-next.custom-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 5px;
    /* color: #8E0806; */
    color: var(--bok-bg-maroon);
    font-size: 30px;

}

.swiper-button-prev.custom-prev::after,
.swiper-button-next.custom-next::after {
    font-size: 18px;
}

.swiper-button-prev.custom-prev::after {
    content: '';
    /* Font Awesome icon for left arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.swiper-button-next.custom-next::after {
    content: '';
    /* Font Awesome icon for right arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}


.custom-carousel {
    max-height: 830px;
    overflow: hidden;
    /* Ensure content does not overflow */
}

.custom-carousel .carousel-item img {
    object-fit: cover;
    /* Ensures the image covers the carousel area without stretching */
    height: 100%;
    /* Scale the image height to fit the carousel */
    width: 100%;
    /* Ensure the image width fills the carousel */
}


.custom-carousel .carousel-item .custom-action-btn {
    /* margin-top: 200px; */
}

.custom-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 5%;
    /* Adjust this value to control the horizontal positioning */
    transform: translateY(-50%);
    text-align: left;
    /* Align text to the left */
    width: 35%;
    /* Adjust width to fit your content */
}

.custom-carousel .carousel-caption h5,
.custom-carousel .carousel-caption p,
.custom-carousel .carousel-caption .btn {
    text-align: left;
    /* Ensure all elements within the caption are left-aligned */
}

.custom-carousel .carousel-caption h5 {
    color: #F8F8F8;
    font-size: 48px;
    margin-top: 0px;
    line-height: 1;
}

.custom-carousel .carousel-caption p {
    font-weight: 200;
    font-size: 20px;
    color: #fff;
    padding: 30px 0;
}


.custom-carousel .carousel-caption .custom-action-btn {
    height: 40px;
}

/* Optional: Adjust text color and background for better readability */
.custom-carousel .carousel-caption {
    color: #fff;
    /* Set text color */
    /* background-color: rgba(0, 0, 0, 0.5);  */
    /* Optional: Add a semi-transparent background */
    padding: 20px;
    /* Add some padding around the text */
    border-radius: 5px;
    /* Optional: Add rounded corners */
}




.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
    background-color: transparent;
    color: #fff;
    /* White arrow color */
    border: none;
    font-size: 24px;
    padding: 0;
}

.custom-carousel .carousel-control-prev:hover,
.custom-carousel .carousel-control-next:hover {
    color: #ccc;
    /* Lighter color on hover */
}

.custom-carousel .carousel-indicators {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-carousel .carousel-indicators button {
    width: 30px;
    height: 4px;
    background-color: #f0c75e;
    /* Indicator color */
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.custom-carousel .carousel-indicators button.active {
    background-color: #f0c75e;
    /* Active indicator color */
}

.custom-carousel .carousel-indicators button:hover {
    background-color: #ccc;
    /* Hover effect for indicators */
}



/* Account Section */
#account-section {
    margin-top: 100px;
    fonBokak-sectiont-size: 16px;
}

.account-section h3,
.book-cards-section h3 {
    font-size: 60px;
    font-weight: 500;
    color: var(--font-color);
}

.account-section .btn {
    margin-top: 50px;
}

.account-section .side-1 p {
    width: 85%;
    font-size: 16px;
    font-weight: 400;
    color: var(--font-color);
    line-height: 30px;
}

.account-card p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.account-card {
    height: auto !important;
    transition: box-shadow 0.3s ease;
    border: none;
    padding: 15px 20px;
    background-color: var(--background-color);
}

.account-card h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px;
}

.account-section .top-space {
    margin-top: 80px;
}

/* Default shadow for light mode */
.account-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease-in-out;
}

/* Shadow for dark mode */
[data-theme="dark"] .account-card:hover {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    /* Lighter shadow for dark mode */
}


.read-more-link {
    color: var(--web-red-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    text-transform: capitalize;
}

.read-more-link:hover {
    color: #900;
    /* Customize hover color */
}



/* book-cards-section */

#book-cards-section {
    margin-top: 80px;
    margin-bottom: 100px;

}

#book-cards-section .nav-tabs {
    margin-bottom: 50px;

}

.Bokak-section .nav-tabs {
    margin-bottom: 30px;
}

.Bokak-section .nav-tabs {
    font-size: 20px;
}

/* Make carousel items full height for vertical sliding */
.book-cards-section .carousel-inner {
    display: flex;
    flex-direction: column;
    height: 450px;
    /* Adjust height based on your design */
}

.book-cards-section .carousel-item {
    height: 100%;
    transition: transform 0.6s ease;
}


/* .book-cards-section h3 {
    font-weight: 250;
    font-size: 56px;
}

.book-cards-section p {
    font-size: 25px
} */


/* Up and Down arrow button styling */
.book-cards-section .carousel-control-up,
.carousel-control-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    border-radius: 50%;
    color: #000;
    text-align: center;
    z-index: 5;
    cursor: pointer;
}

.carousel-control-up {
    top: -40px;
}

.carousel-control-down {
    bottom: -40px;
}

.carousel-control-up-icon,
.carousel-control-down-icon {
    display: inline-block;
    border-style: solid;
    border-width: 0.2em 0.2em 0 0;
    padding: 0.25em;
}

.carousel-control-up-icon {
    transform: rotate(-45deg);
    border-color: rgb(0, 0, 0);
}

.carousel-control-down-icon {
    transform: rotate(132deg);
    border-color: rgb(0, 0, 0);
}

.book-cards-section .nav-tabs {
    border: none;
}

.book-cards-section .nav-tabs .nav-link {
    border-bottom: 3px solid var(--font-color);
    color: var(--font-color);
    font-size: 16px;
    border-top: 0;
    border-right: 0;
    border-left: 0;
}

.book-cards-section .nav-tabs .nav-link.active {
    border-bottom: 3px solid #b0954e;
    color: var(--bok-maroon);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background: none;
}


.book-cards-section li a {
    color: #000;
}

.book-cards-section li::marker {
    color: #b0954e !important;
}



.book-cards-section li::marker {
    color: var(--btn-hover-color);
}

.book-cards-section li {
    font-size: 16px;
    margin-top: 15px;
    font-weight: 400;
    line-height: 25px;
}

.book-cards-section li:hover {

    color: var(--nav-dropdown-hover-color);
}

.book-cards-section h2 {
    font-size: 22px;
}


/* Calculator Section */
.calculator {
    padding: 10px;
}

.calculator-row {
    border: 1px solid #000;
    border-radius: 10px;
    /* background: #b39a4c; */
    -webkit-box-shadow: 0 0 5px 2px #fff;
    -moz-box-shadow: 0 0 5px 2px #fff;
    box-shadow: 0 0 5px 2px #fff;
    align-items: center;
}

.calculator-row .result {
    padding-right: 0px !important;
    display: table-cell;
    vertical-align: middle;
}

.calculator-row .input-group label {
    font-size: 18px;
    /* color: white; */
    font-weight: 500;
}

.calculator-section {
    margin-top: 80px;
}

.testimonials {
    margin-top: 100px;
    margin-bottom: 100px;
}

.calculator-section h3 {
    font-size: 50px;
}

.loan-tabs {
    display: flex;
    font-weight: 250px;
    gap: 0px !important;
}

.loan-tabs li {
    list-style: none;
    padding: 8px 20px;
    cursor: pointer;
    background-color: #e5e5e5;
    margin-right: 10px;
    border-radius: 5px;
    width: auto;
    text-align: center;
    font-size: 16px;
    font-weight: 400 !important;

}

.loan-tabs li.active {
    background-color: #820b0b;
    color: white;
}

.loan-tabs-cal {
    display: flex;
    margin-bottom: 20px;
}

.loan-tabs-cal li {
    list-style: none;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #e5e5e5;
    margin-right: 10px;
    border-radius: 5px;
    width: 250px;
    text-align: center;
}


.loan-tabs-cal li.active {
    background-color: #B39A4C;
    color: white;
}

.calculator-row {
    display: flex;
    justify-content: space-between;
}

.loan-calculator {
    background: transparent;
    padding: 20px 50px 20px 20px;
    border-radius: 10px;
}

.input-group {
    margin-bottom: 20px !important;
}

.loan-calculator input[type="range"] {
    width: 100%;

}

.accent {
    accent-color: #800000;
}

.amount-display {
    font-size: 1.2rem;
    margin-top: 10px;
}

.calculate-btn {
    background-color: #B59B4D;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    width: 190px;
    height: 50px;
    font-size: 16px;
    font-weight: 400
}

.slider-container45 span {
    /* color: white; */
    font-weight: 500;
}

.result-section {
    background: linear-gradient(135deg, #800000, #cc0000);
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    height: 50vh;
    display: table;
    width: 100%;
}


.result-section h3 {
    font-size: 35px;
    font-weight: 400;
    border-bottom: 5px solid white;
    padding-bottom: 5px;

}

.result-section h5 {
    font-size: 50px;
    color: var(--nav-dropdown-hover-color);
    font-weight: bold;
}

.result-section p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px !important;
    margin-bottom: 5px !important;
}


.fees span {
    font-weight: bold;
    /* border: 1px solid #ffffff; */

}

.fees-res {
    border: 1px solid #fff;
    padding: 10px;
    cursor: pointer;
    /* margin-right: 10px; */
    border-radius: 5px;
    /* text-align: center; */
    color: #f7f7f7;
    width: 100%;
    display: table;
    margin: 0 !important;
    font-size: 15px;
}


/* Search Modal; */

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(185, 196, 169, 0.9);
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: var(--nav-dropdown-hover-color) !important;
}

.overlay .closebtn:hover {
    color: var(--nav-dropdown-color) !important;
}

.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}

.overlay input[type=text]:hover {
    background: #f1f1f1;
}

.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.overlay button:hover {
    background: #bbb;
}


.btn-search {
    background: var(--btn-color) !important;
    color: #F8F8F8;
}


.btn-search:hover {
    background: var(--btn-hover-color) !important;
}

/* Bokak Section */

.Bokak-section {
    background-size: cover !important;
    ;
    /* background-position: center center !important;; */
    background-repeat: no-repeat !important;
    ;
    min-height: 100vh !important;
    ;
    display: flex;
    align-items: center;
}

.Bokak-section .tab-section {
    padding: 30px;
    height: 500px;
    /* overflow: auto; */
}


/* .Bokak-section .custom-action-btn{

    height: 50px !important;
    width: 30%;
} */


.Bokak-section .tab-section .nav-tabs {
    border: none;
}

/* .Bokak-section .tab-section .nav-tabs li{
    border-bottom: 1px solid #000;
} */

.Bokak-section .tab-section h2 {
    font-size: 40px;
    font-weight: 600 !important;
}

.tab-section .btn-warning {
    background-color: #b0954e;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
}

.tab-section .nav-link {
    color: #000;
    background: none;
    border: none;
}

.tab-section .nav-link {
    border-bottom: 3px solid black;
}

.tab-section .nav-link:hover {
    border-bottom: 2px solid #B22222;
}

.tab-section .nav-link.active {
    color: #B22222;
    background: none;
    border-bottom: 3px solid #B22222;
    /* Border color for active tab */
    font-weight: bold;
}

.tab-content>.tab-pane h4 {
    font-size: 35px;
    font-weight: 500;
    color: var(--font-color);
}

.tab-content>.tab-pane ul {
    padding: 0;
}

.tab-content>.tab-pane ul li {
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.tab-content>.tab-pane ul li:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background-color: #b39a4c;
    border-radius: 50%;
    left: 3px;
    top: 5px;
}

.tab-content>.tab-pane ul li a {
    color: #B22222;
}

.tab-content>.tab-pane p a {
    color: #B22222;
}

.app-store .store-img {
    width: 150px;
    margin-right: 10px;
}

.store-img {
    width: 150px;
    /* margin-top: 5px; */
}

/* Flex container to wrap buttons */
.button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* List items as buttons in rows */
.button-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Ensure equal spacing between buttons */
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 600px;
    /* Adjust the width to your container */
}

/* Styling the buttons */
.button-list li {
    flex: 0 0 48%;
    /* Two buttons per row, with slight gap */
    margin-bottom: 15px;
}

.btn-custom {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-custom:hover {
    background-color: #0056b3;
}



/* Page Section Header */
#innerBanner {
    margin-top: 155px;
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 0px;
    background-position: center;
}

#innerBanner:before {
    position: absolute;
    content: "";
    height: 100%;
    WIDTH: 70%;
    background-image: linear-gradient(to right, #000000, #ffffff00);
    /* background: linear-gradient(45deg, #000000, transparent); */
    left: 0;
    top: 0;
}

.sec-header h3 {
    font-weight: 500;
    font-size: 50px;
    line-height: 50px;
}

.sec-header h5 {
    font-weight: 250;
    font-size: 30px;
}

.sec-header h5 {
    font-weight: 250px;
    font-size: 25px;
}

/* Account Page */

.card2 {
    padding: 0px !important;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
    border: none;
    background: #e5e5e5de;
}


.card2:hover {
    transform: translateY(-5px);
    /* Slight hover effect */
}


.img-container {
    background-size: cover;
    /* Ensures the image covers the entire container */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent repeating the image */
    width: 100%;
    /* Full width of the column */
    height: 270px;
    /* Set a fixed height or adapt to content */
    border-radius: 5px;
    /* Adds rounded corners if needed */
}


/* Page Barumb */

.page_top-menu ul {
    display: flex;
    list-style: none;
    /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.page_top-menu li {
    margin-right: 20px;
    /* Space between menu items */
    position: relative;
    /* For the side line */
}

.page_top-menu li:not(:last-child)::after {
    content: "|";
    /* Side line after each item except last */
    position: absolute;
    right: -10px;
    /* Adjust spacing for the line */
    color: #ccc;
    /* Line color */
}

.page_top-menu a {
    text-decoration: none;
    /* Remove underline */
    color: #000;
    /* Text color */
    font-size: 12px;
}

.page_top-menu a:hover {
    color: #B39A4C;
    /* Change color on hover */
}

/* Bottom Contact Section */

.contact-section {
    margin-top: 80px;
    padding: 0px 0 0 0;
    margin-bottom: 0px;
}



.contact-section h3 {
    color: var(--web-red-color) !important;
    font-size: 50px !important;
    font-weight: 500 !important;
    margin-bottom: 20px;
}

/*
.section-title {
    color: #9B1E1E;
    font-size: 28px;
} */

.contact .contact-box {
    text-align: center;
    background-color: #fff;
    border-radius: 8px;

}

.contact .contact-icon {
    width: 60px;
    height: 60px;
    /* margin: 0 auto 15px auto; */
    /* Center the icon and add bottom margin */
}

.footer-contact-icon {
    text-align: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    transition: 0.3s;
}

.contact-box:hover .footer-contact-icon {
    transform: rotate(360deg);
}

.contact .con-content {
    margin-left: 20px;
    line-height: 10px;
    font-size: 18px;
}

.contact .con-content h4 {
    font-size: 20px;

}


.contact-page-icon {
    background-color: #9B1E1E;
    /* Red background */
    color: #fff;
    /* White icon color */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Make it a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.contact-page-icon i {
    font-size: 30px;
    /* Icon size */
}


.contact-box h5 {
    /* color: #000; */
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-box p {
    font-size: 16px;
    color: #333;
    color: var(--heading-color);
    margin: 0;
}

.contact-box a {
    text-decoration: none;
    color: var(--heading-color);
}

.contact-box a:hover {
    text-decoration: underline;
}



.bg-red {
    background: var(--web-red-color);
}

.icon-circle {
    background: var(--web-red-color);
}



/* News Page */

.news-item a {
    text-decoration: none;
}

.news-item p {
    margin: 0;
}

.news-section {
    margin-bottom: 80px;

}

.news-section .nav-pills .nav-link {
    border-radius: 0;
    color: #6c757d;
    background: none;
    padding: 30px;
    /* font-size: 20px; */
}

.news-section .nav-pills .nav-link.active {
    background-color: transparent;
    color: #B39A4C;
    border-bottom: 2px solid #B39A4C;
}

.news-section .pagination .page-link {
    color: #B39A4C;
}

/* LOCATOR */

.locator-section {
    background-color: #fff;
    padding: 60px 0;
}

#map {
    border: 1px solid #e0e0e0;
    height: 500px;
}

.list-group-item {
    border: 1px solid #e0e0e0;
    /* border-left: 4px solid #B39A4C; */
    padding: 10px;
}

.list-group-item:hover {
    background-color: #e7e7e7;
}

.list-group-item .text-muted {
    color: #7E1E1E !important;
    font-weight: bolder !important;
}

.locationList::-webkit-scrollbar {
    width: 20px;
}

.locationList::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

.locationList::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 10px;
}

.locationList::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

/* Custom CSS for the Leaflet Popup */

.locator-card {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    padding: 30px;
}


.custom-popup {
    text-align: center;
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    /* padding: 10px; */
    font-family: Arial, sans-serif;
}

.custom-popup .popup-header {
    background: linear-gradient(90deg, #A00000, #7E1E1E);
    color: #fff;
    padding: 10px 0px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.custom-popup .popup-body {
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.custom-popup .popup-body strong {
    font-size: 16px;
    color: #000;
}


/* Scrollbar for Webkit browsers */
#locationList::-webkit-scrollbar {
    width: 5px;
    /* Scrollbar width */
}

#locationList::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the scrollbar track */
}

#locationList::-webkit-scrollbar-thumb {
    background-color: #b30000;
    /* Scrollbar thumb (scroll handle) color */
    border-radius: 10px;
    /* Rounded corners for the scrollbar thumb */
}

#locationList::-webkit-scrollbar-thumb:hover {
    background-color: #b30000;
    /* Darker red when hovering over scrollbar */
}

/* Vision Section */
#vision-action .card {
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

#vision-action .col-lg-6 {
    margin-top: 20px;
}

#vision-action .card:hover {
    transform: translateY(-5px);
    /* Slight hover effect */
}

#vision-action .card-img-top {
    object-fit: cover;
    height: 300px;
    /* Adjust height of the image */
}

#vision-action .card-title {
    font-size: 30px;
    font-weight: 500 !important;
}

#vision-action .card-body {
    padding: 30px 10px;
}

#vision-action .card-text {
    font-size: 16px;
}

#vision-action {
    padding: 40px 0;
}

/* Vision Section */
#mission .card {
    border-radius: 10px !important;
    border: none !important;
    padding: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1) !important;
    text-align: center;
}

#mission .card:hover {
    transform: translateY(-5px);
    /* Add hover effect */
}

#mission .card img {
    width: 50px;
    /* Adjust icon size */
    height: auto;
}

#mission .card-text {
    font-size: 1rem;
    margin-top: 15px;
}

#mission h2 {
    font-size: 2rem;
}

#mission p {
    font-size: 1.1rem;
}

.Achievements {
    margin-top: 60px;
    margin-bottom: 0;
}

.Achievements p {
    margin-bottom: 16px;
}

.Achievements h2 {
    font-size: 2rem;
}

/* History Section */
#history {
    background: url(/image/template/full-bg-left.png);
    background-size: cover;
    color: #fff;
    min-height: 800px;
    display: flex;
    align-items: center;
    /* padding: 60px 0; */
    /* background-size: contain; */
    background-repeat: no-repeat;
    position: relative;
    /* background-attachment: fixed; */
    background-position: 75%;
}

#history:before {
    position: absolute;
    content: "";
    height: 100%;
    WIDTH: 100%;
    /* background: linear-gradient(90deg, #00000000, #ffffffbf); */
    left: 0;
    top: 0;
}

#history h2 {
    font-size: 2.5rem;
    color: var(--web-history-title-color);
    /* Yellowish text for heading */
}

#history p {
    font-size: 16px;
    line-height: 1.6;
}

#book-cards-section .container .row {
    align-items: center;
}

#history img {
    max-width: 100%;
    border-radius: 10px;
    /* Optional: Adds a slight roundness to the image */
}


/* Team Section*/

.team-item a {
    text-decoration: none;
}

.team-item p {
    margin: 0;
}

.team-section {
    margin-top: 50px;
    padding-bottom: 40px;

}

.team-section .nav-item {
    font-weight: 500;
    padding: 0px 10px 0px 10px;
}


.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #c6b479;
}

.accordion-button:focus {
    box-shadow: unset;
}

.tab-content .tab-pane .content-area p {
    font-size: 16px;
    margin-bottom: 20px;
}

.team-section .nav-pills .nav-link {
    width: auto;
    border-radius: 0;
    color: var(--tab-color);
    background: none;
    font-weight: 400px !important;
}

.tab-content>.tab-pane ul li {
    padding-bottom: 10px;
}

.team-list .card .card-img-top {
    height: 350px;
    object-fit: cover;
    object-position: 30% 40%;
}

.team-section .nav-pills {
    margin: auto;
    border-bottom: 1px solid gray;
}

.ca-section .nav-pills {
    margin: auto;
    border-bottom: 1px solid gray;
}

.ca-section .nav-pills li button img {
    height: 40px;
    object-fit: contain;
    width: 40px;
}

.team-section .nav-pills li button img {
    height: 50px;
    object-fit: contain;
}

.team-section .nav-pills li {
    border-bottom: 0px solid gray;
}

.ca-section .nav-pills li {
    border-bottom: 0px solid gray;
    width: 12%;
    margin: auto;
    text-align: center;
    display: table;
}

.team-section .nav-pills .nav-link.active {
    background-color: transparent;
    color: #B39A4C;
    border-bottom: 4px solid #B39A4C;
}

.team-section .pagination .page-link {
    color: #B39A4C;
}


#team-section .card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

#team-section .card a {
    color: #000;
}

#team-section .card:hover {
    transform: translateY(-5px);
    /* Slight hover effect */
}


/* Current Account Section */
.ca-item a {
    text-decoration: none;
}

.ca-item p {
    margin: 0;
}

.ca-section {
    margin-bottom: 80px;

}

.ca-section .nav-pills li::before {
    content: "" !important;
}


.ca-section .nav-pills .nav-link {
    border-radius: 0;
    color: var(--tab-color);
    background: none;
    padding: 15px;
    /* font-size: 20px; */
    height: 150px;
}

.ca-section .nav-pills .nav-link.active {
    background-color: transparent;
    color: #B39A4C;
    border-bottom: 2px solid #B39A4C;
}

.ca-section .pagination .page-link {
    color: #B39A4C;
}


/* NEW */
/* .dynmicSec-p80{
    padding: 80px 0;
} */




/* TOP */

/* Main dropdown content styles */
.top-dropdown-menu-content {
    position: relative !important;
    display: none !important;
    /* Initially hidden */
    background-color: white !important;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2) !important;
    padding: 10px !important;
    min-width: 150px !important;
    white-space: nowrap !important;
}

.top-dropdown-menu-content li {
    list-style: none !important;
    position: relative !important;
}

/* Submenu for "Private" category: positioning below the main item */
.sub-dropdown-menu {
    display: none !important;
    /* Hidden by default */
    position: absolute !important;
    left: 0 !important;
    /* Align the submenu with the left of the parent */
    top: 100% !important;
    /* Position below the parent item */
    background-color: white !important;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2) !important;
    padding: 10px !important;
    min-width: 150px !important;
}

/* Show the submenu on hover */
.dropdown:hover .sub-dropdown-menu {
    display: block !important;
    /* Show submenu */
}


.slider-btn {
    width: 50% !important;
    background: var(--nav-dropdown-color);
    height: 20% !important;
    border: none;
}

/* SLIDER */
.slider-container {
    margin-top: 50px;
    position: relative;
    width: 550px;
    height: 550px;
    perspective: 1000px;
}

.image-stack {
    position: absolute;
    width: 100%;
    height: 100%;
    /* transition: transform 0.5s ease, z-index 0s 0.5s; */
    transition: 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
}

.image-stack img {
    width: 100% !important;
    height: auto;
    border-radius: 10px;
}

.stack-center {
    z-index: 3;
    transform: translateY(0) scale(1.0);
}

.stack-top {
    z-index: 2;
    transform: translateY(-60px) scale(0.9);
}

.stack-bottom {
    z-index: 1;
    transform: translateY(60px) scale(0.9);
}

.nav-arrow {
    position: absolute;
    cursor: pointer;
    z-index: 4;
    font-size: 32px;
    color: var(--font-color) !important;
}

.up-arrow {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.down-arrow {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}




#testimonial-slider {
    background-color: #f8f9fa;
}

.testimonial-item {
    background: #fff;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-item img {
    max-width: 100%;
    border-radius: 8px;
}

.testimonial-item h3 {
    font-weight: 500 !important;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #c00;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}



/* Inner Pages */
.account-section-card .img-container {
    border-radius: 30px;
    display: block;
    margin: 0 auto;
    /* width: 70%; */

    /* Adjust width as needed */
    /* height: 55%;  */
    height: auto;
    padding: 15px;
    /* Adjust padding as needed */
}

.account-section-card .card-title {
    font-weight: 600;
}

.account-section-card .card-text {
    font-weight: 400;
    line-height: 20px;
    font-size: 15px;
}

.account-section-card a {
    font-weight: 500;
}


/* Bullter Section Finance */
.features-section {
    font-family: var(--default-font);
    padding: 5px 0;
}

.feature-block {
    margin-bottom: 40px;
}

.feature-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--web-red-color) !important;
    /* Dark red color */
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    font-weight: 400;

}

.features-section li {
    list-style: none;
    padding-left: 0;
    font-weight: 400;

}

.feature-list li {
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.features-section li {
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.features-section li::before {
    content: "â—";
    color: #B39A4C;
    /* Golden bullet color */
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}

.feature-list li::before {
    content: "â—";
    color: #B39A4C;
    /* Golden bullet color */
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}

.feature-custom-class h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--web-red-color) !important;
    margin-bottom: 20px;
}

.feature-custom-class h3 {
    font-size: 28px;
    font-weight: 400;
    color: var(--web-red-color) !important;
    margin-bottom: 20px;
}

.feature-custom-class li {
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    list-style: none;
    color: var(--list-color);
}

.feature-custom-class li::before {
    content: "";
    color: #B39A4C;
    font-size: 16px;
    position: absolute;
    left: 0px;
    top: 8px;
    line-height: 1.5;
    height: 10px;
    width: 10px;
    background: #B39A4C;
    border-radius: 50%;
}


.features-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--web-red-color) !important;
    margin-bottom: 20px;
}

.features-section h3 {
    font-size: 28px;
    font-weight: 400;
    color: var(--web-red-color) !important;
    margin-bottom: 20px;
}



/* Card Tab inner Page */


/* .team-section {
    margin-top: 100px;
    margin-bottom: 80px;

}
.team-section .nav-item{
    font-weight: 500;
    padding: 0px 0px 0px 25px;
} */




.card-inner-section .nav-pills .nav-link {
    width: 180px;
    border-radius: 0;
    color: #000;
    color: var(--heading-color);
    background: none;
    font-weight: 400px !important;
}

.card-inner-section .nav-pills {
    /* background-color: transparent; */
    /* color: #B39A4C; */
    border-bottom: 1px solid gray;
}


.card-inner-section .nav-pills .nav-link.active {
    background-color: transparent;
    color: #B39A4C;
    border-bottom: 4px solid #B39A4C;
}

.card-inner-section .pagination .page-link {
    color: #B39A4C;
}


#card-inner-section .card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border: none;
}


#card-inner-section .card:hover {
    transform: translateY(-5px);
    /* Slight hover effect */
}


.subsidiaries p {
    font-size: 16px;
    margin-bottom: 15px;
}

.subsidiaries {
    padding: 0px 50px 0px 0px !important;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item img {
    transition: 0.3s;
}

.contact-item:hover img {
    transform: rotate(360deg);
}

/* Community section */

#community-enrichment {
    margin-top: 100px;
}

#community-enrichment h2 {
    font-size: 48px;
    font-weight: 450 !important
}

#community-enrichment .text-danger {
    color: #b22222;
    /* Customize red color as per design */
}

#community-enrichment ul {
    padding-left: 0;
    list-style: none;
}

#community-enrichment ul li {
    margin-bottom: 0.5rem;
}

#community-enrichment .fw-bold {
    font-weight: 400;
}

#community-enrichment img {
    /* border-radius: 8px; */
    max-width: 100%;
}

.editor-only {
    display: block;
    /* Visible in Summernote editor */
}

.note-editable .editor-only {
    display: block;
    /* Visible in the Summernote editor */
}

.note-editable .editor-only,
.editor-only:not(.note-editable) {
    display: none !important;
    /* Hidden on the front-end */
}

/* Align Delete Button */
.accordion-item .delete-accordion-item {
    float: right;
    /* Align to the right */
    margin-top: 5px;
}

#community-enrichment p {
    margin-left: 75px;
}

#community-enrichment .card {
    border: none;
}


/* banking Service Section */
#banking-service-section {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    position: relative;
}

#banking-service-section:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    /* background: linear-gradient(90deg, #ffffff, transparent); */
    left: 0;
    top: 0;
}

.banking-service-title {
    font-size: 40px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.banking-service-title .banking-service-highlight {
    color: #c1272d;
}

.banking-service-feature-item {
    margin-top: 30px;
}

.banking-service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.banking-service-feature-icon {
    width: 40px;
    margin-right: 15px;
    margin-top: -5px;
}

.banking-service-feature-text h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.banking-service-feature-text p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

.content-box {
    padding-left: 160px;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    float: left;
    font-size: 30px;
}

.icon-box p {
    float: left;
    padding-right: 10px;
    text-align: right;
}

footer#footer .row {
    margin: 0px 100px;
}

.down-arrow {
    bottom: -15px !important;
}

.feature-custom-class h2 {
    margin-bottom: 0;
}

.accordion-collapse {
    padding: 20px;
}

.accordion-collapse ul {
    padding: 0px;
}

.accordion-body {
    padding: 0;
}

.custom-modal .modal-header h5 {
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 25px;
}

.custom-modal .modal-body #modalDesignation {
    font-weight: bold;
    padding-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.custom-modal .modal-body {
    padding: 40px;
}

p#modalDescription {
    font-size: 16px;
}

.custom-modal .modal-header {
    background-color: #b59b4d;
}

.modal-content {
    border: unset;
}

.custom-modal .modal-footer {
    display: none;
}

.modal-header .close {
    background-color: #8E0806;
    height: 35px;
    width: 35px;
    border: unset;
    font-size: 25px;
    position: relative;
}

.modal-header .close span {
    transform: scale(1.5);
    position: absolute;
    color: white;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}

#community-enrichment {
    margin-top: 40px;
}

.modal.show .modal-dialog {
    max-width: 800px !important;
}

.custom-popup {
    width: 100%;
    padding: 10px;
}

.gm-style .gm-style-iw-c {
    width: 100%;
    padding: 0;
}

.find-search-main {
    position: relative;
}

.find-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 13px 50px;
    border: unset;
    color: white;
    background: #8e0806;
    border-radius: 8px;
}

.opn-srch {
    padding-left: 20px !important;
}

.custom-action-btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom-popup .popup-body {
    padding: 10px 0px 0px 0px;
    font-size: 25px;
}

table.table.table-hover.w-100 {
    margin: 0;
}

.news-item {
    padding: 15px 0px;
}



/* Comen CSS From Backend */
.add-tab-button {
    display: none;
}

.edit-icon {
    display: none;
}

.duplicate-icon {
    display: none;
}




/* Home Page Sliders */
.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: left bottom;
    position: relative;
}

.carousel-item:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0000004a;
    left: 0;
    top: 0;
    z-index: 1;
}

.slider-bg {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 100%;
    /* z-index: 1;  */
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    /* To ensure content doesn't touch the right edge */
}

.slider-content h1 {
    /* font-size: 3rem;
    color: #fff;
    font-weight: 400; */
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    line-height: 40px;
}

.slider-content h2 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.download-btn-form {
    background-color: #8d0806;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.download-btn-form:hover {
    color: white;
    background-color: #b39a4c;
}

.btn-apply {
    background-color: #c4a654;
    color: white;
    border-radius: 10px;
    padding: 10px 30px;
    border: none;
    margin-top: 20px;
    /* Give some space between the text and the button */
}

.feature-custom-class p {
    margin-bottom: 15px;
}

/* Responsive Custom Controls */
.custom-control {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    color: white;
}

.custom-control .arrow {
    font-size: 35px;
    color: white !important;
}

.custom-control .solid-line {
    width: 40px;
    height: 2px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 7px;
    /* background-color: white; */
    /* Default color (inactive slides) */

}



.carousel-control-prev {
    left: 10%;
}

.carousel-control-next {
    right: 82%;
}

/* Mobile & Tablet Adjustments */
@media (max-width: 768px) {
    .result-section {
        height: max-content;
    }

    .custom-control {
        top: 80%
    }

    .carousel-item {
        height: 70vh;
    }

    .slider-content h1 {
        font-size: 2rem;
    }

    .slider-content h2 {
        font-size: 1rem;
    }

    .slider-content {
        left: 0%;
        /* Adjust left padding for mobile */
        /* padding-right: 5%; */
        /* Ensure content is not touching the edge */
    }

    .btn-apply {
        padding: 10px 20px;
        /* Smaller padding on mobile */
    }

    .custom-control {
        width: 60px;
        height: 40px;
    }

    .custom-control .arrow {
        font-size: 40px;
    }

    .custom-control .solid-line {
        margin-top: 10px;
        width: 30px;

    }

    .carousel-control-prev {
        left: 30%;
    }

    .carousel-control-next {
        right: 30%;
    }
}

/* End Home Page Slider */

.webreview img {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }
  
  .webreview img:hover {
    border-radius: 100px;
    background-color: var(--bok-bg-maroon);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    cursor: pointer;
  }


  .tab-color-section p{
    color: var(--default-color);
  }
   .tab-color-section div{
    color: var(--default-color);
  }