* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 1e4043
2774a7a */

body {
    font-family: Arial, sans-serif;
    background: #e9f4fd;
}
.sliders{
height:100vh;
}
.sliders iframe{
height:100vh;
}


.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  border-radius: 0.25rem;
}

/* Show submenu on hover (desktop) */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Ensure dropdown-item has arrow for submenu */
.dropdown-submenu > .dropdown-item::after {
  content: "▶";
  float: right;
  margin-left: 0.5rem;
  font-size: 0.6em;
}

/* Optional: fix nested hover on mobile collapse */
@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 0;
  }
}

/* Top Blue Navbar */

.top-navbar {
    background-color: #156fb0;
    font-size: 14px;
}

.top-navbar a {
    color: white;
    text-decoration: none;
}

.contact-info,
.social-info {
    font-size: 14px;
}

@media (max-width: 768px) {
    .top-navbar {
        display: none;
    }
}


/* Main Navbar */

.main-navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.main-navbar .nav-link {
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

.user-icon {
    font-size: 22px;
    color: #000;
}


/* Dropdown on Hover - Desktop */

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/* Estimate Button */

.estimate-btn {
    background: #156fb0;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.estimate-btn:hover {
    background: #156fb0;
    color: #fff;
}

.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #156fb0;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.estimate-btn:hover .circle-arrow {
    transform: translateX(5px);
}


/* Responsive Tweaks */

@media (max-width: 768px) {
    .estimate-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
    .top-navbar {
        font-size: 13px;
        text-align: center;
    }
    .main-navbar .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }
    .user-icon {
        margin-top: 10px;
    }
    .social-info {
        margin-top: 10px;
    }
}


/* Hero Section */

.hero {
    padding: 60px 0;
    background-image: url('img/hero-background.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-text h1 {
    font-size: 2.5rem;
}

.highlight {
    color: #156fb0;
}

.badge-list li {
    list-style: none;
    margin-bottom: 0.5rem;
}

.badge-list i {
    color: #156fb0;
    margin-right: 0.5rem;
}

.badge-icons img {
    height: 50px;
    max-width: 100%;
}


/* Video Styling */

.img-preview video,
.img-preview img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Brand Section */

.brand.py-5 {
    background-color: #FAFAFA;
}


.brand .image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.brand .image .box img {
    width: 160px;
    max-width: 100%;
    filter: grayscale(1);
    transition: all 0.3s ease-in-out;
}

.brand .image .box:hover img {
    filter: grayscale(0);
}


/* Responsive Tweaks */

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }
    .badge-icons {
        justify-content: center;
    }
    .img-preview {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    .btn.estimate-btn {
        width: 100%;
    }
    .badge-list li {
        font-size: 0.95rem;
    }
    .brand .image .box img {
        width: 120px;
    }
}


/* About Section */

.about {
    background: #FAFAFA;
    padding: 60px 0;
}

.about .topic {
    color: #156fb0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.about h1 {
    font-size: 2.2rem;
}

.about .highlight {
    color: #156fb0;
}


/* Counter Section */

.counter-section {
    margin-top: 3rem;
}

.counter-section .counter {
    font-size: 2.5rem;
    color: #156fb0;
    font-weight: bold;
}

.counter-description {
    font-size: 1rem;
    color: black;
}


/* Video Styling */

.img-preview video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* Responsive Tweaks */

@media (max-width: 768px) {
    .about h1 {
        font-size: 1.9rem;
    }
    .counter-section .counter {
        font-size: 2rem;
    }
    .counter-description {
        font-size: 0.95rem;
    }
    .img-preview {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about h1 {
        font-size: 1.6rem;
    }
    .about .topic {
        text-align: center;
    }
    .counter-section .counter {
        font-size: 1.8rem;
    }
    .counter-description {
        font-size: 0.9rem;
    }
    .btn.estimate-btn {
        width: 100%;
    }
}


/* Our Services */

.service-section {
    background: #F8F8F8;
}

.service-section .text-muted {
    padding: 0 20rem;
}

.service-box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-box:hover svg path,
.service-box:hover svg g {
    fill: white !important;
}

.service-box p {
    font-size: 13px;
    line-height: 1.31;
}

.service-box span {
    color: #156fb0;
    font-weight: 700;
}

.service-box:hover span {
    color: #fff !important;
}

.service-box:hover {
    background-color: #156fb0;
    color: #fff !important;
}

.service-box:hover h5,
.service-box:hover p,
.service-box:hover a {
    color: #fff !important;
}

.service-icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.service-title {
    font-weight: 700;
}

.service-section .row>div:nth-child(7) .service-title,
.service-section .row>div:nth-child(8) .service-title {
    padding-right: 3.8rem;
    font-weight: 700;
}

.service-section .row>div:nth-child(7) .service-box p,
.service-section .row>div:nth-child(8) .service-box p {
    padding-right: 1.6rem;
}

.service-section .row>div:nth-child(7) .service-box,
.service-section .row>div:nth-child(8) .service-box {
    background: transparent;
}

.service-section .row>div:nth-child(7) .service-box:hover,
.service-section .row>div:nth-child(8) .service-box:hover {
    background-color: #156fb0;
    color: #fff !important;
}

.estimate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #156fb0;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.service-section .row>div:nth-child(7) .service-box .circle-arrow i,
.service-section .row>div:nth-child(8) .service-box .circle-arrow i {
    color: #156fb0;
}

.service-section .row>div:nth-child(7) .service-box:hover a.estimate-btn,
.service-section .row>div:nth-child(8) .service-box:hover a.estimate-btn {
    background-color: #ffffff;
    color: #156fb0 !important;
}

.service-section .row>div:nth-child(7) .service-box:hover .circle-arrow,
.service-section .row>div:nth-child(8) .service-box:hover .circle-arrow {
    border: 1px solid #156fb0;
}

.service-section .row>div:nth-child(7) .service-box:hover .circle-arrow i,
.service-section .row>div:nth-child(8) .service-box:hover .circle-arrow i {
    color: #156fb0;
}

@media (max-width: 1200px) {
    .service-section .text-muted {
        padding: 0 5rem;
    }
}

@media (max-width: 767px) {
    .service-section .text-muted {
        padding: 0 1rem;
    }
}


/* Outrank section */

.info-card {
    border: 1px solid #dee2e6;
    /* light gray border */
    border-radius: 10px;
    padding: 24px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: left;
}

.info-card:hover {
    background-color: #156fb0;
    /* Bootstrap primary blue */
    color: white;
}

.info-card:hover h5,
.info-card:hover p,
.info-card:hover .number-circle {
    color: white;
}

.number-circle {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.section-heading {
    font-weight: bold;
    font-size: 32px;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .section-heading {
        font-size: 28px;
    }
    .number-circle {
        font-size: 20px;
    }
}


/* ready-section */

#ready {
    padding: 4rem 0;
    background: #fff;
    color: #ffff;
}

#ready .text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #156fb0;
    padding: 4rem;
    border-radius: 30px;
    flex-wrap: wrap;
}

#ready .text .left,
#ready .text .right {
    width: 50%;
}

#ready .text .right a {
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 20px;
}

@media (max-width: 767px) {
    #ready .text {
        justify-content: flex-start;
        padding: 2rem;
    }
    #ready .text .left,
    #ready .text .right {
        width: 100%;
    }
}


/* Why choose Us */

.accordion-button {
    font-weight: 600;
    border: 1px solid #eaeaea;
    border-radius: 10px;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.img-fluid-custom {
    border-radius: 12px;
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: inherit;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(26%) sepia(92%) saturate(2264%) hue-rotate(199deg) brightness(95%) contrast(101%);
}

.accordion-item {
    border-radius: 10px;
}

.accordion-body {
    color: #555;
}


/* bids */

#bids {
    padding: 4rem 0;
    background: #fff;
    color: #ffff;
}

#bids .text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #156fb0;
    padding: 4rem;
    border-radius: 30px;
    flex-wrap: wrap;
}

#bids .text .left,
#bids .text .right {
    width: 50%;
}

#bids .text .right a {
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 20px;
}

@media (max-width: 767px) {
    #bids .text {
        justify-content: flex-start;
        padding: 2rem;
    }
    #bids .text .left,
    #bids .text .right {
        width: 100%;
    }
}


/* takeoff services */

#trades .service-tabs {
    border-right: 1px solid #dee2e6;
}

#trades .nav-tabs .nav-link {
    text-align: left;
    border: none;
    padding: 12px 15px;
    color: #495057;
    font-weight: 500;
    display: flex;
    align-items: center;
}

#trades .nav-tabs .nav-link.active {
    color: #156fb0;
    background-color: transparent;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.79);
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.79);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.79);
}

#trades .nav-tabs .nav-link:hover {
    color: #156fb0;
    background-color: rgba(13, 110, 253, 0.05);
}

#trades .nav-tabs .nav-link img {
    width: 24px;
    margin-right: 10px;
}

#trades .tab-content {
    padding-left: 30px;
}

#trades .tab-content h2 a {
    color: #212529;
    text-decoration: none;
}

#trades .tab-content h2 a:hover {
    color: #156fb0;
}

#trades .service-img {
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    #trades .tab-content {
        padding-left: 15px;
        padding-top: 20px;
    }
}

@media (max-width: 767.98px) {
    #trades .service-tabs {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 20px;
    }
    #trades .nav-tabs .nav-link.active {
        border-right: none;
        /* border-bottom: 3px solid #156fb0; */
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.79);
        -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.79);
        -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.79);
    }
    #trades .tab-content {
        padding-left: 15px;
    }
}


/* Construction Estimation & Quantity */

#takeoff .position-img {
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
}

#takeoff .circle-bg {
    position: absolute;
    top: 40px;
    left: 382px;
    width: 157px;
    z-index: 0;
}

#takeoff .border-decor {
    position: absolute;
    top: -25px;
    left: -60px;
    width: 150px;
    z-index: 0;
}

#takeoff .floating-img {
    position: absolute;
    bottom: -20px;
    right: 90px;
    width: 230px;
    z-index: 2;
    border: 3px solid #fff;
}

#takeoff .fw-bold {
    padding: 0 18rem;
}

@media (max-width: 1200px) {
    #takeoff .fw-bold {
        padding: 0 5rem !important;
    }
}

@media (max-width: 768px) {
    #takeoff .fw-bold {
        padding: 0 1rem 16px !important;
    }
    #takeoff .floating-img {
        width: 200px;
        height: 200px;
        bottom: -10px;
        right: 31px;
    }
}

@media (max-width: 500px) {
    #takeoff .floating-img {
        display: none;
    }
}


/* Project */

#project .highlight span {
    color: #156fb0;
}

#project .btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border: 2px solid #156fb0;
    color: #156fb0;
    background-color: transparent;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

#project .btn-arrow:hover {
    background-color: #156fb0;
    color: #fff;
}

#project .btn-arrow svg circle {
    stroke: currentColor;
}

#project .btn-arrow svg path {
    fill: currentColor;
}

#project .card {
    overflow: hidden;
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
}

#project .card-img {
    height: 20rem;
}

#project .card-img-container img {
    object-fit: cover;
    object-position: center;
    max-height: 100%;
    /* height: 20rem; */
}

#project .card-img-overlay {
    color: #fff;
    font-weight: bold;
    /* text-shadow: 0 0 3px #ff0000, 0 0 5px #0000ff; */
    display: none;
}

@media (max-width: 768px) {
    #project .carousel-inner .carousel-item .col-md-3 {
        width: 100%;
    }
    #project .carousel-inner .carousel-item .row>div {
        display: none;
    }
    #project .carousel-inner .carousel-item .row>div:first-child {
        display: block;
    }
    #project .card-img-container img {
        width: 100%;
        height: 500px;
    }
}

@media (max-width: 500px) {
    #project .card-img-container img {
        width: 100%;
        height: 368px;
    }
}


/* testimonial */

.testimonial-section {
    background: linear-gradient(to bottom right, #1e1e1e, #2c2c2c);
    color: #fff;
    padding: 60px 0;
}

.testimonial-title h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ddd;
}

.testimonial-title p {
    color: #aaa;
    margin-top: 10px;
}

.testimonial-scroller {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    animation: scrollUpDown 40s ease-in-out infinite;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

@keyframes scrollUpDown {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0%);
    }
}

.testimonial-card {
    background-color: #2b2b2b;
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
    flex-shrink: 0;
    width: 30%;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #555;
    display: inline-block;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #bbb;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #ffffff;
    margin-top: 15px;
}

.testimonial-section .get-quote-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 20px;
}

.testimonial-section .get-quote-btn:hover {
    background: #156fb0;
    border: 1px solid #156fb0;
    color: #fff;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 46%;
    }
}

@media (max-width: 455px) {
    .testimonial-card {
        width: 100%;
    }
}


/* blog */

#blog .section-title {
    font-weight: bold;
    font-size: 1.8rem;
    /* border-left: 6px solid #156fb0; */
    /* padding-left: 10px; */
    color: #156fb0;
}

#blog .blog-card img {
    border-radius: 10px;
    object-fit: cover;
    height: 220px;
}

#blog .blog-card {
    border-radius: 12px;
    padding: 15px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

#blog .blog-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#blog .btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #156fb0;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #156fb0;
}


/* #blog .btn-arrow:hover {
    background: #156fb0;
    color: #fff;
} */

#blog .btn-arrow svg {
    transition: transform 0.3s ease;
}

#blog .btn-arrow:hover svg {
    transform: translateX(5px);
}

#blog .meta {
    font-size: 0.85rem;
    color: #888;
}

#blog .read-more {
    font-weight: 500;
    color: #156fb0;
}

#blog .read-more svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 768px) {
    #blog .blog-card img {
        height: auto !important;
    }
}


/* call of action section */

.Call-of-action-section {
    background-image: url('img/call of action bg 1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #156fb0;
    color: white;
    position: relative;
    overflow: hidden;
    /* padding: 4rem 0; */
}

.Call-of-action-section .content h1 {
    font-weight: 700;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    /* Scales with screen size */
    line-height: 1.3;
    max-width: 100%;
}

.Call-of-action-section .content p {
    max-width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.Call-of-action-section .btn-pill {
    margin-top: 2rem;
    background-color: white;
    color: #156fb0;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 0.95rem;
}

.Call-of-action-section .btn-pill svg path,
.Call-of-action-section .btn-pill svg circle {
    stroke: #156fb0;
    transition: stroke 0.3s ease;
}

.Call-of-action-section .image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    user-select: none;
}


/* Responsive Breakpoints */

@media (max-width: 992px) {
    .Call-of-action-section .row {
        flex-wrap: wrap;
    }
    .Call-of-action-section .row .col-md-6 {
        width: 100%;
    }
    .Call-of-action-section .content h1 {
        font-size: 2rem;
    }
    .Call-of-action-section .content {
        padding: 2rem 0;
    }
    .Call-of-action-section .image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .Call-of-action-section {
        text-align: center;
    }
    .Call-of-action-section .btn-pill {
        font-size: 0.7rem;
        padding: 10px 8px;
        /* flex-direction: row; */
        /* justify-content: center; */
    }
}

@media (max-width: 400px) {
    .Call-of-action-section .image {
        height: 250px;
    }
}


/* footer */

.footer {
    background-image: url(img/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.footer a {
    color: black;
}
.footer .logo img{
    object-fit: contain;
}


/* Base styles */

.footer p,
.footer span,
.footer a {
    font-size: 1rem;
}


/* Tablet view adjustments */

@media (max-width: 992px) {
    .footer {
        background-position: center left;
    }
}

@media (max-width: 768px) {
    .footer p,
    .footer span,
    .footer a {
        font-size: 0.95rem;
    }
    #address .col-md-4,
    #numbers .col-md-4 {
        text-align: center;
    }
    #address .d-flex,
    #numbers .d-flex {
        flex-direction: column;
        align-items: center;
    }
    #address svg,
    #numbers svg {
        margin-bottom: 5px;
    }
}


/* Mobile view adjustments */

@media (max-width: 576px) {
    .footer p,
    .footer span,
    .footer a {
        font-size: 0.9rem;
    }
    nav ul.list-inline {
        flex-direction: column !important;
    }
    nav ul.list-inline li {
        margin: 0.3rem 0 !important;
    }
    .footer img {
        width: 150px;
        height: auto;
    }
    .footer .row>div {
        margin-bottom: 1rem;
    }
}