body {
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    margin:0px;
}

a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-out;
      transition: all 0.3s ease;
}

a:focus, input:focus, textarea:focus, button:focus {
    outline: 0;
    box-shadow: 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 12px;
}

p {
    color: #000;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    font-family: 'Montserrat';
}

.container {
    max-width: 1580px;
    width: 100%;
}

section {
    position: relative;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: #f60;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

/* Header css */
/* ---------------- Top Header ---------------- */

.top-bar {
  background: #303442;
  padding-top: 16px;
  padding-bottom: 16px;
}

.top-bar .container {
  max-width: 1580px;
  display: flex;
  justify-content: space-between;
}

.top-left {
    display: flex;
    gap: 19px;
    align-items: center;
    justify-content: center;
}
.top-left h6, .top-right h6,.top-right a{
    color: #FFF;
font-size: 16px;
font-weight: 500;
line-height: normal;
margin-bottom: 0px;
}
.top-right a:hover{
    text-decoration: underline;
}
.top-left span, .top-right span {
    margin-right: 10px;
}

.main-header {padding: 20px;}

.main-header .container {display: flex;justify-content: space-between;align-items: center;max-width: 1280px;}

.logo img {
    max-height: 67px;
}
.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0px;
}
.main-menu a {
    margin: 0 20px;
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.main-menu a:hover {
  color: #F60;
}

.custom-btn a {
  background: #F60;
  padding: 10px 26px;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.custom-btn a:hover {
  background: #303442;
}

.services-section {
  width: 100%;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 635px;
}

.service-card {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 90, 0.25);
  transition: background 0.3s ease;
}

.service-card:hover::before {
  background: #001F5CCC;
}
.service-card:hover .overlay {
    justify-content: center;
}

.overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 50px 57px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
}

.overlay h3 {
    margin-bottom: 0px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 30.073px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.service-card:hover .overlay h3 {
font-size: 31.879px;
font-weight: 700;
}

.service-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-btn:hover {
  transform: translateX(4px);
}

/* hero services section */

/* about us section */

section.about_us_section {
padding: 102px 0px;
}
.section-header h5 {
color: #F60;
font-size: 16px;
font-style: italic;
font-weight: 700;
line-height: normal;
}

.section-header h2 {
color: #000;
font-family: Montserrat;
font-size: 36px;
font-weight: 600;
line-height: normal;
margin-bottom:0px;
}

section.about_us_section p {color: #6E6E6E;font-family: Lato;font-size: 18px;font-weight: 400;line-height: 28px;margin-bottom: 18px;}

section.about_us_section .section-header {
    margin-bottom: 20px;
}

section.about_us_section ul {
    list-style: none;
    margin-bottom: 45px;
    padding-left: 22px;
}

section.about_us_section ul li {
    position: relative;
    padding-left: 4px;
    margin-bottom: 14px;
    color: #6E6E6E;
font-family: Lato;
font-size: 18px;
font-weight: 400;
line-height: 28px;
}

section.about_us_section ul li:before {
    content: "";
    background-image: url(../img/li_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: -22px;
    top: 4px;
}

.about_section_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_section_image {
    padding-right: 44px;
}

section.about_us_section.custom-pad .custom-btn a {
    font-size: 16px;
    font-weight: 500;
}

/* about us section */


/* Need Help Section */

.need-help {
  background: url("../img/need_help.webp") center/cover no-repeat;
  position: relative;
  padding: 75px 0px;
}

.need-help-content {
  background: #ffffff;
  padding: 100px 100px 80px 100px;
box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.61);
}

.need-help-content h2 {
      color: #000;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-left: 5px solid #F60;
    padding-left: 20px;
        margin-bottom: 40px;
}

.need-help-content h2 span {
  color: #ff7a00;
  font-weight: 800;
}

.need-help-content p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 80px;
}

.need-help-content .custom-btn {
    display: flex;
    gap: 45px;
}

.need-help-content .custom-btn a {
    font-size: 16px;
    font-weight: 700;
    padding: 16px 26px;
}
.need-help-content .custom-btn a span {
    padding-right: 10px;
}
.need-help-content .custom-btn a.btn-dark {
    background: #303442;
}
.need-help-content .custom-btn a.btn-dark:hover{
    background: #f60;
}
/* Need Help Section */

/* counter section */

.facts-section {
  width: 100%;
  background: #202B47;
}

.facts-bar {
    background: #202B47;
    padding-top: 110px;
    padding-bottom: 65px;
}

.facts-container {
    margin: auto;
    display: flex;
    align-items: center;
    column-gap: 93px;
}
.facts-container .section-header h2 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    max-width: 370px;
}
li.current-menu-item.current_page_item a {
    color: #F60;
}
.fact h4 {
    color: #FFF;
    font-size: 52px;
    font-weight: 600;
    line-height: normal;
}

.fact p {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}
.facts-items {
  display: flex;
  gap: 174px;
}

.fact {
  text-align: center;
}

.facts-content {
  margin: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.facts-left {
  padding: 104px 103px 90px 162px;
  position: absolute;
width: 55%;
  z-index: 100;
  bottom: 0;
  left: 0;
  background: #FFF;
  box-shadow: 8px 0 13.2px -1px rgba(0, 0, 0, 0.33);
}
ul.slick-dots {
    bottom: -65px;
    max-width: 532px;
    left: 38px;
}

.slick-dots li button {
    font-size: 20px !important;
    padding: 0 !important;
}

.slick-dots li button:before {
    font-size: 10px !important;
    width: 10px !important;
    height: 10px !important;
}

.slick-dots li {
    margin: 0px 12px !important;
}


.quote {
  position: absolute;
  top: 20px;
  left: 30px;
}

.facts-right {
  position: relative;
  width: 66%;
}

.facts-right img {
  max-width: 100%;
  max-height: 730px;
  display: block;
}

.emergency-box {
    position: absolute;
    bottom: 153px;
    left: 25%;
    background: #ff7a00;
    padding: 49px 34px;
    max-width: 385px;
    z-index: 100;
}


.testimonial-box {
    display: flex !important;
    gap: 30px;
    padding-left: 35px;
    padding-top: 45px;
}

.t-user {
    position: relative;
}

.t-user img.quote_icon {
    position: absolute;
    width: 101px;
    height: 88px;
    top: -45px;
    left: -32px;
}

.t-content span {
    color: #F60;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
    display: block;
}

.t-content h2 {
    color: #000;
    font-size: 42px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.t-content p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    margin-bottom: 28px;
}

.t-content h4 {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px; /* 155.556% */
}
.emergency-box small {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px; /* 116.667% */
    margin-bottom: 14px;
    display: block;
}

.emergency-box p {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.emergency-box a {
    color: #FFF;
    font-size: 28px;
    font-weight: 800;
    line-height: 28px; /* 100% */
}

.emergency-box a:hover {
    color: #000;
}

/* counter section */

/* Galler Section */
.projects-section {
    padding-top: 100px;
    padding-bottom: 170px;
    background: #fff;
    text-align: center;
}
.projects-section .container{
    max-width: 1272px;
    margin: 0 auto;
}
.projects-section .section-header {
    margin-bottom: 60px;
}

/* Tabs */
.projects-tabs {
    display: grid;
    justify-content: center;
    gap: 0px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}


.tab-btn {
    padding: 8px 20px;
    border: 1px solid #D9D9D9;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.tab-btn.active, .tab-btn:hover {
    color: #fff;
    border: 1px solid #D9D9D9;
    background: #FF8D41;
}

/* Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.projects-grid img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.projects-grid img:hover {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

/* Image */
.lightbox img {
    max-width: 85%;
    max-height: 85%;
    z-index: 1;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 3;
}

/* Arrows FIX */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 3;               /* ðŸ”¥ MOST IMPORTANT */
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    border-radius: 50%;
}

.lightbox-arrow.prev {
    left: 30px;
}

.lightbox-arrow.next {
    right: 30px;
}

.lightbox-arrow:hover {
    background: rgba(255,255,255,0.2);
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .projects-title {
        font-size: 28px;
    }
}

/* Gallery Section */

/* footer css */

.site-footer {
    background: #202B47;
    color: #ffffff;
    position: relative;
}

/* container */
.site-footer .footer-grid {
    padding: 125px 0px 32px;
}

/* grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.9fr;
    gap: 40px;
    align-items: center;
}

/* about */
.footer-logo {
    max-width: 200px;
}

.footer-about p {
    margin-top: 20px;
    margin-bottom: 40px;
    color: #EBEBEB;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

/* social */
.social {
    display: flex;
    gap: 29px;
}

.social a {
    display: inline-flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social img {
    max-width: 29px;
    height: 29px;
}

/* links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 18px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    position: relative;
    transition: color 0.3s ease;
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px; /* 155.556% */
}

.footer-links a::before {
    content: "";
    color: #FF6600;
    margin-right: 18px;
    background-image: url(../img/footer_li_icon.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 6px;
    height: 12px;
    position: absolute;
    left: -18px;
    top: 6px;
}

.footer-links a:hover {
    color: #FF6600;
}

/* contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: -33px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item a, .contact-item span {
   color: #EBEBEB;
font-family: Lato;
font-size: 18px;
font-weight: 400;
line-height: 28px; /* 155.556% */
    transition: color 0.3s ease;
}

.contact-item a:hover, .contact-item span:hover {
    color: #FF6600;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

/* divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.58);
    margin-bottom: 26px;
}

/* bottom */
.footer-bottom {
    color: #EBEBEB;
    text-align: center;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    padding-bottom: 26px;
}

/* sticky chat button */
.chat-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #ff7a18;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background 0.3s ease, transform 0.3s ease;
    display: none;
}

.chat-btn:hover {
    background: #e86a10;
    transform: translateY(-3px);
}

/* responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer .container {
        padding: 60px 20px 30px;
    }

    .footer-about p {
        margin-bottom: 16px;
    }

    .chat-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
    }
}


.footer-about {
    padding-right: 50px;
}

/* footer css */

/* inner section css */

section.inner_section {
    padding-top: 150px;
    padding-bottom: 140px;
    text-align: center;
    background-image: url(../img/inner_bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

section.inner_section:before {
    content: "";
    background: #0000009E;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
p.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
p.breadcrumb a{
    color:#fff;
}
.breadcrum-content {
    z-index: 10;
}
p.breadcrumb span{
    font-weight:600;
}
span.normal {
    font-weight: 400 !important;
}

.breadcrum-content h1 {color: #FFF;text-align: center;font-size: 42px;font-weight: 600;line-height: normal;margin-bottom: 30px;}


/* inner section css */


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    background: #ffffff;
    padding-top: 55px;
    padding-bottom: 125px;
}
.about-content p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.about-section .section-header h2 {
    font-weight: 500;
    margin-bottom: 20px;
}

.about-section .section-header h2 span {
    font-weight: 700;
}
.about_flex {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 82px;
}

.left_section {
    width: 50%;
}

.right_section {
    width: 50%;
}

/* LIST */

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 45px;
}

.about-list li {
    position: relative;
    padding-left: 54px;
    margin-bottom: 28px;
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.about-list li b {
    color: #333;
    font-weight: 700;
    display: block;
    margin-bottom: 18px;
}

.about-list li::before {
    content: "";
    width: 32px;
    height: 34px;
    background-image: url(../img/about_li_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 4px;
}

.about-section .custom-btn a {
    border-radius: 8px;
    background: #F60;
    width: 303px;
    display: block;
    text-align: center;
    padding: 15px 26px;
}
.about-section .custom-btn a:hover {
    background: #303442;
}

/* RIGHT IMAGES */

.about-images {
    position: relative;
}

.main-image img {
    width: 100%;
    display: block;
}

/* BADGE */

.about-badge {
    position: absolute;
    bottom: 10px;
    left: 0;
    background: #ff6a00;
    color: #fff;
    padding: 38px 21px;
    max-width: 407px;
}

.about-badge span {
    color: #FFF;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
        display: block;
}

/* serevices section css */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

section.services {
    padding: 80px 0px;
    background: #F6F6F6;
}

section.services .section-header {
    padding-bottom: 40px;
    text-align: center;
    max-width: 781px;
    margin: 0 auto;
}

section.services .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
}

section.services .section-header p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    line-height: 28px; /* 155.556% */
}
.service-inner img.services_inner_image {
    border-radius: 16px 16px 0 0;
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.service-inner {
    border-radius: 16px;
    border: 1px solid #DADADA;
    text-align: center;
}

.service-inner .card-content {
    padding: 44px 27px;
}

.service-inner .card-content h3 {
    margin-bottom: 25px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}

.service-inner .card-content a {
    border-radius: 8px;
    background: #F60;
    padding: 12px 56px;
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}

.service-inner .card-content a:hover {
    background: #303442;
}

.service-inner:hover {
    border-radius: 16px;
    background: #FFF;
    box-shadow: 4px 4px 10.7px 0 rgba(0, 0, 0, 0.25);
}

/* core section */
.principles-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.principles-image {
    width: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px 16px 0 0;
}

.principles-content {
    width: 50%;
    padding: 84px 150px 84px 78px;
    background: #202B47;
}

.principles-content .section-header h5 {
    margin-bottom: 28px;
}

.principles-content .section-header h2 {
    color: #FFF;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}


.principles-content ul {
    padding-left: 0px;
}

.principles-content ul li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
}

.principles-content ul li h4 {
    color: #F60;
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px; /* 155.556% */
    margin-bottom: 10px;
}

.principles-content ul li p {
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    margin-bottom: 0px;
}

.principles-content ul li img {
    width: 60px;
    height: 60px;
}
.principles-content .custom-btn a {
    width: 303px;
    padding: 14px 26px;
    border-radius: 8px;
    background: #F60;
    margin-top:20px;
}

.principles-content .custom-btn a:hover{
    background:#fff;
    color:#f60;
}

section.overview {
    padding-top: 100px;
    padding-bottom: 129px;
}

.overview-section {
    display: flex;
    column-gap: 40px;
    row-gap: 40px;
}

.overview-left {
    width: 30%;
}

.overview-image {
    width: 40%;
}
.overview-image img {
    width: 100%;
    border-radius: 80px 80px 0px 0px;
    height: 100%;
    object-fit: cover;
}

.overview-right {
    width: 30%;
}

.overview-section .section-header h5 {
    margin-bottom: 25px;
}

.overview-section .section-header h2 {
    color: #000;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.overview_content h4 {
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 10px;
}

.overview_content p, .overview-right ul li {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0px;
}

.overview_content {
    margin-bottom: 20px;
}

.overview-right ul {
    padding-left: 30px;
    margin-bottom: 40px;
}

.overview-right ul li {
    margin-bottom: 8px;
    list-style: none;
    position: relative;
}

.overview-right ul li:before {
   content: "";
    background-image: url(../img/overview_li_icon.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -33px;
    width: 24px;
    height: 24px;
    top: 3px;
}

.overview-right .custom-btn a {
    width: 303px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 26px;
}
.overview-right .custom-btn a:hover{
    color:#fff;
}
/* blogs page css */

.blog-listing {
padding: 80px 0;
}


.section-title {
text-align: center;
font-size: 32px;
margin-bottom: 50px;
}


.blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top:40px;
}


.blog-card {
background: #fff;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
border-radius: 16px;
}


.blog-card img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
        min-height: 300px;
            border-radius: 16px 16px 0px 0px;
}

.blog-content {
padding: 25px;
}


.blog-date {
font-size: 13px;
color: #f60;
}


.blog-content h3 {
font-size: 20px;
margin: 10px 0;
}


.blog-content p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
}


.blog-content a {
margin-top: 15px;
color: #000;
font-weight: 600;
}
.blog-content a:hover, .blog-content a:hover h3{
    color:#f60;
}

/*blogs page css */


/*blog detail page css */

.blog-detail {
  max-width: 1300px;
  margin: auto;
  padding: 100px 0px 70px 0px;
  font-family: 'Montserrat';
}

.blog-detail-img img, .blog-detail-content img {
    max-height: 450px;
    object-fit: cover;
}

.blog-detail h1 {
  color: #252525;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-detail h2,
.blog-detail h3 {
  color: #252525;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.76px;
  text-transform: uppercase;
  margin-bottom: 27px;
}

.blog-detail p {
  color: #4E4E4E;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-bottom: 27px;
}

.blog-detail ol,
.blog-detail ul {
  list-style: none;
  padding-left: 15px;
  margin: 0 0 30px 0;
  counter-reset: item;
}

.blog-detail ol li,
.blog-detail ul li {
  position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #252525;
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.32px;
}

.blog-detail ol li::before, .blog-detail ul li::before {
    content: '.';
    position: absolute;
    left: 0;
    top: -7px;
    width: 10px;
    height: 10px;
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0px;
    padding: 0px;
}

.blog-featured-image {
  margin-bottom: 35px;
}
.blog-detail-img img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
    min-height: 400px;
    border-radius: 16px;
}

.blog-featured-image img {
  width: 100%;
  border-radius: 6px;
  max-height: 500px;
  object-fit: cover;
}

.blog-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 35px;
}

.blog-images img , .blog-detail-content img{
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 425px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 14px;
  color: #7a7a7a;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-detail blockquote {
  background: #f9f9f9;
  border-left: 5px solid #f60;
  padding: 25px;
  margin: 40px 0;
  font-style: italic;
  color: #333;
}



/* blog details page css */

/* ---------------- PAGINATION ---------------- */
.pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}
button.page-btn.prev:hover, button.page-btn.next:hover{
    color: #f60;
}

.page-btn, .page-number {
    border: 1px solid #ddd;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    background: #EBEBEB;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    width: 40px;
    height: 40px;
}

.page-number.active {
    background-color: #F60;
    color: #fff;
    border-color: #F60;
}

.page-number:hover {
    background-color: #F60;
    color: #fff;
    border-color: #F60;
}

.page-btn:hover {
    background-color: #F60;
    color: #fff;
    border-color: #F60;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

section.projects-section.gallery .container {
    max-width: 1580px;
}

section.projects-section.gallery .projects-tabs {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 40px;
}

section.projects-section.gallery .projects-tabs button.tab-btn {
    border-radius: 16px;
    border: 1px solid #D9D9D9;
    background: #F5F5F5;
    color: #000;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px; /* 122.727% */
    padding: 10px 20px;
}

section.projects-section.gallery {
    padding-top: 80px;
    padding-bottom: 120px;
}

section.projects-section.gallery .projects-tabs .tab-btn.active, section.projects-section.gallery .projects-tabs .tab-btn:hover {
    background: linear-gradient(180deg, #F60 0%, #FCAD53 100%);
    box-shadow: 4px -2px 15px 0 rgba(0, 0, 0, 0.13);
    color: #fff;
}

section.projects-section.gallery .projects-grid {
    gap: 28px;
}

.page-numbers {
    display: flex;
    gap: 40px;
}

button.page-btn.prev {
    background: none;
    border: none;
}

button.page-btn.next {
    background: none;
    border: none;
}


/* contact page css */

section.contact-section {
    padding-top: 90px;
    padding-bottom: 70px;
    text-align: center;
}

section.contact-section .container {
    max-width: 1380px;
}

section.contact-section .section-header h2 {
    color: #333;
    text-align: center;
    font-family: Montserrat;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 28px;
}

section.contact-section .section-header p {
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px; /* 180% */
    margin-bottom: 0px;
}

.contact-form-wrapper {
    padding-top: 80px;
    padding-bottom: 120px;
}

.contact-form-wrapper .container {
    max-width: 1280px;
}

.contact-address {
    padding-right: 50px;
}

.contact-form {
    padding-left: 50px;
}

.info-card-icon-content h3 {
    color: #333;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
    border-bottom: 1px solid #FF8D41;
    margin-bottom: 40px;
}

.info-card-icon-content h4 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px; /* 135% */
    margin-bottom: 22px;
}
.contact_wrapper {
    display: flex;
    column-gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.contact_wrapper .content {
    color: #000;
    font-size: 18px;
    line-height: 30px; /* 150% */
}

.contact_icon_wrapper {
    margin-bottom: 45px;
}

.info-card p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
}

.contact-form .section-header h2 {
    color: #333;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 28px;
}

.contact-form .section-header p {
    color: #000;
    font-size: 18px;
    font-weight: 400;
     /* 150% */
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px; /* 150% */
    width: 100%;
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
     /* 150% */
    padding: 13px 10px;
    color: #A7A7A7;
    border-radius: 4px;
    border: 1px solid #8D8D8D;
    background: #FFF;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.form-group input::placeholder, .form-group select::placeholder, .form-group textarea::placeholder {
    color: #A7A7A7;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 150% */
}

.form-group textarea {
    height: 191px;
}

.form-group input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-submit {
    border-radius: 4px;
    background: linear-gradient(180deg, #F60 0%, #FCAD53 100%);
    padding: 16px 36px;
    color: #000;
    font-family: Lato;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: none;
    width: 367px;
}
.form-group input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-submit:hover{
    background:#f60;
    color:#fff;
}
.form-group.select{
    position: relative;
}
.form-group.select select {

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
}
.form-group.select::after {
    content: "";
    position: absolute;
  top: 63px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url(../img/select_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    pointer-events: none;
}

/* service details page section */
section.service-hero .container {
    max-width: 1280px;
}

.service-hero-image img {
    max-height: 580px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 60px;
}

.service-hero-content h2 {
    color: #000;
    font-size: 36px;
    font-weight: 500;
}

.service-hero-content h2 b {
    font-weight: 700;
}

.service-hero-content p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.services_images_wrapper {
    margin-top: 45px;
}
section.service-hero {
    padding-top: 55px;
    padding-bottom: 80px;
}
.services_images_wrapper img{
    width:100%;
    max-height:220px;
    object-fit:cover;
}
.services_images_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

section.services-section .container {
    max-width: 1280px;
}

.service-row {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 20px;
    margin-bottom: 100px;
}
.service-row.reverse{
    flex-direction: row-reverse;
}

.our-service-content {
    width: 63%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 27px;
}

.our-service-content h4 {
    color: #000;
    font-family: Lato;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px; /* 100% */
    margin-bottom: 0px;
}

.our-service-content p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    margin-bottom: 0px;
    width: 100%;
}

.our-service-content ul {
    margin-bottom: 0px;
    padding-left: 33px;
}

.our-service-content ul li {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    position: relative;
    list-style: none;
    margin-bottom: 6px;
}
.our-service-content ul li:last-child{
    margin-bottom: 0px;
}
.our-service-content ul li:before {
    content: "";
    background-image: url(../img/services_li_icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 23px;
    height: 22px;
    position: absolute;
    left: -34px;
    top: 3px;
}
.our-service-content b {display: block;width: 100%;color: #000;font-family: Lato;font-size: 22px;font-weight: 700;line-height: 28px; /* 127.273% */}

.service-image {
    width: 37%;
    background-position: center;
    background-repeat:no-repeat;
}
section.why_choose_us {
    padding-bottom: 80px;
}

.why_choose_wrapper {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 23px;
}

.expertise {
    width: 40%;
    background: #202B47;
    padding: 40px;
}

.expertise h2 {
    color: #FFF;
    font-family: Lato;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px; /* 100% */
    margin-bottom: 20px;
}

.expertise p, .expertise ul li {
    color: #CCC;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    margin-bottom: 24px;
}

.expertise ul {
    padding-left: 0px;
    list-style: none;
}

.expertise ul li b, .expertise ul li strong {
    color: #FFF;
    font-family: Lato;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px; /* 127.273% */
    display: block;
    width: 100%;
    margin-bottom: 13px;
}

.restoration_services {
    width: 60%;
}

.restoration_services .section-header h2 {
    color: #000;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 23px;
}

.restoration_services .section-header p {
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    margin-bottom: 40px;
}

.column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.item {
  display: flex;
  row-gap: 11px;
  flex-wrap: wrap;
  padding: 50px 0px;
  border-right: 1px solid #FF8D41;
  border-bottom: 1px solid #FF8D41;
  align-items: flex-start;
}

.item img {
    max-height: 100px;
    object-fit: contain;
    text-align: left;
}

.item h3 {color: #000;font-family: Lato;font-size: 24px;font-weight: 700;line-height: 28px;margin-bottom: 20px;}
.item h3 span {
    color: #F60;
}

.item p {color: #6E6E6E;font-family: Lato;font-size: 18px;font-weight: 400;line-height: 28px; /* 155.556% */margin-bottom: 0px;}

/* Right column border remove */
.item:nth-child(2n) {
  border-right: none;
}

/* Bottom row border remove */
.item:nth-last-child(-n+2) {
  border-bottom: none;
}

.item:nth-child(1), .item:nth-child(2){
  padding-top:0px
}
.item:nth-child(3), .item:nth-child(4){
  padding-bottom:0px
}

.item:nth-child(1), .item:nth-child(3){
  padding-right:43px;
}
.item:nth-child(2), .item:nth-child(4){
  padding-left:43px;
}
section.faq_section {
padding-bottom: 120px;
}
section.faq_section .container {
    max-width: 1280px;
}
.section-header.faq_content h2 {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}
.faq-container {
    margin-top: 28px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #CCC;
    background: #FFF;
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.faq-question:after {
    content: "";
    background-image: url(../img/question_icon.webp);
    background-position: center;
    background-size: cover;
    width: 14px;
    height: 8px;
    position: absolute;
    right: 20px;
    top: 24px;
}
.faq-item.active .faq-question:after {
    content: "";
    background-image: url(../img/answer_icon.webp);
    background-position: center;
    background-size: cover;
    width: 14px;
    height: 8px;
    position: absolute;
    right: 20px;
    top: 24px;
}

.faq-item.active .faq-question{
    border: none;
    color: #fff;
    background: #FF6600;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    position: relative;
    transition: 
        max-height 0.4s ease,
        opacity 0.3s ease,
}

.faq-item.active .faq-answer {
    padding: 16px 20px;
    opacity: 1;
    max-height: 100%;
    transition: all 0.3s ease;
    background: #F6F6F6;
    color: #6E6E6E;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}


section.for-section {
    padding: 8% 0px;
}

section.for-section p {
    margin-bottom: 35px;
}

.main-menu .menu-item-has-children {
    position: relative;
}

.main-menu .menu-item-has-children > a {
    padding-right: 15px;
}

.main-menu .menu-item-has-children > span {
    position: absolute;
    right: 12px;
    top: 56%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}

.main-menu .menu-item-has-children > span::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.main-menu .menu-item-has-children.active > span::after {
    transform: rotate(-135deg);
}

.main-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

.main-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}
.main-menu .sub-menu li a:hover {
    text-decoration: underline;
}
.sub-menu li { border-bottom: 1px solid #eee; } .sub-menu li:last-child { border-bottom: none; } .sub-menu li a {display: block;padding: 12px 18px;margin: 0px;font-size: 15px;color: #333;text-decoration: none;transition: all 0.3s ease;} .sub-menu li a:hover { background: #f5f5f5; text-decoration: underline; }

#wprmenu_menu_ul .sub-menu {
    display: block !important;
    position: static !important;
}

/* custom menu css */

/* ---------------------- Desktop Menu (NO CHANGE) ---------------------- */
.custom-menu-toggle {
  display: none;
}
@media (min-width: 1025px) {
div#customMobileMenu {
    display: none;
}
}
/* ---------------------- Mobile / Tablet ---------------------- */
@media (max-width: 1024px) {

  /* Hide Desktop Menu */
  .main-menu {
    display: none;
  }

  /* Show Toggle */
      .custom-menu-toggle {
        display: block;
        background: #f60;
        color: #fff;
        padding: 10px 15px;
        border: none;
        cursor: pointer;
        font-size: 18px;
    }

  /* Mobile Menu Wrapper */
  .custom-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  /* When Active */
  .custom-mobile-menu.custom-active {
    left: 0;
  }

  /* Close Button */
  .custom-menu-close {
    background: #f60;
    color: #000000;
    border: none;
    padding: 0px 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 30px;
  }

  /* Menu List */
  .custom-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .custom-menu-list li {
    border-bottom: 1px solid #ddd;
    color: #fff;
  }

  .custom-menu-list li a {
    display: block;
    padding: 12px 15px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
  }
   .custom-menu-list .sub-menu li a{
     color:#fff;
   }
   .custom-menu-list .sub-menu li a:hover {
    background: #000;
}

  /* Submenu */
  .custom-menu-list .sub-menu {
    display: none;
    padding-left: 20px;
    transition: max-height 0.4s ease;
  }

  .custom-menu-list .has-child > a::after {
    content: "▸";
    float: right;
    font-size: 30px;
    position: absolute;
    right: 15px;
    top: 0px;
  }

  .custom-menu-list .has-child.custom-active > .sub-menu {
    display: block;
    background: #f60;
    list-style: none;
    padding-left: 0px;
    transition-delay: inherit;
    transition: max-height 0.4s ease;
    transition: bottom 0.3s ease;
  }
  .right-area
 {
    display: none;
}

}

/* custom menu css */