/* ==========================================================================
   1. Base Reset & Layout Constraints
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    "Arial", sans-serif; /* Fallback: Replace with site-specific font */
  -webkit-font-smoothing: antialiased;
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.site-header {
  width: 100%;
     position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
  z-index: 1000000;
}

/* ==========================================================================
   2. Top Bar (Logo, Contact, Socials)
   ========================================================================== */
.top-bar {
  background-color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo img {
  display: block;
  max-height: 75px;
  width: auto;
}

/* --- Mobile Toggle (Hamburger) --- */
.mobile-menu-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #2ea3f2; /* Styled brand accent blue */
  border-radius: 2px;
}

/* --- Contact Info & Social Lists --- */
.top-info > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.single-info-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-info-box .icon-holder {
  color: #2ea3f2;
  font-size: 32px;
  display: flex;
  align-items: center;
}

.single-info-box .text-holder p {
  font-size: 13px;
  color: #444444;
  line-height: 1.4;
}

.single-info-box .text-holder p span {
  font-weight: 700;
  text-transform: uppercase;
  color: #222222;
}

.single-info-box .text-holder a {
  color: #2ea3f2;
  text-decoration: none;
  font-size: 18px;
}

/* --- Social Icons Circles --- */
.social-links ul {
  list-style: none;
  display: flex;
  gap: 12px;
}

.social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #2ea3f2;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.social-links ul li a:hover {
  background-color: #2ea3f2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 163, 242, 0.3);
}

/* ==========================================================================
   3. Main Header Navigation Bar
   ========================================================================== */
.main-header {
  background-color: #40b3f1; /* Sky blue background based on image_a093bc.png */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


.page-content{
  margin-top:  136px;
}

@media(max-width:1000px){
   .page-content{
  margin-top: 102px;
}

}
.main-header__inner {
  display: flex;
  align-items: center;
}

.main-nav {
  width: 100%;
}

.main-nav__menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px !important;
}

/* Nav Item Links */
.main-nav__menu > li {
  position: relative;
}

.main-nav__menu > li > a {
  display: block;
  padding: 22px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.main-nav__menu > li:hover > a,
.main-nav__menu > li.active > a {
  background-color: #2B86B7; /* Darker blue active/hover state */
}

.main-nav__menu > li > a .arrow {
  font-size: 11px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* --- Desktop Dropdown Menus --- */
.main-nav .dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  border-top: 3px solid #1b8cdb;
}

.main-nav .dropdown li {
  border-bottom: 1px solid #f5f5f5;
}

.main-nav .dropdown li:last-child {
  border-bottom: none;
}

.main-nav .dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #444444;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: start;
}

.main-nav .dropdown li a:hover {
  background-color: #f9f9f9;
  color: #2ea3f2;
  padding-left: 25px; /* Subtle shifting dynamic */
}

/* Reveal dropdown on hover for desktop viewports */
@media (min-width: 1025px) {
  .main-nav__menu > li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ==========================================================================
   4. Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablet & Smaller Screens Setup (Triggering Mobile Menu Interface) */
@media (max-width: 1000px) {
  .mobile-menu-toggle {
    display: flex; /* Expose standard desktop hamburger button */
  }

  .top-bar {
    padding: 12px 0;
  }

  .top-bar__inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .top-bar__left {
    width: 100%;
    justify-content: space-between; /* Keeps hamburger aligned away from logo */
  }

  .top-info {
    width: 100%;
    justify-content: center;
  }

  .top-info > ul {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }

  /* --- Mobile Slide down/Collapsing Navbar Panel --- */
  .main-header__inner {
    padding: 0; /* Clear inline padding defaults */
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    width: 100%;
  }

  /* JavaScript Toggle trigger class */
  .main-nav.is-open {
    max-height: 100vh; /* Smooth display down expansion limits */
    overflow-y: auto;
  }

  .main-nav__menu {
    flex-direction: column;
    width: 100%;
    background-color: #2ea3f2;
  }

  .main-nav__menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .main-nav__menu > li > a {
    /* padding: 14px 20px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* --- Mobile Dropdowns Container Modifications --- */
  .main-nav .dropdown {
    position: static;
    width: 100%;
    background-color: #2592dc; /* Darkened variant backdrop box nested links */
    box-shadow: none;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.3s ease-in-out;
  }

  .main-nav .dropdown li a {
    color: #ffffff;
    padding-left: 35px;
  }

  .main-nav .dropdown li a:hover {
    background-color: #1b8cdb;
    color: #ffffff;
  }

  /* JavaScript active-dropdown trigger configuration */
  .main-nav__menu > li.active-dropdown .dropdown {
    max-height: 500px; /* Expands open to reveal content heights smoothly */
  }

  .main-nav__menu > li.active-dropdown > a .arrow {
    transform: rotate(180deg);
  }
}

/* Small Smartphone Breakdown Adjustment */
@media (max-width: 580px) {
  .top-info > ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .single-info-box {
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 1000px) {
  .social-links {
    display: none !important;
  }
  .single-info-box {
    display: none !important;
  }
}
.quote-button a {
  height: 66px;

  line-height: 62px;

  width: 170px;
  background-color: #2b86b7;
}

.quote-button a i {
  display: inline-block;

  padding-right: 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .quote-button {
    display: none !important;
  }
}

.thm-btn {
  border: 2px solid #23729a;
  background: #23729a;

  color: #ffffff;

  display: inline-block;

  font-family: "Montserrat", sans-serif;

  font-size: 14px;

  font-weight: 600;

  outline: medium none;

  text-align: center;

  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);

  text-transform: uppercase;

  transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -webkit-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  -o-transition: all 500ms ease;
  border-radius: 25px;
}

.thm-btn:hover {
  background: #108bcc;
  color: #fff;
  border: 2px solid #23729a;
}

/* ==========================================================================
   FOOTER AREA (Main blue section)
   ========================================================================== */
.footer-area {
  background-color: #2b86b7;
  color: #ffffff;
  padding: 60px 0 10px 0;
}

.footer-area .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.single-footer-widget.pd-bottom {
  padding-bottom: 30px;
}

.single-footer-widget {
  margin-bottom: 30px;
}

/* ==========================================================================
   Column 1 — Logo, About & Socials
   ========================================================================== */
.footer-area .footer-logo {
  margin-bottom: 25px;
  display: flex;
  justify-content: left;
}

.footer-area .footer-logo img {
  max-height: 80px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}

.footer-area .industry-info {
  text-align: left;
  max-width: 340px;
  margin: 0 auto 20px auto;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-area .industry-info p {
  font-size: 14px;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
}

/* Social icons — centered row with gold hover */
.footer-area .footer-social-links {
  list-style: none;
  display: flex;
  justify-content: left;
  gap: 22px;
  padding: 18px 0 0 0;
  margin: 0;
}

.footer-area .footer-social-links li {
  display: inline-block;
  margin: 0;
}

.footer-area .footer-social-links li a i {
  color: #ffffff;
  font-size: 24px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: inline-block;
}

.footer-area .footer-social-links li a:hover i {
  color: #fdc716;
  transform: scale(1.15);
}

/* ==========================================================================
   Columns 2 & 3 — Widget Title (underline spans full column width)
   ========================================================================== */
.footer-area .single-footer-widget .title {
  text-align: left;
  margin-bottom: 28px;
  padding-bottom: 0;
  position: relative;
}

/* The h3 itself sits inline, underline spans full parent width via ::after on .title */
.footer-area .single-footer-widget .title h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block; /* block so it fills width */
  padding-bottom: 14px;
  margin: 0;
  position: relative;
}

/* Full-width white underline — matches original PHP design exactly */
.footer-area .single-footer-widget .title h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

/* ==========================================================================
   Column 2 — Quick Links
   ========================================================================== */
.footer-area .quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-area .quick-links li {
  margin-bottom: 13px;
}

.footer-area .quick-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-area .quick-links li a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Center the quick-links column content on desktop */
@media (min-width: 992px) {
  .foot-link-quick {
    display: flex;
    justify-content: center;
  }
}

/* ==========================================================================
   Column 3 — Get In Touch Contact List
   ========================================================================== */

/* Center column 3 on desktop */
@media (min-width: 992px) {
  .footer-area .col-lg-4:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer-area .contact-address {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 300px;
  width: 100%;
}

.footer-area .contact-address li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

/* Icon wrapper — keeps icon aligned to first line of text */
.footer-area .contact-address .icon-holder {
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 26px;
  margin-top: 1px;
}

.footer-area .contact-address .icon-holder span {
  font-size: 22px;
  line-height: 1;
}

.footer-area .contact-address .content-holder p,
.footer-area .contact-address .content-holder a {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.55;
  text-decoration: none;
  margin: 0;
}

.footer-area .contact-address .content-holder p span {
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   Footer Bottom — Copyright Bar
   ========================================================================== */
.footer-bottom-area {
  background-color: #016296;
  border-top: 1px solid #0473af;
  padding: 18px 0;
  color: #ffffff;
}

.footer-bottom-area .copyright-text {
  text-align: center;
}

.footer-bottom-area .copyright-text p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.footer-bottom-area .copyright-text a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-bottom-area .copyright-text a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   Responsive — Tablet & Mobile
   ========================================================================== */
@media (max-width: 991px) {
  .footer-area .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-area [class^="col-"] {
    width: 100%;
    max-width: 460px;
  }

  .footer-area .single-footer-widget {
    margin-bottom: 40px;
  }

  /* Remove desktop centering override on mobile */
  .footer-area .col-lg-4:last-child {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-area {
    padding: 40px 0 10px 0;
  }

  .footer-bottom-area .copyright-text p {
    font-size: 12px;
    line-height: 1.6;
    padding: 0 10px;
  }
}

.latest-project-area::before {
  background: rgba(25, 25, 25, 0.3);
}

.accordion-box .accordion .accord-btn.active:after {
  background: #40b3f1;
}

.breadcrumb-area {
  background-image: url(/images/coupon_background.jpg) !important;
  background-size: 100% 100% !important;
}

.breadcrumb-area h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
}

.breadcrumb-area {
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 90px;
  padding-top: 123px;
  position: relative;
  z-index: 1;
}
.pull-left {
  float: left !important;
}

.breadcrumb-bottom-area .left a {
  background: #45ade4;
}
.breadcrumb-bottom-area .left a {
  /* background: #fdc716 none repeat scroll 0 0; */
  color: #ffffff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  height: 55px;
  line-height: 54px;
  padding: 0 40px;
  text-transform: capitalize;
  transition: all 500ms ease;
}

.pull-right {
  float: right !important;
}
.breadcrumb-bottom-area .right ul li {
  color: #292929;
  font-size: 14px;
  line-height: 55px;
  display: inline-block;
  margin: 0 0 0 5px;
}

.breadcrumb-bottom-area {
  border-bottom: 1px solid #e3e3e3 !important;
  background: #f7f7f7 !important;
}

a {
  color: #2b86b7;
  text-decoration: none;
}

.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " ";
}

.btn-group-vertical > .btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
  clear: both;
}

.breadcrumb-bottom-area .right ul li:hover a,
.single-footer-widget .contact-address li .icon-holder span:before,
.top-info ul li.single-info-box .icon-holder span::before {
  color: #40b3f1;
}
