:root {
   --ecbz-white: #ffffff;
   --ecbz-white-soft: #f8f8f8;
   --ecbz-gray: #505D7B;
   --ecbz-gray-soft: #c5c7c8;
   --ecbz-black: #181818;
   --ecbz-black-soft: #222222;
   --ecbz-primary: #2e3092;
   --ecbz-primary-rgb: rgb(18, 133, 229);
   --ecbz-primary-lt: #c2dcf5;
   --ecbz-primary-lt-rgb: rgb(194, 220, 245);
   --ecbz-secondary: #ffd90d;
   --ecbz-secondary-rgb: rgb(255, 217, 13);
   --ecbz-secondary-lt: #fff786;
   --ecbz-secondary-lt-rgb: rgb(255, 247, 134);
   --ecbz-primary-hover: #094783;
   --ecbz-primary-active: #06529e;
   --ecbz-primary-border: #c2dcf5;
   --ecbz-secondary-hover: #d19300;
   --ecbz-secondary-active: #fffdc1;
   --ecbz-secondary-border: #ffeb41;

   --ecbz-body-bg: var(--ecbz-white);
   --ecbz-body-color: var(--ecbz-black-soft);

   --ecbz-font-family: 'Roboto', 'Dosis', 'Helvetica Neue', Arial, sans-serif;
   --ecbz-font-size: 0.845rem;
   --ecbz-font-weight: 400;
   --ecbz-font-weight-bold: 700;
   --ecbz-font-weight-bolder: 700;
   --ecbz-line-height: 1.4285714286;
   --ecbz-border-radius: 5px;
}

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

@media (prefers-reduced-motion: no-preference) {
   :root {
      scroll-behavior: smooth;
   }
}

body {
   margin: 0;
   width: 100%;
   height: 100%;
   font-family: var(--ecbz-font-family);
   font-size: var(--ecbz-font-size);
   font-weight: var(--ecbz-font-weight);
   line-height: var(--ecbz-line-height);
   background-color: var(--ecbz-body-bg);
   color: var(--ecbz-body-color);
   -webkit-text-size-adjust: 100%;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
   margin-top: 0;
   margin-bottom: 1.5rem;
   font-weight: var(--ecbz-font-weight-bold);
   line-height: 1.2;
   color: inherit;
}
p {
   font-size: 1rem;
   line-height: 1.5;
}
a {
   cursor: pointer;
   font-size: 1rem;
}
.primary-btn {
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white);
   font-weight: var(--ecbz-font-weight-bold);
   padding: 12px 25px;
   border: none;
   border-radius: var(--ecbz-border-radius);
   cursor: pointer;
   font-size: 1rem;
   text-align: center;
   transition: all 0.8s ease;
   position: relative;
   display: inline-block;
}
/*.primary-btn:hover, .primary-btn:focus, .primary-btn:active {*/
/*   background-color: var(--ecbz-primary-active);*/
/*}*/
.primary-btn-lt {
   background-color: var(--ecbz-primary-lt);
   color: var(--ecbz-white);
   font-weight: var(--ecbz-font-weight-bold);
   padding: 12px 25px;
   border: none;
   border-radius: var(--ecbz-border-radius);
   cursor: pointer;
   font-size: 1rem;
   text-align: center;
   display: inline-block;
   transition: all 0.6s ease;
}
/*.primary-btn-lt:hover, .primary-btn-lt:focus, .primary-btn-lt:active {*/
/*   background-color: var(--ecbz-primary);*/
/*   color: var(--ecbz-white);*/
/*}*/
.secondary-btn {
   background-color: var(--ecbz-secondary);
   color: var(--ecbz-white);
   font-weight: var(--ecbz-font-weight-bold);
   padding: 12px 25px;
   border: none;
   border-radius: var(--ecbz-border-radius);
   cursor: pointer;
   font-size: 1rem;
   text-align: center;
   display: inline-block;
   transition: all 0.6s ease;
}
a.primary-btn, a.primary-btn-lt, a.secondary-btn, a.secondary-btn-lt, a.default-btn {
   text-decoration: none !important;
}
/*.secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active {*/
/*   background-color: var(--ecbz-secondary-hover);*/
/*}*/
.default-btn {
   background-color: var(--ecbz-white);
   color: var(--ecbz-black-soft);
   font-weight: var(--ecbz-font-weight-bold);
   padding: 12px 25px;
   border: none;
   border-radius: var(--ecbz-border-radius);
   cursor: pointer;
   font-size: 1rem;
   display: inline-block;
   transition: background-color 0.6s ease, border 0.6s ease-in-out;
}
.primary-btn.btn-outline {
   border: 2px solid var(--ecbz-primary);
   border-radius: 30px;
   background-color: transparent;
   color: var(--ecbz-primary);
   transition: all 0.6s ease;
}
.default-btn.btn-outline {
   border-radius: 30px;
   background-color: var(--ecbz-white);
   color: var(--ecbz-black-soft);
   font-weight: var(--ecbz-font-weight-bold);
}
.secondary-btn.btn-outline {
   border: 2px solid var(--ecbz-secondary);
   border-radius: 50rem !important;
   background-color: transparent;
   color: var(--ecbz-secondary);
   transition: all 0.6s ease;
}
.primary-btn.btn-outline:hover {
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white-soft);
}
.secondary-btn.btn-outline:hover {
   background-color: var(--ecbz-secondary);
   color: var(--ecbz-white-soft);
}
.text-primary {
   color: var(--ecbz-primary) !important;
}
.text-secondary {
   color: var(--ecbz-secondary) !important;
}

.topbar {
   position: relative;
   width: 100%;
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white);
   display: flex;
   align-items: center;
}
.topbar-sections {
   position: relative;
   display: flex;
   align-items: center;
   width: 100%;
   padding: 0.5rem 0;
}
.widgets {
   width: 75%;
   height: inherit;
   list-style: none;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: start;
   text-wrap: nowrap;
   margin-left: 5px;
   margin-bottom: 0;
   padding: 0;
}
.widget-item {
   text-align: center;
   align-items: center;
   justify-content: start;
   padding: 0 35px;
}
.widget-text {
   display: flex;
   align-items: center;
   margin-bottom: 0;
}
.widget-item:first-child {
   padding-left: 0;
   border-right: 1px solid var(--ecbz-white);
}
.widget-item:nth-child(2) {
   text-align: center;
   align-items: center;
   border-right: 1px solid var(--ecbz-white);
}
.widget-item:last-child {
   border-right: none;
   padding-right: 0;
}
a .widget-link, .widget-link, p .widget-text, .widget-text {
   display: flex;
   align-items: center;
   text-align: center;
   text-decoration: none;
   line-height: 1.1;
   color: var(--ecbz-white);
   transition: all 0.65s ease;
}
.widget-link i,
.widget-text i {
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
}
.widget-icon {
   font-size: 1.05rem;
   color: var(--ecbz-secondary);
   padding-right: 8px;
}
.widget-icon::before {
   content: '';
   display: inline-block;
   width: 1rem;
}
.socials {
   width: 25%;
   height: inherit;
   margin: 0;
   padding-right: 0.85rem;
   list-style: none;
   display: flex;
   flex-direction: row;
   column-gap: 25px;
   align-items: stretch;
   justify-content: end;
}
.social-item {
   text-align: center;
}
.social-link {
   color: var(--ecbz-white);
   text-decoration: none;
   transition: all 0.65s ease;
}
.widget-item .widget-link:hover, .widget-item .widget-text:hover, .social-item .social-link:hover {
   color: var(--ecbz-secondary);
}

.navbar {
   background-color: var(--ecbz-white);
   /*padding: 0.7rem 0;*/
}
.nav-button {
   display: flex;
   flex-direction: row;
   margin: auto 0;
}
.nav-button a {
   padding: 20px;
   text-decoration: none;
   color: var(--ecbz-black-soft);
}
.navbar-brand {
   width: 45%;
}
.navbar-brand img {
   width: 75% !important;
   height: auto;
}
.navbar-brand-image {
   height: 2rem;
   width: auto;
}
.contact-box {
   display: flex;
   column-gap: 10px;
   align-items: center;
}
.contact-icon {
   display: flex;
   line-height: 1;
   padding: 15px;
   background-color: var(--ecbz-secondary);
   color: var(--ecbz-white);
   font-size: 1.3rem;
   border-radius: 50%;
}
.contact-details > span {
   display: block;
}
.detail-1 {
   font-size: 0.845rem;
   color: var(--ecbz-black-soft);
}
.detail-2 {
   font-size: 1rem;
   font-weight: 700;
   color: var(--ecbz-black-soft);
   transition: color 0.3s ease;
}
.detail-2:hover {
   color: var(--ecbz-secondary);
}
a .detail-2 {
   text-decoration: none;
   color: inherit;
}
.menu {
   width: auto;
}
.menu .menu-items {
   display: flex;
}
.menu-items {
   font-weight: 600;
   display: flex;
   flex-direction: row;
   padding: 0;
   margin: 0;
   align-items: stretch;
   list-style: none;
}
.menu-items .menu-item {
   display: flex;
   flex-direction: column;
   column-gap: 12px;
   justify-content: center;
}
.menu-link {
   position:relative;
   padding: 12px 18px;
   border-radius: 5px;
   border: 2px solid transparent;
   color: var(--ecbz-black);
   text-decoration: none;
   transition: all 0.65s ease;
}
.menu-link:hover, .menu-link:focus {
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white);
   cursor: pointer;
}
.menu-link.active {
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white);
}
.menu-collapse {
   flex-basis: 100%;
   flex-grow: 1;
   align-items: center;
}

.menu-item.dropdown-menu {
   position: relative;
}
.dropdown-menu {
   display: block;
   visibility: hidden;
   opacity: 0;
   transform: translateY(10px);
   transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.3s ease;;
   position: absolute;
   top: 100%;
   left: 0;
   background-color: var(--ecbz-white);
   box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3);
   border-radius: 0.25rem;
   border: none;
   z-index: 1000;
   pointer-events: none;
}
.dropdown-item {
   /*margin-bottom: 10px;*/
   padding: 0.65rem 1rem;
}
.menu-item.dropdown:hover .dropdown-menu {
   display: block;
   visibility: visible;
   opacity: 1;
   transform: translateY(0);
   pointer-events: auto;
}
.dropdown-item.active, .dropdown-item.active:hover {
   color: var(--ecbz-white) !important;
   background-color: var(--ecbz-primary) !important;
}
.dropdown-item:hover {
   background-color: var(--ecbz-primary-lt) !important;
   color: var(--ecbz-black-soft) !important;
}

/* Mobile Menu */
.mobile-menu {
   position: fixed;
   top: 0;
   left: 0;
   width: 80%;
   max-width: 300px;
   height: 100vh;
   background: #fff;
   box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
   z-index: 1050;
   padding: 2rem 1rem;
   transform: translateX(-100%);
   transition: transform 0.3s ease-in-out;
   overflow-y: auto;
}
.mobile-menu.active {
   transform: translateX(0);
}
.mobile-menu-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1040;
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.3s ease-in-out;
}
.mobile-menu-overlay.active {
   opacity: 1;
   visibility: visible;
}
.close-btn {
   position: absolute;
   top: 1rem;
   right: 1rem;
   font-size: 2rem;
   background: none;
   border: none;
   cursor: pointer;
}
.mobile-menu-items {
   list-style: none;
   padding: 0;
   margin: 2rem 0;
}
.mobile-menu-item {
   margin-bottom: 0.5rem;
   border-bottom: 1px solid var(--ecbz-white-soft);
}
.mobile-menu-link {
   padding-left: 0.5rem;
   padding-bottom: 0.5rem;
   text-decoration: none;
   font-size: 1.2rem;
   color: #333;
   display: block;
   transition: color 0.2s ease-in-out;
}
.mobile-menu-link:hover {
   color: var(--ecbz-primary) !important;
}
.dropdown-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.dropdown-toggle i {
   padding: 5px;
   border: none;
   color: inherit;
   border-radius: 3px;
}
.dropdown-toggle {
   background: none;
   border: none;
   padding: 0 !important;
   margin-left: 0.5rem;
   font-size: 1rem;
   cursor: pointer;
}
.dropdown-menu.dropdown-mobile-menu {
   max-height: 0;
   overflow: hidden;
   opacity: 0.5;
   padding-left: 1rem;
   transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
   display: flex;
   flex-direction: column;
   pointer-events: none;
   position: absolute;
   z-index: 1000;
}
.dropdown.open .dropdown-menu.dropdown-mobile-menu {
   max-height: 500px;
   opacity: 1;
   pointer-events: auto;
}
.dropdown-menu a {
   font-size: 1rem;
   color: #444;
   text-decoration: none;
   transition: all 0.4s ease-in-out;
}
.dropdown-toggle-hide-arrow::before, .dropdown-toggle-hide-arrow::after,
.dropdown-toggle-hide-arrow > .dropdown-toggle::before,
.dropdown-toggle-hide-arrow > .dropdown-toggle::after {
   display: none !important;
}
.dropdown-menu a:hover {
   color: var(--ecbz-primary);
}
.dropdown.open .dropdown-menu {
   max-height: 500px;
   opacity: 1;
}
.dropdown.open .dropdown-toggle i {
   transform: rotate(180deg);
   transition: transform 0.3s ease;
}
.dropdown.close .dropdown-toggle i {
   transform: rotate(0deg);
   transition: transform 0.3s ease;
}

.page-footer {
   width: 100%;
   color: var(--ecbz-white);
}
.top-footer {
   width: 100%;
   height: auto;
   padding: 50px 5px;
   background: url("../images/bg-ft.jpeg");
}
.top-footer .container {
   display: flex;
   justify-content: space-between;
   align-items: stretch;
   align-content: center;
   vertical-align: center;
   line-height: 1;
}
.footer-logo {
   flex: 1 1 200px;
   padding: 0;
   text-align: start;
   align-content: center;
   margin: auto 0;
}
.footer-info {
   flex: 2 1 300px;
   font-size: 0.875rem;
   border: none;
   margin: auto 0;
   display: inline-block;
   vertical-align: center;
   align-content: center;
}
.info-details h2 {
   color: var(--ecbz-white);
}
.info-details p {
   line-height: 0.9;
   font-size: 0.95rem !important;
   color: var(--ecbz-white) !important;
}
.footer-info .details {
   padding: 0 20px;
   vertical-align: center !important;
}
.footer-contact-form {
   width: inherit;
   display: flex;
   line-height: 1;
   vertical-align: center;
   column-gap: 20px;
   flex: 1 1 300px;
   padding: 0;
   margin-top: 10px;
   align-content: center;
}
/*.footer-contact-form {*/
/*   width: inherit;*/
/*   display: flex;*/
/*   line-height: 1;*/
/*   vertical-align: center;*/
/*   column-gap: 20px;*/
/*   padding: 0 20px;*/
/*   align-content: center;*/
/*}*/
.footer-contact-form input {
   width: 75%;
   margin: auto 0;
}
.footer-contact-form a {
   width: auto;
   margin: auto 0;
}
.page-footer a {
   text-decoration: none;
   transition: color 0.3s ease;
}
.bottom-footer {
   width: 100%;
   height: auto;
   padding: 50px 5px;
   background-color: var(--ecbz-primary);
}
.card {
   box-shadow: 5px 8px 16px 3px rgba(0, 0, 0, 0.3);
   border: none !important;
}
.card-img-top.fixed {
   height: 277px;
   width: 100%;
   object-fit: cover;
}
.card-default {
   height: inherit !important;
   color: var(--ecbz-black-soft);
   background-color: var(--ecbz-body-bg);
   border-radius: 10px;
}
.card-default .card-body {
   padding: 2rem;
}
.card-details {
   display: flex;
   flex-direction: column;
   align-items: center; /* or center if you want center-aligned content */
}
.card-body .card-details {
   padding: 0;
}
.icon-box {
   width: 100%;
   display: flex;
   flex-direction: row;
   align-items: center;
   vertical-align: middle;
   column-gap: 25px;
   margin-bottom: 1.65rem;
}
.icon-box__i {
   width: auto;
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
}
.icon-box__i i {
   padding: 10px;
   border-radius: 8px;
   font-size: 2rem;
   background-color: var(--ecbz-secondary);
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
}
.icon-box span {
   font-size: 1.3rem;
   font-weight: var(--ecbz-font-weight-bold);
   text-wrap: wrap;
}
.box-details {
   text-wrap: wrap;
   font-size: 1rem;
   font-weight: normal;
   margin-bottom: 1.65rem;
}
a .secondary-btn {
   width: 100%;
   text-wrap: wrap;
}
.footer-links {
   display: flex;
   flex-direction: column;
   padding: 0;
   line-height: 1.2;
}
.footer-links h3 {
   margin-bottom: 0.75rem;
}
.footer-links {
   list-style: none;
}
.footer-link a {
   color: var(--ecbz-white-soft);
   text-decoration: none;
   transition: all 0.45s ease-in-out;
   text-wrap: wrap;
}
.footer-link a:hover {
   color: var(--ecbz-secondary);
}
.footer-link::before {
   content: "» "; /* or use →, », › etc. */
   color: var(--ecbz-secondary);
   margin-right: 8px;
   font-weight: bold;
   font-size: 1.645rem;
}
.footer-contacts {
   padding: 0;
   line-height: 1.35;
   display: grid;
   row-gap:10px;
}
.footer-contacts h3 {
   margin-bottom: 1rem !important;
}
.footer-contact {
   padding-bottom: 12px;
   display: flex;
   flex-direction: row;
   align-items: flex-start;
   flex: 1 auto;
   gap: 20px;
}
.footer-contact i {
   font-size: 1.475rem;
   line-height: 1;
   vertical-align: center;
   align-items: flex-start;
   justify-content: center;
   color: var(--ecbz-secondary);
}
.footer-contact a, .footer-contact span {
   display: inline-block;
   text-decoration: none;
   color: var(--ecbz-white);
}
.footer-contact span {
   font-size: 1rem;
}
.footer-contact a:hover, .footer-contact a:active, .footer-contact a:focus,
.footer-contact span:hover {
   color: var(--ecbz-secondary);
}
.footer-contact p {
   display: flex;
   flex-direction: column;
   text-wrap: wrap;
   margin-bottom: 0;
   font-size: 0.965rem;
}
.contact-details {
   display: flex;
   flex-direction: column;
   row-gap: 5px;
}
.copyright {
   width: 100%;
   padding: 20px 30px;
   margin-top: 30px;
   border-radius: 8px;
   border-bottom: 3px solid var(--ecbz-white);
   box-shadow: -3px -3px 20px rgba(0, 0, 0, 0.2);
}
.copyright p {
   margin: 0;
   font-size: 1rem;
}
.copyright p.text-right {
   text-align: right;
}
.copyright a {
   text-decoration: none;
   color: var(--ecbz-secondary);
   padding: 0 3px;
   font-size: 1rem;
}

.page {
   margin: 0;
   padding: 0;
   position: relative;
}
.hero-section {
   min-width: 100%;
   height: auto;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   padding: 0 20px;
   color: #fff;
   overflow: hidden;
   background: linear-gradient(to right, var(--ecbz-primary-rgb), var(--ecbz-primary-rgb), transparent),
   no-repeat center / cover;
}
.hero-content {
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: start;
   position:relative;
   text-wrap: wrap;
   z-index: 2;
   padding: 20px 0;
}
.sub-header {
   text-transform: uppercase !important;
   font-weight: var(--ecbz-font-weight-bold);
   font-size: 0.954rem !important;
   line-height: 1.5;
   color: var(--ecbz-secondary);
}
.hero-content h1 {
   margin-bottom: 1rem;
}
.hero-content p {
   text-wrap: wrap;
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
}
.hero-content .cta-btn {
   margin: 0;
   display: flex;
   column-gap: 15px;
}
.section {
   width: 100%;
   padding: 80px 0;
   position: relative;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   row-gap: 50px;
}
.section-margin {
   margin-bottom: 3rem;
}
.section.services {
   /*background: url("../images/bg-team.webp") no-repeat center / cover;*/
   background-color: var(--ecbz-white-soft);
}
.section.faqs {
   /*background-color: var(--ecbz-white-soft);*/
   background: url("../images/faq-bg.jpeg") no-repeat center / cover;
}
.section.skills {
   /*background-color: var(--ecbz-white-soft);*/
}
.section-subheading {
   padding: 18px 0;
   border: none;
}
.section-subheading span {
   padding: 5px 20px;
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white);
   border-radius: 999px;
   text-transform: uppercase;
   font-size: 1rem;
   font-weight: normal;
   display: inline-block;
   transition: background-color 0.3s ease, transform 0.3s ease;
}
h1.section-heading {
   line-height: 1.2;
}
.section-details {
   font-size: 0.8rem;
   line-height: 1;
   margin: 0 auto;
}
.section-details p {
   font-size: 1.2rem;
}
.projects .section-details {
   text-align: center;
   justify-content: center;
}
.project-section-cta {
   align-items: center;
   justify-content: center;
   margin: 0.8rem 0;
   width: 100%;
   height: 100%;
   line-height: 1;
}
.analysis {
   display: flex;
   flex-direction: column;
   row-gap: 5px;
}
.analysis h1 {
   color: var(--ecbz-secondary);
}
.analysis p {
   color: var(--ecbz-black-soft);
}
.analysis h1, .analysis p {
   margin: 0;
}
.section-cta {
   display: inline-block;
   flex-direction: row;
   column-gap: 10px;
   align-items: start;
   justify-content: start;
   margin-top: 0.8rem;
}
.section-cta a {
   width: inherit;
   justify-content: start;
}
.section-image {
   width: 100%;
   height: 330px;
   border: none;
   border-radius: 8px;
   background: no-repeat center / cover;
}
.section-image img {
   background: no-repeat center / cover !important;
   width: inherit;
   height: inherit;
   border-radius: 8px;
}
.card-body.project {
   padding: 2rem 2.5rem;
   display: flex;
   flex-direction: column;
}
a.project-title {
   text-decoration: none;
   color: var(--ecbz-primary);
   transition: color 0.6s ease
}
.project-title:hover, .project-title:focus, .project-title:active {
   color: var(--ecbz-secondary);
}
.card-body.project p {
   line-height: 1.5;
}
.section-progress {
   min-width: 100%;
}
.progress-bar {
   background-color: var(--ecbz-primary-lt) !important;
}
.progress-bar-item {
   display: flex;
   flex-direction: column;
   margin-bottom: 1.2rem;
   padding: 10px 5px;
}
.progress-bar-meta {
   margin: 0 0 5px 0;
   display: flex;
   flex-direction: row;
   column-gap: 20px;
   color: var(--ecbz-gray);
}
.progress-percentage {
   font-size: 18px;
   font-weight: 600;
   padding: 0;
   margin: 0;
   text-align: end;
}

.image-composition {
   position: relative;
   width: 100%;
   max-width: 600px;
   height: auto;
   margin: auto 0;
   padding: 30px;
}
.main-image img {
   width: 100%;
   min-width: 100%;
   border-radius: 16px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   z-index: 1;
   position: relative;
   overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/*.main-image img {*/
/*   width: 100%;*/
/*   display: block;*/
/*   border-radius: 16px;*/
/*   transition: inherit;*/
/*}*/
/*.main-image:hover {*/
/*   transform: scale(1.05);*/
/*   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);*/
/*}*/
.overlay-image {
   position: absolute;
   width: 45%;
   padding: 8px;
   background-color: var(--ecbz-primary-lt);
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
   transition: transform 0.65s ease, box-shadow 0.65s ease;
}
.overlay-image img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 5px;
}
.overlay-image.first {
   top: 0;
   left: -3%;
   z-index: 2;
}
.overlay-image.second {
   top: 60%;
   right: -3%;
   z-index: 2;
}
.overlay-image:hover {
   transform: scale(1.05);
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.faq-accordion {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.faq-accordion-item {
   background: var(--ecbz-white);
   border: none;
   overflow: hidden;
   /*border-radius: 50px;*/
}
.faq-accordion-header {
   margin: 0;
   border-radius: 50px;
   border: 1px solid var(--ecbz-secondary);
}
.faq-accordion-button {
   background: var(--ecbz-white);
   border: none;
   width: 100%;
   text-align: left;
   padding: 0.85rem 2rem;
   font-weight: bold;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-radius: 75px;
   color: #111;
   transition: all 0.6s ease;
}
.faq-accordion-button .icon {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: var(--ecbz-primary); /* Orange circle background */
   color: var(--ecbz-white);
   border-radius: 50%;
   width: 35px;
   height: 35px;
   font-size: 1rem;
   transition: all 0.4s ease;
}
.icon i {
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
}
.faq-accordion-button.collapsed .icon i::before {
   content: "\2b"; /* Unicode for plus */
}
.faq-accordion-button:not(.collapsed) {
   background-color: var(--ecbz-white);
}
.faq-accordion-button:not(.collapsed) .icon {
   background-color: var(--ecbz-primary);
}
.faq-accordion-button:not(.collapsed) .icon i::before {
   content: "\2212"; /* Unicode for minus */
}
.faq-accordion-body {
   padding: 1rem 2rem;
   background-color: white;
   border: none;
   font-size: 0.95rem;
   color: #666;
}

.page-banner {
   padding: 120px 0;
   position: relative;
   overflow: hidden;
   z-index: 1;
   margin: 0;
}
.page-banner::before {
   content: "";
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   background: url("../images/blue-wall.jpg") no-repeat center / cover;
   z-index: -2;
}
.page-banner h1 {
   color: var(--ecbz-white);
   font-size: 56px;
   font-weight: 600;
   line-height: 56px;
}
.page-banner .banner-content {
   margin-block: -6px -8px;
}
.breadcrumb-item {
   font-size: 0.985rem;
   font-weight: 400;
   line-height: 15px;
}
.breadcrumb-item a {
   text-decoration: none;
   color: var(--ecbz-white);
   font-size: inherit;
   font-weight: inherit;
   line-height: inherit;
   transition: 0.6s;
}
.breadcrumb-item a:hover {
   color: var(--ecbz-secondary);
}
.breadcrumb-item + .breadcrumb-item::before {
   float: left;
   padding-right: 0.5rem;
   color: var(--ecbz-gray);
   content: "/" /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
   color: var(--ecbz-secondary);
}

.section.contact {
   background-color: var(--ecbz-white);
}
.contact-details h4 {
   margin-bottom: 0;
   line-height: 1;
}
.contact-details p {
   line-height: 1.2;
   text-wrap: wrap;
   margin-bottom: 0;
}
.section.contact .contact-icon {
   width: auto;
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
   border-radius: 8px;
   padding: 10px;
}
.contact-icon i {
   font-size: 1.3rem;
   background-color: var(--ecbz-secondary);
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
}
.section.map {
   padding-top: 0 !important;
   height: 400px;
}
.section.map .container {
   height: inherit !important;
}
.map > iframe {
   height: inherit !important;
}
.contact-card {
   border: 1px solid var(--ecbz-white-soft);
   border-radius: 5px;
   background-color: var(--ecbz-white);
   box-shadow: 0 0 34px rgba(137, 151, 186, 0.1);
}
.contact-card-body {
   padding: 10px 15px;
   margin: 0;
   align-items: center;
   justify-items: center;
   color: var(--ecbz-gray) !important;
}
.contact-form {
   padding: 20px;
   background-color: var(--ecbz-white);
   border-radius: 5px;
   border: 1px solid var(--ecbz-white-soft);
   box-shadow: 0 0 34px rgba(137, 151, 186, 0.1);
}
.quote-form {
   padding: 20px;
   align-items: center;
   justify-items: center;
   border-radius: 8px;
   border: none;
   box-shadow: 0 0 34px rgba(137, 151, 186, 0.3);
}
/*.contact-form button {*/
/*   justify-content: center;*/
/*   align-content: center;*/
/*}*/

.project-image .fixed {
   height: 440px;
   width: 100%;
}
.project-image {
   margin-bottom: 1.2rem;
}
.project-image img.fixed {
   border-radius: 5px;
}
.details p {
   color: var(--ecbz-gray);
   font-size: 18px;
   line-height: 28px;
   margin-bottom: 1rem;
}
.info-details p {
   color: var(--ecbz-gray-soft);
   font-size: 18px;
   line-height: 28px;
   margin-bottom: 1rem;
}
.other-projects-section {
   margin-left: 0 !important;
}
.other-projects-section .section-subheading {
   padding-top: 0;
}
.project-widget {
   /*border: 1px solid var(--ecbz-gray-soft);*/
   /*border-radius: 5px;*/
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-radius: 5px;
   box-shadow: 0 0 34px rgba(137,151,186,.1);
   padding: 5px 20px;
   min-height: 69px;
   transition: all 0.6s;
}
.project-widget:hover, .project-widget .arrow:hover {
   background-color: var(--ecbz-primary);
   color: var(--ecbz-white);
}
a.project-widget-link {
   text-decoration: none;
   color: var(--ecbz-black-soft);
   vertical-align: middle;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.project-widget-link {
   padding: 0;
   display: flex;
   flex-direction: row;
   column-gap: 5px;
   align-items: start;
   vertical-align: middle;
}
.project-widget i {
   font-size: 2.3rem;
   padding: 5px;
   margin-right: 10px;
   vertical-align: middle;
   line-height: 1;
   display: inline-block;
}
.project-widget span {
   /*width: 100%;*/
   /*color: var(--ecbz-black-soft);*/
   font-size: 18px;
   /*line-height: 12px;*/
   /*margin: 0;*/
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: center;
   column-gap: 20px;
}
/*.project-widget-link span:after {*/
/*   margin-left: auto;*/
/*   margin-right: auto;*/
/*   content: " >";*/
/*   font-size: inherit;*/
/*}*/

.image-layered {
   width: 100%;
   height: 450px;
   object-fit: cover;
}
.image-layered img {
   width: inherit;
   height: inherit;
   border-radius: 5px;
}


.w__1 {
   width: 1% !important;
}
.w__2 {
   width: 2% !important;
}
.w__3 {
   width: 3% !important;
}
.w__4 {
   width: 4% !important;
}
.w__5 {
   width: 5% !important;
}
.w__6 {
   width: 6% !important;
}
.w__7 {
   width: 7% !important;
}
.w__8 {
   width: 8% !important;
}
.w__9 {
   width: 9% !important;
}
.w__10 {
   width: 10% !important;
}
.w__15 {
   width: 15% !important;
}
.w__20 {
   width: 20% !important;
}
.w__25 {
   width: 25% !important;
}
.w__30 {
   width: 30% !important;
}
.w__35 {
   width: 35% !important;
}
.w__40 {
   width: 40% !important;
}
.w__45 {
   width: 45% !important;
}
.w__50 {
   width: 50% !important;
}
.w__55 {
   width: 55% !important;
}
.w__60 {
   width: 60% !important;
}
.w__65 {
   width: 65% !important;
}
.w__70 {
   width: 70% !important;
}
.w__75 {
   width: 75% !important;
}
.w__80 {
   width: 80% !important;
}
.w__85 {
   width: 85% !important;
}
.w__90 {
   width: 90% !important;
}
.w__95 {
   width: 95% !important;
}
.w__100 {
   width: 100% !important;
}
