html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Work Sans", sans-serif;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #FFFFFF;
    color: #1E1E1E;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    background-image: url(../../img/body-pattern.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
p{
    line-height: 28px;
    letter-spacing: 0.36px;
}
a,
a:hover {
    color: inherit;
    text-decoration: none;
}
.btn:focus {
    box-shadow: none;
}

.lalezar{
  font-family: "Lalezar", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.built-by span {
    font-family: "poppins", sans-serif;
}



/*Header*/
.header{
    background: #FFFFFF;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
}
.sticky-bar{
    background: #ffffff;
}

/*Top Nav*/
.top-nav{
    background-color: #1E1E1E;
    padding: 15px 0px;
}
.tn-call{
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}
.tn-call:hover{
    color: #FFF;
}
.tn-call img{
    transition: all 0.3s ease-in-out;
}
.tn-call:hover img{
    transform: rotate(45deg);
}
.tn-call .underline{
    position: relative;
}
.tn-call .underline::after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0px;
    width: 0%;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.tn-call:hover .underline::after{
    width: 100%;
}

/*Main Nav*/
.main-nav{
    padding: 2px 0px;
    position: relative;
}
.navbar-nav{
    gap: 50px;
}
.nav-link{
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.4px;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.navbar-nav .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.nav-item .nav-link.active, 
.nav-item .nav-link:hover{
    color: #28469F;
}
.btn-theme{
    padding: 21px 30px;
    border-radius: 16px;
    background: #28469F;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1.8px;
    transition: all 0.3s ease-in-out;
    border: 0px !important;
}
.btn-theme:hover, 
.btn:first-child:active{
    background-color: #1E1E1E;
    color: #ffffff;
}

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}          
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

@media all and (min-width: 1200px) {
.navbar .nav-item .dropdown-menu{ display: none; }
.navbar .nav-item:hover .dropdown-menu{ display: block; }
.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    margin-top: 0px;
    vertical-align: 3px;
    content: "";
    border-top: 0.3em solid !important;
    border: solid #000000 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    border-right: 0em solid transparent; 
    border-bottom: 0; 
    border-left: 0em solid transparent; 
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    background: #ffffff;
    box-shadow: 3px 3px 6px #0000001a;
    border-radius: 10px;
    overflow: hidden;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    clear: both;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.4px;
}
.nav-item .nav-link.active.dropdown-toggle::after{  
    border-top: 0.3em solid !important;
    border: solid #0a58ca !important;
    border-width: 0 2px 2px 0 !important;
}
.nav-item .nav-link:hover.dropdown-toggle::after{
    border-top: 0.3em solid !important;
    border: solid #28469F !important;
    border-width: 0 2px 2px 0 !important;
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
    color: #ffffff;
    background-color: #28469F;
}
.h-support{
    font-size: 14px;
    opacity: 0.8;
}
.dropdown .dropdown-menu{
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@media all and (min-width: 1200px) {
.navbar .dropdown-menu-end{ right:0; left: auto; }
.navbar .nav-item .dropdown-menu{ display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0; }
.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
.navbar .dropdown-menu.fade-up{ top:180%; }
.navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
}
.menu_toggle{
    width: 50px !important;
    height: 50px;
    padding: 9px 10px 9px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
    align-items: flex-end;
}
.menu_toggle span {
    height: 3px;
    width: 100%;
    background: #000000;
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}
.menu_toggle span:nth-child(2){
    width: 75%;
}
.menu_toggle span:nth-child(3){
    width: 48%;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 90%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2) {
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3) {
    width: 90%;
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
#check1{
    display: none;
}


/*Footer*/
.footer{
    background-color: #1E1E1E;
    padding: 110px 0px;
}
.bottom-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.f-text{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.4px;
}
.f-text .f-link{
    transition: all 0.3s ease-in-out;
}
.f-text .f-link:hover{
    color: #28469F;
}
.f-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.middle-footer{
    padding: 40px 0px;
    margin: 40px 0px;
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
}
.top-footer{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.social-sec{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.social-icon-box{
    min-width: 40px;
    height: 40px;
    background-color: #28469F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.social-icon-box:hover{
    background-color: #ffffff;
}
.social-icon-box svg path{
    transition: all 0.3s ease-in-out;
}
.social-icon-box:hover svg path{
    fill: #1E1E1E;
}
.contact-sec{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.36px;
}
.contact-sec img{
    margin-top: -2px;
}
.contact-sec a{
    transition: all 0.3s ease-in-out;
}
.contact-sec a:hover{
    color: #28469F;
}


/*Service Area*/
.light-blue{
    background-color: #EAEDF5;
}
.sec-pad{
    padding: 150px 0px;
}
.small-title{
    color: #28469F;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.title{
    font-size: 60px;
    font-weight: 800;
    line-height: 70px;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}
.blue-box{
    border-radius: 20px;
    background-color: #28469F;
    padding: 15px 20px;
    margin-bottom: 30px;
}
.sub-title1{
    font-size: 30px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: 0.6px;
}
.blue-box .sub-title1{
    text-align: center;
    margin-bottom: 0px;
    color: #ffffff;
}
.location-name p{
    margin-bottom: 10px;
    text-align: center;
    color: #000000;
}
.location-name p:last-child{
    margin-bottom: 0px;
}
.contact-box{
    border-radius: 30px;
    background: #FFF;
    box-shadow: 30px 30px 40px 0 rgba(40, 70, 159, 0.10);
    padding: 10px;
}
.contact-box .bottom-sec{
    padding: 0px 20px 20px;
}
.small-sub-title{
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}
.text-theme{
    color: #28469F;
}
.link{
    transition: all 0.3s ease-in-out;
}
.link:hover{
    color: #28469F;
}
.contact .social-sec{
    gap: 4px;
    margin-top: 10px;
}
.contact .social-sec .social-icon-box{
    min-width: 36px;
    height: 36px;
    border: 1px solid #28469F;
}
.contact .social-sec .social-icon-box:hover svg path{
    fill: #28469F;
}
.bottom-sec{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.map-box{
    border-radius: 20px;
    width: 100%;
    height: 480px;
    overflow: hidden;
}
.map-box iframe{
    width: 100%;
    height: 100%;
}
.contact .small-sub-title{
    white-space: nowrap;
}


/*About Our Team*/
.bg-black{
    background-color: #1E1E1E;
}
.img-box{
    border-radius: 0px 60px 60px 0px;
    overflow: hidden;
    width: 50%;
    margin-top: -100px;
}
.left-touch{
    display: flex;
    align-items: flex-start;
    gap: 150px;
}
.right-pad{
    padding-right: 150px;
}
.left-pad{
    padding-left: 150px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}
.left-touch .sec-pad{
    width: 58%;
}
.mobi-view{
    display: none;
}
.br-30{
    border-radius: 30px;
}
.cust-top-pad{
    padding-top: 250px;
}

/*Our Services*/
.nav.nav-pills{
    gap: 10px;
    margin-bottom: 120px;
}
.nav.nav-pills .nav-item{
    width: 19.38%;
}
.nav.nav-pills .nav-item .nav-link{
    border-radius: 20px;
    background-color: #FFF;
    padding: 30px !important;
    color: #1E1E1E;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    letter-spacing: 0.48px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.nav.nav-pills .nav-item .nav-link.active{
    color: #ffffff;
    background-color: #28469F;
}
.nav-link .active-icon, 
.nav-link .reg-icon{
    transition: all 0.3s ease-in-out;
}
.nav-link .active-icon{
    display: none;
}
.nav-link.active .reg-icon{
    display: none;
}
.nav-link.active .active-icon{
    display: block;
}
.box001{
    border-radius: 40px;
    background: #FFF;
    box-shadow: 30px 30px 40px 0 rgba(40, 70, 159, 0.10);
    padding: 0px 60px 60px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.sub-title2{
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}
.box001 .sub-title2{
    color: #28469F;
}
.box001 .content{
    padding-top: 60px;
    flex: 1;
}
.img-part{
    border-radius: 40px;
    overflow: hidden;
    margin-top: -60px;
    flex: 1;
}

/*Roofing, Siding, Gutters*/
.rsg-box{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 2px solid rgba(40, 70, 159, 0.20);
    background-color: #FFF;
    padding: 10px 8px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.rsg-box .rsg-img-box{
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}
.sub-title3{
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
    letter-spacing: 0.48px;
}
.rsg-box .content{
    padding: 0px 12px;
}
.rsg-box .content .sub-title3{
    color: #28469F;
    margin-bottom: 10px;
}
.rsg-box .btn-sec{
    padding: 0px 12px;
}

/*Quality Exterior & Restoration*/
.drr-img-box{
    border-radius: 100px 30px 100px 100px;
    border: 10px solid #FFFFFF;
    box-shadow: 20px 30px 60px 5px rgba(35, 53, 93, 0.10);
    overflow: hidden;
    width: fit-content;
}

/*Hero Section*/
.hero-sec{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(30, 30, 30, 0.00) 0%, #1E1E1E 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.z-2{
    position: relative;
    z-index: 2;
}
.hero-review-sec{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}
.hero-title{
    color: #FFF;
    font-family: Lalezar;
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
}
.hero-text{
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.4px;
    margin-bottom: 40px;
}
.hero-btn-sec{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-btn-sec .btn-theme:hover{
    color: #1E1E1E;
    background-color: #ffffff;
}
.hero-call-btn{
    border-radius: 16px;
    border: 1px solid #FFF;
    padding: 9px 20px 9px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    transition: all 0.3s ease-in-out;
}
.hero-call-btn:hover{
    background-color: #ffffff;
    color: #1E1E1E;
}
.hero-call-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: #28469F;
}
.logo-sec{
    display: flex;
    align-items: center;
    gap: 40px;
}
.contact-form-box{
    border-radius: 0 0 60px 60px;
    background: #FFF;
    box-shadow: 20px 14px 54px 0 rgba(0, 0, 0, 0.55);
    padding: 20px 30px 30px;
    position: relative;
}
.contact-form-box .black-box{
    border-radius: 0 0 20px 20px;
    background: #1E1E1E;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    margin-top: -40px;
    margin-bottom: 30px;
}
.cust-form .form-control{
    border-radius: 10px;
    border: 1px solid #1E1E1E33;
    color: #595959;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    padding: 16px 20px;
}
.form-control:focus{
    box-shadow: none;
}
.radio-btn-sec{
    display: flex;
    align-items: center;
    gap: 30px;
}
.cust-form .form-label{
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 12px;
}
.cust-form .form-check-label{
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}
.form-check-input:focus{
    box-shadow: none;
}
.btn-theme.btn-black{
    background-color: #1E1E1E;
    width: 100%;
}
.btn-theme.btn-black:hover{
    background-color: #28469F;
}
textarea{
    resize: none;
}

/*Testimonail*/
.testimonial-img-box{
    border-radius: 60px 0 0 60px;
    overflow: hidden;
    margin-left: -154px;
}
.testimonial-content{
    margin-top: 100px;
    padding: 150px 350px 150px 150px;
    border-radius: 0 0 60px 0;
    background: #28469F;
}
.owl-carousel .owl-item img {
    width: auto;
}
.quote{
    margin-bottom: 30px;
}
.review-text{
    color: #FFF;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px;
}
.review-profile{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.profile-box{
    min-width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
}
.profile-name{
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}
.year-ago-text{
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}
.testimonial-star-sec{
    display: flex;
    align-items: center;
    gap: 10px;
}
.owl-prev, 
.owl-next{
    min-width: 60px;
    height: 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: #28469F;
    border-radius: 50% !important;
    border: 1px solid #ffffff !important;
    margin: 0px !important;
    transition: all 0.3s ease-in-out;
}
.owl-prev:hover, 
.owl-next:hover{
    background-color: #000000 !important;
    opacity: 1;
    border-color: #000000 !important;
}
.owl-prev img, 
.owl-next img{
    width: 10px;
    height: 20px;
    margin-top: -3px;
}
.owl-prev img{
    margin-right: 3px;
}
.owl-next img{
    margin-left: 3px;
}
.owl-nav{
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 34px;
    right: 0px;
}

/*Gallery*/
/* ---------- GENERAL CARD STYLING ---------- */
.ba-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ---------- CUSTOM BEFORE/AFTER SLIDER ---------- */
.comparison {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.comparison figure {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    background-size: cover;
    background-position: center;
}

.comparison .divisor {
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
}

/* Divider white lines top+bottom */
.comparison .divisor::before,
.comparison .divisor::after {
    content: '';
    position: absolute;
    right: -2px;
    width: 4px;
    height: calc(50% - 25px);
    background: white;
    z-index: 3;
}
.comparison .divisor::before {
    top: 0;
    box-shadow: 0 -3px 8px 1px rgba(0,0,0,.3);
}
.comparison .divisor::after {
    bottom: 0;
    box-shadow: 0 3px 8px 1px rgba(0,0,0,.3);
}

/* Slider handle */
.comparison .handle {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.comparison .handle::before,
.comparison .handle::after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -6px;
    border: 6px inset transparent;
}
.comparison .handle::before {
    border-right: 6px solid white;
    left: 50%;
    margin-left: -17px;
}
.comparison .handle::after {
    border-left: 6px solid white;
    right: 50%;
    margin-right: -17px;
}

/* Range input */
.comparison input[type=range] {
    -webkit-appearance:none;
    -moz-appearance:none;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background: transparent;
    width: calc(100% + 50px);
    z-index: 6;
    outline: none;
    border: none;
}

.comparison input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 4px solid white;
    box-shadow: 0 0 8px 1px rgba(0,0,0,.3);
}


/*About Us*/
.inner-hero-sec{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0px;
}
.inner-hero-sec::after{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(30, 30, 30, 0.00) 0%, #1E1E1E 100%);
    position: absolute;
    top: 0px;
    left: 0px;
}
.inner-hero-title{
    color: #FFF;
    font-family: Lalezar;
    font-size: 65px;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: 1.3px;
}
.hero-small-title{
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.48px;
    margin-bottom: 8px;
}
.box002{
    border-radius: 40px;
    background: #FFF;
    box-shadow: 30px 30px 40px 0 rgba(40, 70, 159, 0.10);
    position: relative;
}
.box002 .contact-form-box {
    border-radius: 0 0 40px 60px;
    background: #FFF;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.05);
    padding: 20px 30px 30px;
}
.clb-img{
    border-radius: 0px 0px 0px 40px;
    overflow: hidden;
}
.contact-form-box::before{
    content: '';
    width: 31px;
    height: 20px;
    background: #323232;
    clip-path: polygon(
        100% 0%,   /* angled top-left point */
        100% 0%,  /* top-right */
        100% 100%,/* bottom-right */
        0% 100%   /* bottom-left */
      );
    position: absolute;
    top: -20px;
    left: 0px;
}
.contact-form-box::after{
    content: '';
    width: 31px;
    height: 20px;
    background: #323232;
    clip-path: polygon(
        0% 100%,   /* angled top-left point */
        0% 100%,  /* top-right */
        100% 100%,/* bottom-right */
        0% 0%   /* bottom-left */
    );
    position: absolute;
    top: -20px;
    right: 0px;
}
.box002 .content-sec{
    padding: 60px 30px 0px 60px;
}
.about-page .img-box{
    width: 50%;
    border-bottom-right-radius: 0px;
    height: auto;
}
.about-page .sec-pad{
    width: 50%;
}
.about-page .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* maintains aspect ratio without stretching */
    object-position: center; /* optional – controls crop point */
}


/*Roofing Page*/
.hero-call-btn.br-blue{
    border-color: #28469F;
    color: #28469F;
}
.hero-call-btn.br-blue:hover{
    border-color: #28469F;
    background-color: #28469F;
    color: #ffffff;
}
.left-side-img{
    border-radius: 0 60px 60px 0;
    overflow: hidden;
}
.right-side-img{
    border-radius: 60px 0 0 60px;
    overflow: hidden;
}
.blue-bg-sec{
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    border-radius: 60px 0px 0px 60px;
    background: #28469F;
    padding: 100px 0px 0px;
    color: #ffffff;
}
.cust-pad{
    padding: 0px 150px;
}
.bottom-pad{
    padding-bottom: 94px;
}
.bottom-mrg-minus{
    margin-bottom: -94px;
}
.blue-box2{
    padding: 150px 0px 415px;
    position: relative;
}
.blue-box2::after{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #28469F;
    border-radius: 60px 0 0 60px;
    width: 95%;
    height: 100%;
}
.z-1{
    position: relative;
    z-index: 1;
}
.four-box{
    margin-top: -315px;
}
.w-fit{
    width: fit-content;
}
.img-box.left{
    border-radius: 60px 0px 0px 60px;
    width: 42%;
}
.four-box.cust-mrg-top{
    margin-top: -500px;
}
.shingle-view-box{
    border-radius: 30px;
    border: 2px solid rgba(40, 70, 159, 0.20);
    background: #FFF;
    padding: 45px 50px;
}


/*Contact Us Page*/
.inner-hero-sec.bg-blue{
    position: relative;
}
.inner-hero-sec.bg-blue::before{
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40%;
    height: 100%;
    background-color: #28469F;
    z-index: 1;
}
.contact-title{
    font-family: Lalezar;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: 0.9px;
    margin-bottom: 22px;
}
.contact-details .social-icon-box{
    background-color: #ffffff;
}
.contact-details .social-icon-box:hover{
    background-color: #000000;
}
.contact-details .social-icon-box:hover svg path{
    fill: #ffffff;
}
.contact-form .contact-form-box{
    box-shadow: none;
    border-radius: 60px;
}
.contact-form .contact-form-box::before, 
.contact-form .contact-form-box::after{
    display: none;
}
.contact-form .contact-form-box .btn-theme.btn-black{
    width: 440px;
}
.topic-box{
    border-radius: 30px;
    border: 2px solid rgba(40, 70, 159, 0.20);
    background: #FFF;
    padding: 40px 28px;
}
.topic-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.topic-ul li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.blog-box{
    padding: 45px 48px;
    border-radius: 30px;
    border: 2px solid rgba(40, 70, 159, 0.20);
    background: #FFF;
    margin-bottom: 30px;
}
.blog-title{
    color: #28469F;
    font-size: 32px;
    font-weight: 800;
    line-height: 42px;
    letter-spacing: 0.64px;
    margin-bottom: 10px;
}
.btn-read-more{
    color: #28469F;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.36px;
    padding: 0px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.btn-read-more:hover{
    color: #28469F;
}
.btn-read-more::after{
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: translateX(-0%);
    width: 0px;
    height: 2px;
    background-color: #28469F;
    transition: all 0.3s ease-in-out;
}
.btn-read-more:hover::after{
    width: 100%;
}
.blog-sec .blog-box:last-child{
    margin-bottom: 0px;
}
.load-more{
    text-align: center;
    margin-top: 80px;
}
.load-more .btn-theme{
    background-color: transparent;
    border: 2px solid #28469F !important;
    color: #28469F;
}
.load-more .btn-theme:hover{
    color: #FFFFFF;
    background-color: #28469F;
    border-color: #28469F;
}
.blog-box .sub-title3{
    font-weight: 600;
    margin-bottom: 10px;
}
.tag-sec{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.tag-box{
    color: #28469F;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.6px;
    border-radius: 8px;
    background-color: #D7E1FF;
    padding: 10px 18px;
}
.post-img{
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 535px;
}
.post-single .blue-box2{
    padding-bottom: 605px;
}
.post-single .four-box{
    margin-top: -600px;
}
.map-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}






/*Instant Quote Page*/
.instant-quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 30px 30px 40px 0 rgba(40, 70, 159, 0.12);
    background: #FFF;
    border: 2px solid rgba(40, 70, 159, 0.12);
}
.instant-quote-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 600px;
}

/*Common Css*/
.bold{
    font-weight: 700;
}
.semi-bold{
    font-weight: 600;
}
.medium{
    font-weight: 500;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-20{
    margin-bottom: 20px;
}