@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");
body {
  font-family: 'Roboto Condensed', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 15px;
  border-left: 5px solid #ff7241;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

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

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(39, 48, 63, 0.85)), to(rgba(39, 48, 63, 0.7)));
  background: linear-gradient(to bottom, rgba(39, 48, 63, 0.85), rgba(39, 48, 63, 0.7));
}

.sub_page .hero_area {
  min-height: auto;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_top .header_top_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ffffff;
}

.header_top .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_top .contact_nav a {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  margin-left: 15px;
}

.header_top .contact_nav a i {
  margin-right: 7px;
  font-size: 18px;
}

.header_top .contact_nav a:hover i {
  color: #344d77;
}

.header_bottom {
  padding: 15px 0;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 28px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ff7241;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #ff7241;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .container {
  padding: 0 25px;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #344d77;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box p {
  color: #fefefe;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ff7241;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.slider_section .detail-box a:hover {
  background-color: #f43f00;
}

.slider_section .carousel_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  position: unset;
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  outline: none;
  margin-right: 10px;
  background-color: #f9fafb;
  color: #344d77;
  opacity: 1;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  color: #1f1f1f;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ff7241;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #f43f00;
}

.service_section {
  position: relative;
  background-color: #f9f8f7;
}

.service_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}

.service_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 21% 90%, 15% 100%, 9% 90%, 0 90%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 21% 90%, 15% 100%, 9% 90%, 0 90%);
}

.service_section .box .img-box img {
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.service_section .box .detail-box {
  padding: 20px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box a {
  color: #344d77;
  font-weight: 600;
}

.service_section .box .detail-box a:hover {
  color: #ff7241;
}

.contact_section {
  position: relative;
  padding-bottom: 90px;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #344d77;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #344d77;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #344d77;
}

.contact_section .form_container input::placeholder {
  color: #344d77;
}

.contact_section .form_container input.message-box {
  height: 120px;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: #ff7241;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #f43f00;
}

.contact_section .why_box .box {
  margin-top: 15px;
}

.contact_section .why_box .img-box {
  width: 45px;
  margin-bottom: 10px;
}

.contact_section .why_box .img-box img {
  width: 100%;
}

.contact_section .why_box h5 {
  font-weight: 700;
}

.client_section .client_container {
  margin-top: 45px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 5px;
}

.client_section .box .img-box {
  position: relative;
  width: 105px;
  margin-bottom: -45px;
  margin-left: 25px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 5px solid #ffffff;
}

.client_section .box .detail-box {
  background-color: #344d77;
  color: #ffffff;
  border: 1px solid #dddddd;
  padding: 60px 25px 25px 25px;
  margin-bottom: 25px;
}

.client_section .box .detail-box h5 {
  font-weight: 600;
}

.client_section .box .detail-box p {
  margin: 0;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}

.client_section .carousel-wrap .active + .active .box {
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px 10px 0 0;
  outline: none;
  background-color: #ff7241;
  color: #ffffff;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #161825;
}

.info_section {
  background-color: #344d77;
  color: #ffffff;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info-col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #ff7241;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #344d77;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #ffffff;
  border-radius: 100%;
  margin-right: 5px;
  font-size: 18px;
}

.info_section .info_social a:hover {
  color: #ff7241;
}

.info_section form input {
  border: none;
  padding: 10px;
  background-color: #44649a;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #ff7241;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #f43f00;
}

.info_section .map_container {
  width: 100%;
  height: 225px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.info_section .map_container .map {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.info_section .map_container .map #googleMap {
  height: 100%;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #344d77;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */

/* ==============================
   Continuous Testimonials (Isolated)
   ============================== */
.testimonial_section { background:#f8f9fa; overflow:hidden; }
.testimonial-marquee { overflow:hidden; width:100%; }
.testimonial-track {
  display:flex;
  gap:24px;
  width:max-content;
  animation:testimonial-scroll 60s linear infinite;
}
.testimonial_item {
  flex:0 0 320px;
  max-width:320px;
  min-height:220px;
  background:#ffffff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}
.testimonial_item .stars { color:#f4b400; margin-bottom:10px; }
.testimonial_item p { font-size:14px; line-height:1.5; }
.testimonial_item h6 { font-size:14px; font-weight:600; margin:0; }

@keyframes testimonial-scroll {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}

/* ==============================
   FIX: Navbar visibility on sub pages
   ============================== */

/* Default navbar links (homepage stays white) */
.custom_nav-container .navbar-nav .nav-link {
  color: #ffffff;
}

/* Sub pages: make navbar text dark */
.sub_page .custom_nav-container .navbar-nav .nav-link {
  color: #0c0c0c;
}

/* Sub pages: hover + active state */
.sub_page .custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.sub_page .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ff7241;
}

/* Logo text on sub pages */
.sub_page .navbar-brand span {
  color: #0c0c0c;
}

/* Dropdown arrow visibility */
.sub_page .navbar-nav .dropdown-toggle::after {
  border-top-color: #0c0c0c;
}

/* Optional: subtle navbar background for sub pages */
.sub_page .header_section {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

/* Pricing Cards */

.pricing-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #ff7241;
  transform: translateY(-10px);
}

.pricing-card h4 {
  margin-top: 15px;
  font-weight: 700;
}

.pricing-card ul {
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-card .price {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 16px;
}

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e9f1ff;
  color: #2c6bed;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* =====================================================
   FINAL BRAND HEADER — MATCHES FOOTER COLOR (#344D77)
   Paste at END of style.css
   ===================================================== */

/* Entire header */
.header_section {
  background-color: #344D77; /* footer-matched blue */
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

/* Top contact bar (slightly darker for hierarchy) */
.header_top {
  background-color: #2b4063;
}

/* Bottom navbar */
.header_bottom {
  background-color: #344D77;
}

/* Navbar links — always visible */
.custom_nav-container .navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
}

/* Hover & active state */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ff7241 !important;
}

/* Dropdown menu */
.dropdown-menu {
  background-color: #2b4063;
  border: none;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #ffffff;
}

/* Dropdown hover */
.dropdown-menu .dropdown-item:hover {
  background-color: #1f2f4a;
  color: #ff7241;
}

/* Mobile menu background */
.navbar-collapse {
  background-color: #344D77;
}

/* Hamburger icon visibility */
.custom_nav-container .navbar-toggler span,
.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  background-color: #ffffff;
}

/* =====================================================
   FINAL POLISH — BRAND, NAV UX, MICRO-INTERACTIONS
   Safe to paste at END of style.css
   ===================================================== */

/* NAV LINK BASE */
.custom_nav-container .navbar-nav .nav-link {
  position: relative;
  padding: 8px 20px;
  font-weight: 500;
}

/* UNDERLINE ANIMATION */
.custom_nav-container .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #ff7241; /* accent */
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Hover underline */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after {
  width: 60%;
}

/* Active page underline */
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  width: 70%;
}

/* Logo polish */
.navbar-brand img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* Slight logo hover feedback (subtle) */
.navbar-brand:hover img {
  transform: scale(1.02);
}

/* Dropdown spacing */
.dropdown-menu {
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Dropdown item spacing */
.dropdown-menu .dropdown-item {
  padding: 10px 22px;
  font-size: 14px;
}

/* Dropdown hover polish */
.dropdown-menu .dropdown-item:hover {
  padding-left: 26px;
}

/* Mobile menu polish */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 15px 0;
  }

  .custom_nav-container .navbar-nav .nav-link {
    padding: 12px 20px;
  }

  .custom_nav-container .navbar-nav .nav-link::after {
    display: none; /* cleaner on mobile */
  }
}

/* =====================================================
   FINAL BRAND LOCK — BURGUNDY ACCENT SYSTEM
   Paste at END of style.css
   ===================================================== */

/* === BRAND VARIABLES (mental model) ===
   Header / Footer Blue: #344D77
   Burgundy Accent:      #7A1F2B
====================================== */

/* Navbar hover & active text */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #7A1F2B !important;
}

/* Underline animation (burgundy) */
.custom_nav-container .navbar-nav .nav-link::after {
  background-color: #7A1F2B;
}

/* Dropdown hover accent */
.dropdown-menu .dropdown-item:hover {
  color: #7A1F2B;
}

/* Buttons (site-wide polish, safe override) */
.btn,
.slider_section .detail-box a,
.about_section .detail-box a,
.contact_section .form_container button,
.info_section form button {
  background-color: #7A1F2B;
}

.btn:hover,
.slider_section .detail-box a:hover,
.about_section .detail-box a:hover,
.contact_section .form_container button:hover,
.info_section form button:hover {
  background-color: #5f1821;
}

/* Icons hover (top contact bar & footer) */
.header_top .contact_nav a:hover i,
.info_section .info_contact .contact_link_box a:hover,
.info_section .info_social a:hover {
  color: #7A1F2B;
}

/* =====================================================
   BRAND RESET — CHARCOAL + BURGUNDY (RECOMMENDED)
   Paste at END of style.css
   ===================================================== */

/* Header & Footer base */
.header_section,
.info_section {
  background-color: #1E1E1E !important;
}

/* Top bar slightly darker */
.header_top {
  background-color: #141414 !important;
}

/* Footer text */
.info_section,
.info_section p,
.info_section a {
  color: #ffffff;
}

/* Navbar links */
.custom_nav-container .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Hover & active */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #7A1F2B !important;
}

/* Underline animation */
.custom_nav-container .navbar-nav .nav-link::after {
  background-color: #7A1F2B;
}

/* Buttons */
.btn,
.slider_section .detail-box a,
.about_section .detail-box a,
.contact_section .form_container button,
.info_section form button {
  background-color: #7A1F2B;
}

.btn:hover,
.slider_section .detail-box a:hover,
.about_section .detail-box a:hover,
.contact_section .form_container button:hover,
.info_section form button:hover {
  background-color: #5f1821;
}

/* Dropdowns */
.dropdown-menu {
  background-color: #242424;
}

.dropdown-menu .dropdown-item {
  color: #ffffff;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #2f2f2f;
  color: #7A1F2B;
}

/* Owl Carousel arrows */
.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  background-color: #7A1F2B !important;
  color: #ffffff;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #5f1821 !important;
}

/* =====================================================
   FINAL CLEANUP — REMOVE ALL BLUE, CHARCOAL + BURGUNDY
   Paste at END of style.css
   ===================================================== */

/* === TESTIMONIAL CARDS === */
.client_section .box .detail-box {
  background-color: #1E1E1E !important;
  border: none;
}

/* Testimonial text */
.client_section .box .detail-box h5,
.client_section .box .detail-box p {
  color: #ffffff;
}

/* === HERO IMAGE OVERLAY (REMOVE BLUE TINT) === */
.hero_bg_box::before {
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 30, 0.85),
    rgba(30, 30, 30, 0.65)
  ) !important;
}

/* === SUBSCRIBE INPUT (REMOVE BLUE) === */
.info_section form input {
  background-color: #242424 !important;
  color: #ffffff;
}

/* Placeholder color */
.info_section form input::placeholder {
  color: #cccccc;
}

/* === REMOVE ANY REMAINING TEMPLATE BLUE === */
.bg-primary,
.text-primary {
  background-color: #1E1E1E !important;
  color: #ffffff !important;
}

/* === SECTION BACKGROUNDS THAT USED BLUE === */
.service_section,
.slider_section,
.client_section {
  background-color: #ffffff;
}

/* === FOOTER TOP BORDER / SEPARATORS === */
.info_section {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =====================================================
   HOTFIX — RESTORE SLIDER + FORCE CHARCOAL HEADER
   Paste at END of style.css
   ===================================================== */

/* === FIX 1: RESTORE HERO / SLIDER BACKGROUND IMAGE === */
.slider_section {
  background: none !important;
}

/* Keep the hero image visible */
.hero_bg_box img {
  display: block;
}

/* Dark neutral overlay (replaces blue tint) */
.hero_bg_box::before {
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 30, 0.85),
    rgba(30, 30, 30, 0.65)
  ) !important;
}

/* === FIX 2: FORCE HEADER TO CHARCOAL (KILL BLUE) === */
.header_section,
.header_bottom {
  background-color: #1E1E1E !important;
}

/* Top bar slightly darker */
.header_top {
  background-color: #141414 !important;
}

/* =====================================================
   FINAL FIX — REMOVE BLUE NAV BAR STRIP
   Paste at END of style.css
   ===================================================== */

/* Navbar container was still blue */
.custom_nav-container {
  background-color: transparent !important;
}

/* Ensure navbar inherits header color */
.header_section .custom_nav-container {
  background-color: #1E1E1E !important;
}

/* =====================================================
   DEFINITIVE FIX — FORCE NAVBAR TO CHARCOAL
   Overrides Bootstrap navbar background
   Paste at END of style.css
   ===================================================== */

/* Kill Bootstrap navbar background */
.navbar {
  background-color: transparent !important;
}

/* Force navbar inside header to charcoal */
.header_section .navbar {
  background-color: #1E1E1E !important;
}

/* Also force custom container to match */
.header_section .custom_nav-container {
  background-color: #1E1E1E !important;
}

/* =====================================================
   ABSOLUTE FINAL FIX — HEADER BLUE STRIP
   Targets wrapper + pseudo elements
   Paste at END of style.css
   ===================================================== */

/* Kill background on header wrappers */
.header_bottom,
.header_bottom .container-fluid,
.header_bottom .container-fluid::before,
.header_bottom .container-fluid::after {
  background-color: #1E1E1E !important;
  background-image: none !important;
}

/* Ensure navbar inherits correctly */
.header_bottom .navbar,
.header_bottom .custom_nav-container {
  background-color: transparent !important;
}

/* Safety: remove any pseudo overlays */
.header_bottom::before,
.header_bottom::after {
  content: none !important;
}

/* =====================================================
   DEFINITIVE FIX — BOOTSTRAP NAVBAR-COLLAPSE BLUE
   Works on desktop + mobile
   Paste at END of style.css
   ===================================================== */

/* Kill Bootstrap collapse background everywhere */
.navbar-collapse {
  background-color: transparent !important;
}

/* Force correct background when inside header */
.header_section .navbar-collapse {
  background-color: #1E1E1E !important;
}

/* Ensure desktop nav stays clean */
@media (min-width: 992px) {
  .navbar-collapse {
    background-color: transparent !important;
  }
}

/* Ensure mobile dropdown matches header */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #1E1E1E !important;
  }
}

/* =====================================================
   FINAL BRAND LOCK — BURGUNDY HEADER & FOOTER
   Black / Charcoal Everywhere Else
   Paste at END of style.css
   ===================================================== */

/* === BRAND COLORS ===
   Burgundy: #7A1F2B
   Burgundy Dark: #5F1821
   Charcoal: #1E1E1E
   =================== */

/* ================= HEADER ================= */

/* Header wrapper */
.header_section,
.header_bottom {
  background-color: #7A1F2B !important;
}

/* Top contact bar (slightly darker burgundy) */
.header_top {
  background-color: #5F1821 !important;
}

/* Navbar (desktop + mobile) */
.header_section .navbar,
.header_section .navbar-collapse,
.header_section .custom_nav-container {
  background-color: transparent !important;
}

/* Nav links */
.custom_nav-container .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Hover + active */
.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ffffff !important;
}

/* Underline stays visible */
.custom_nav-container .navbar-nav .nav-link::after {
  background-color: #ffffff;
}

/* ================= FOOTER ================= */

.info_section {
  background-color: #7A1F2B !important;
}

.info_section h4,
.info_section p,
.info_section a {
  color: #ffffff;
}

/* Footer inputs */
.info_section form input {
  background-color: #5F1821 !important;
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #f1f1f1;
}

/* Footer button */
.info_section form button {
  background-color: #1E1E1E;
}

.info_section form button:hover {
  background-color: #121212;
}

/* ================= BODY / SECTIONS ================= */

/* Dark neutral for cards & overlays */
.client_section .box .detail-box,
.dropdown-menu,
.navbar-collapse {
  background-color: #1E1E1E !important;
}

/* Hero overlay stays dark */
.hero_bg_box::before {
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 30, 0.85),
    rgba(30, 30, 30, 0.65)
  ) !important;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #ffffff;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #2a2a2a;
}

/* ================= CAROUSEL ARROWS ================= */

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  background-color: #7A1F2B !important;
  color: #ffffff;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #5F1821 !important;
}

/* =====================================================
   FINAL HEADER UNIFICATION — REMOVE BLACK STRIP
   Makes entire header burgundy
   Paste at END of style.css
   ===================================================== */

/* Force BOTH header layers to burgundy */
.header_section,
.header_top,
.header_bottom {
  background-color: #7A1F2B !important;
}

/* Slight hierarchy: top bar a touch darker */
.header_top {
  background-color: #5F1821 !important;
}

/* Ensure no inner container paints black */
.header_bottom .container-fluid,
.header_bottom .navbar,
.header_bottom .navbar-collapse,
.header_bottom .custom_nav-container {
  background-color: transparent !important;
}

/* Safety: remove any pseudo backgrounds */
.header_section::before,
.header_section::after,
.header_bottom::before,
.header_bottom::after {
  content: none !important;
}

/* =====================================================
   FINAL HEADER COLOR UNIFICATION
   Single burgundy across entire header
   Paste at END of style.css
   ===================================================== */

/* One unified header color */
.header_section,
.header_top,
.header_bottom {
  background-color: #7A1F2B !important;
}

/* Remove any previous darker override */
.header_top {
  border-bottom: none !important;
}

/* Ensure inner elements stay transparent */
.header_bottom .container-fluid,
.header_bottom .navbar,
.header_bottom .navbar-collapse,
.header_bottom .custom_nav-container {
  background-color: transparent !important;
}

/* =====================================================
   FINAL POLISH — HEADER SHADOW + HEIGHT BALANCE
   Paste at END of style.css
   ===================================================== */

/* Subtle separation between header and hero */
.header_section {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Reduce vertical height (desktop) */
.header_top {
  padding: 6px 0 !important;
}

.header_bottom {
  padding: 8px 0 !important;
}

/* Keep navbar content vertically centered */
.header_bottom .navbar {
  padding-top: 0;
  padding-bottom: 0;
}

/* Mobile balance (do not over-compress) */
@media (max-width: 991px) {
  .header_bottom {
    padding: 10px 0 !important;
  }
}

/* =====================================================
   PREMIUM SCROLL REVEAL ANIMATIONS
   ===================================================== */

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slight delay helpers (optional) */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* =====================================================
   PREMIUM CARD HOVER LIFT
   ===================================================== */

.service_section .box,
.client_section .box,
.pricing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service_section .box:hover,
.client_section .box:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* =====================================================
   PREMIUM BUTTON MICRO-INTERACTIONS
   ===================================================== */

button,
.btn,
a.btn {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Hover */
button:hover,
.btn:hover,
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Active (press) */
button:active,
.btn:active,
a.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* =====================================================
   BRAND CLEANUP — REPLACE ORANGE WITH BURGUNDY
   Why Choose Us + Contact Section
   Paste at END of style.css
   ===================================================== */

/* Section heading accent bar (left line) */
.heading_container h2 {
  border-left-color: #7A1F2B !important;
}

/* Any pseudo-element accents */
.heading_container h2::before,
.heading_container h2::after {
  background-color: #7A1F2B !important;
}

/* Icons in "Why Choose Us" */
.why_box i,
.why_box svg,
.why_box img,
.contact_section i,
.contact_section svg {
  color: #7A1F2B !important;
  fill: #7A1F2B !important;
}

/* Font Awesome icons specifically */
.fa,
.fas,
.far,
.fab {
  color: inherit;
}

/* Inputs focus border (if orange appears on focus) */
.contact_section input:focus,
.contact_section textarea:focus {
  border-color: #7A1F2B !important;
  box-shadow: 0 0 0 0.15rem rgba(122, 31, 43, 0.25);
}

/* Send button already burgundy — just reinforce */
.contact_section button {
  background-color: #7A1F2B !important;
}

.contact_section button:hover {
  background-color: #5F1821 !important;
}

/* =====================================================
   SOCIAL PROOF TOAST (SIMULATED, PREMIUM)
   ===================================================== */

.social-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: rgba(122, 31, 43, 0.95); /* burgundy */
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
  max-width: 300px;
}

/* Visible state */
.social-proof.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tweak */
@media (max-width: 576px) {
  .social-proof {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: unset;
    text-align: center;
  }
}

/* =====================================================
   PARTNERS SECTION — PREMIUM TRUST SIGNAL
   ===================================================== */

.partners_section {
  padding: 80px 0;
  background-color: #ffffff;
}

.partners_section .heading_container p {
  max-width: 700px;
  margin: 12px auto 0;
  color: #444;
}

/* Grid layout */
.partners_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* Individual partner card */
.partner_card {
  text-align: center;
  padding: 20px;
}

/* Logos */
.partner_card img {
  max-height: 60px;
  margin-bottom: 18px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover polish */
.partner_card:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

/* Description text */
.partner_card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* =====================================================
   PARTNER LOGO — GRAYSCALE TO COLOR (PREMIUM)
   ===================================================== */

.partner_card img {
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.partner_card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

/* =====================================================
   FACTORING PAGE — SIDE PARTNERS LAYOUT
   ===================================================== */

.partners_side {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.partners_side h4 {
  font-weight: 700;
  margin-bottom: 25px;
}

/* Tighter spacing for side layout */
.partners_side .partner_card {
  margin-bottom: 28px;
  text-align: left;
}

.partners_side .partner_card img {
  max-height: 48px;
  margin-bottom: 10px;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .partners_side {
    padding: 25px;
  }
}

/* =====================================================
   SAFETY OVERRIDE — ENSURE CONTENT IS VISIBLE
   On sub pages if JS fails
   ===================================================== */

/* Force reveal content visible on sub pages */
.sub_page .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* =====================================================
   FINAL SAFETY FIX — REVEAL ONLY ON HOMEPAGE
   ===================================================== */

/* On ALL sub pages, force content visible */
.sub_page .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =====================================================
   FINAL BRUTE-FORCE VISIBILITY FIX
   ===================================================== */

/* Kill reveal hiding everywhere */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Kill reveal animations entirely */
.reveal,
.reveal.active {
  transition: none !important;
}

/* =====================================================
   EMERGENCY OVERLAY KILL SWITCH
   ===================================================== */

/* Disable any full-page overlay blocking content */
.hero_bg_box,
.hero_bg_box::before,
.hero_bg_box::after,
.slider_section::before,
.slider_section::after {
  pointer-events: none !important;
}

/* Ensure main content is above overlays */
section,
.container,
.container-fluid,
.layout_padding {
  position: relative;
  z-index: 2;
}

/* =====================================================
   FINAL FIX — DISABLE HERO OVERLAYS ON SUB PAGES
   ===================================================== */

/* Completely disable homepage hero on sub pages */
.sub_page .hero_area,
.sub_page .hero_bg_box,
.sub_page .hero_bg_box::before,
.sub_page .hero_bg_box::after {
  display: none !important;
}

/* Ensure sub page content is fully interactive */
.sub_page section,
.sub_page .container,
.sub_page .container-fluid,
.sub_page .layout_padding {
  position: relative;
  z-index: 1;
}

/* ================= PRICING PREVIEW ================= */
.pricing-preview-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.pricing-preview-box {
  background: #1b1b1b;
  border-radius: 22px;
  padding: 70px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pricing-center {
  text-align: center;
  max-width: 420px;
}

.pricing-center h2 {
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-center p {
  color: #d0d0d0;
  font-size: 15px;
  margin-bottom: 25px;
}

.pricing-btn-main {
  background: #7b1f2d;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.pricing-btn-main:hover {
  background: #5f1722;
  color: #fff;
}

/* CARDS */
.pricing-card {
  background: #fff;
  color: #111;
  width: 260px;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.pricing-card h6 {
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card h2 {
  font-size: 34px;
  font-weight: 800;
  color: #7b1f2d;
}

.price-sub {
  font-size: 13px;
  color: #555;
  margin-bottom: 18px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.pricing-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.pricing-btn-outline {
  display: block;
  text-align: center;
  padding: 10px;
  border: 2px solid #7b1f2d;
  border-radius: 25px;
  color: #7b1f2d;
  font-weight: 600;
  text-decoration: none;
}

.pricing-btn-outline:hover {
  background: #7b1f2d;
  color: #fff;
}

/* ANGLED EFFECT */
.preview-left {
  transform: rotate(-6deg);
}

.preview-right {
  transform: rotate(6deg);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .pricing-preview-box {
    flex-direction: column;
    text-align: center;
  }

  .preview-left,
  .preview-right {
    transform: none;
  }
}

/* ================= MOST POPULAR (FADED BACK CARD) ================= */
.preview-popular {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1.08);
  top: 50%;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  background: #ffffff;
}

/* Badge */
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #7b1f2d;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

/* Ensure visible cards stay on top */
.preview-left,
.preview-right,
.pricing-center {
  position: relative;
  z-index: 2;
}

/* Adjust container for overlap */
.pricing-preview-box {
  position: relative;
}

/* ================= HERO VIDEO BACKGROUND ================= */
.hero_video_section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 28vh;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* ================= HERO TEXT ANIMATION ================= */
.fade-in {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= HERO VIDEO FIX ================= */

.hero_video_section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Video fills screen */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* PERFECT CENTERING */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  text-align: center;
  color: #fff;

  /* compensate for header height */
  margin-top: 40px;
}

/* Typography polish */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  max-width: 720px;
  margin: 16px auto 28px;
  font-size: 1.1rem;
  opacity: 0.95;
}
