.hero-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-image: linear-gradient(180deg, #040651 10%, #080eb726 90%);    
    z-index: 1;
    opacity: 0.4;
}

.hero-content{
    justify-content: flex-end;
    padding-bottom: 50px;
    z-index: 5;
    min-width: ;
}
.map-container{
    position: relative;
    width: 100%;
    margin-bottom: -100vh;
    height: 100vh;
}
.front-map{
    width: 100%;
    height: auto;
    margin: auto;
        max-width: 80rem;

    top: 0;
    position: relative;
    left: 0;
    
    overflow-x: hidden;
    z-index: ;
}
.front-map svg{
    width: 100%;
    height: auto;
}
.spin-img{
    width: 220px;
    opacity: 0;
    transition: all 0.3s ease;
}
.spin-img.spin-active{
    opacity: 1;
}
.spin-loc{
    width: 200px;
    height: auto;
    transform-box: fill-box;
    transform-origin: center;
    animation: spin 20s linear infinite;
}

@keyframes spin{
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nig-map{
    fill-opacity: 0.2;
}


.hero-bg{
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}
.hero-bg svg{
    z-index: 3;
    height: 100%;
    left: -3%;
    min-width: 110%;
    position: absolute;
}

.transition-path {

    vector-effect: non-scaling-stroke;
    opacity: 0;

}

    
.hero-bg img{
    object-position: center bottom;
    opacity: 0;
}

.about-inner, .services-inner{
    align-self: center;
}


.about-section{
    padding: 80px 0px;
    justify-content: center;
    display: flex;
}

.about-head-title svg, .service-head-title svg, .title-svg{
    height: auto;
    width: 15px;

}
.about-body{
    justify-content: space-between;
    width: 100%;
    gap: 100px;
}
.about-body-column-1{
    width: fit-content;
    gap: 130px;
    justify-content: center;
    align-items: start;
    min-height:600px ;

}
.about-body-column-2{
    width: 35%;
    min-width: 350px;
}

.about-body-column-mid{
    width: 100%;
}

.about-body-column-1 button{
    width: 150px;
    padding: 10px 15px;
    gap: 5px;
    margin-left: -50px;
    color: #7C7F84;
    border: none;
    justify-content: center;
    pointer-events: linked;
    outline: none;
    border-radius: 10px;
    transform: rotate(90deg);
    transition: all 0.6s ease;
}
.about-body-column-1 button:hover{
    background-color: var(--color-secondary);
    color: #FDFDFF;
}
.about-body-column-1 button svg{
    opacity: 0;
    align-self: center;
}
.about-body-column-1 button.tab-active{
    background-color: var(--color-secondary);
    color: #FDFDFF;
}
.about-body-column-1 button.tab-active svg{
    opacity: 1;
    transition: all 0.6s ease;
}
.about-link{
    text-decoration: none;
    outline: none;
    width: fit-content;
    border: none;
}

.about-btn{
    padding: 10px 15px;
    position: relative;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.about-btn-txt{
    padding: 12px 25px;
    position: relative;
    overflow: hidden;
    border-right: 0.8px solid #fdfdffd8;
}
.about-btn-svg{
    transition: all var(--transition);  
    position: relative;
    padding: 12px 15px ;
    overflow: hidden;
    z-index: 2;
    border-radius: 5px;
    
}
.about-btn-svg::before{
    content: '';
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    transform: translateX(-100%);
    transform-origin: left;
    transition: all var(--transition) ;
    z-index: -1;
}
/*.about-btn-svg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2737e9;
    transform: translateX(-100%);
    transform-origin: right;
    transition: all 0.2s ease;
    z-index: 1;
}*/
.about-link:hover .about-btn-svg::before{
    transform: translateX(0);
    opacity: 1;
}
/*.about-link:hover .about-btn-svg::after{
    transform: translateX(0);
}*/

.about-btn svg{
    width: 12px;
    position: relative;
    transition: all var(--transition) var(--transition);
    z-index: -2;
}       
.about-link:hover #about-svg{
    animation: slideIn 0.6s ease forwards;
    animation-delay: 0.3s;
}
/*.about-link:hover #about-arrow{
    fill: var(--color-primary);
}*/

@keyframes slideIn {
    from {
        transform: translateX(-7px);
        opacity: 0;
        z-index: -2;
    }
    to {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
    }
}
.about-body-column-2 div{
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(70px);
    opacity: 0;

}
.about-body-column-2 div.tab-active{
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease;
}



@media (max-width: 767px) {
    .front-map svg{
        min-height: 100vh;
        width: 200%;
        margin-top: 0vw;
        margin-left: -15%;
    }
    .about-content{
        gap: 70vw;
    }
    .about-body.flex-row{
        flex-direction: column;
    

    }
    .about-content.full-height{
        height: auto;
    }
    .about-body{
    justify-items: flex-start;
    }
    .about-body.flex-row.gap-40{
        gap:20px;
    }
    .about-body-column-1{
        width: 100%;
        flex-wrap: wrap;
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;}
    

    .about-body-column-2{
         width: 100%;
         min-height: 420px;
         max-width: 400px;
         min-width: 100%;
}
.about-body-column-1 button{
    margin-left: 0;
    width: 30%;
    min-width: 120px;
    transform: rotate(0);
}
}

@media (max-width: 600px) {
    .front-map svg{
        margin-top: 10vw;
    }
}

@media (max-width: 450px) {
    .front-map svg{
        margin-top: 20vw;
    }
}

@media (max-width: 350px) {
    .front-map svg{
        margin-top: 30vw;
    }
}

@media (max-width: 300px) {
    .front-map svg{
        margin-top: 40vw;
    }
}

@media (max-width: 250px) {
    .front-map svg{
        margin-top: 50vw;
    }
}
/*
@media (max-width: 380px) {
    .front-map svg{
        margin-top: 60vw;
    }
}
@media (max-width: 350px) {
    .front-map svg{
        margin-top: 70vw;
    }
}
    */
.service-section{
    padding: 20% 0 25% 0;
     -webkit-mask-image: 
    url("https://ladrilloslimited.com/wp-content/uploads/2026/02/mask-comp.png");
  mask-image: 
    url("https://ladrilloslimited.com/wp-content/uploads/2026/02/mask-comp.png");

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  /* First mask (top) */
  -webkit-mask-position: top left;
  mask-position: top left;

  -webkit-mask-size: 102% 100%;
  mask-size: 102% 100%;
}

    
    

.service-inner, .blurf-inner{
    margin: auto;
}
.service-body{
    gap: 50px;
    width: 100%;

}
.service-body-column-1{
    width: 50%;
    padding-top: 20px;
    min-height:fit-content ;
}
.service-body-column-2{
    width: 50%;
    min-height: fit-content;
}
.service-item{
    padding: 30px 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(253, 253, 255, 0.2);
    border-top: 1px solid rgba(253, 253, 255, 0.2);
    
}
.service-item-details{
    justify-content: space-between;
    width: 100%;
}
.service-item-content{
    max-width: 350px;
}
.service-item-link{
    width: fit-content;
}
.service-item-link a{
    text-decoration: none;
    outline: none;
    margin: auto;
    width: fit-content;
    border: none;
}
.service-link-txt{
    align-content: center;
    position: relative;
}
.service-link-svg{
    padding:12px 15px ;
    background-color: rgba(253, 253, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
     position: relative;
    transition: all var(--transition) var(--transition);
    z-index: ;

}

.service-link-svg::before{
    content: '';
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-light);
    transform: translateX(-100%);
    transform-origin: left;
    transition: all var(--transition) ;
    z-index: 1;

}
.service-item:hover .service-link-svg::before{
    transform: translateX(0);
    opacity: 1;
}


#service-arrow{
    width: 12px;
    position: relative;
    transition-delay: 0.3s;
    transition: fill 0.3s ease;
     
}
.service-item:hover #service-arrow{
    animation: slideIn 0.6s ease forwards;
    animation-delay: 0.3s;
}
.service-item:hover #service-arrow{
    fill: var(--color-secondary);
}

.service-body-column-2 svg{
    width: 100%;
    height: auto;
    
}

@keyframes slideIn2 {
    from {
        transform: translateX(-7px);
        opacity: 0;
        z-index: -2;
    }
    to {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
    }
}

.service-body-column-2 svg{
    width:100%;
    height: auto;
    top: 20px;
    left: auto;
    position: absolute;
    opacity: 0;
}
.service-item-img-mobile {
    visibility: hidden;
    width: 0;
}
@media (max-width: 1024px) {
    .service-section{
         padding: 20% 0 35% 0;
    }
    .service-body-column-2 svg{
        top: 50%;
        transform: translateY(-50%);
    }
}
@media(max-width:767px) {
    .service-section{
         padding: 20% 0 60% 0;


  -webkit-mask-size: 125% 100%;
  mask-size: 125% 100%;

    }
    .service-item-details.flex-row{
        flex-direction: column;
        max-width:300px;
        height: auto;
    }
    .service-body-column-1{
        width: 100%;
        min-height: auto;
    }
    .service-item-img-mobile {
    visibility: visible;
    width: 35%;
    min-width: 150px;
}
    
}


.blurf-section{
    padding: 120px 0px;
}
.line-decor-blurf{
    top: 250px;
    left: 0;
    width: 50%;
    z-index: 2;
}
.line-decor-blurf, .blurf-slide-1, .blurf-slide-2, .blurf-slide-3{
    opacity: 0;
}

.blurf-content-1{
    gap: 15%;
    width: 100%;
}

.blurf-content-1-left{
    width: 55%;
    
}
.blurf-content-1-right{
    width: 45%;
    gap:40px;
    padding-top: 20px;
}
.blurf-content-1-left-img{
    width: 50%;
    z-index: 2;

}
.blurf-content-1-left-img-2{
    min-height: 60vh;
    width: 50%;
    justify-content: space-between;
    padding-top: 100px;
    gap: 40px;
    z-index: 1;
}
.blurf-slide-1{
    width: 100%;
    border-radius: 10px;
    max-height: 350px;
    overflow: hidden;
    z-index: 6;
}
.blurf-img-1, .blurf-img-4{
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    width: 100%;

}
.blurf-slide-2{
    width: 100%;
    border-radius: 10px;
    height: 50%;
    max-height: 145px;
    overflow: hidden;
}
.blurf-img-2, .blurf-img-5{
    height: 100%;
    width: 90%;
    top: 0;
    right: 0;
    margin-left: auto;
    border-radius: 10px;
    object-fit: cover;
    }
.blurf-img-3, .blurf-img-6{
    max-height: 245px;
    min-height: 100%;
    top: 0;
    left: 0;
    width:90%;
    border-radius: 10px;
}
.blurf-slide-3{
    width: 100%;
    border-radius: 10px;
    height: 60%;
   
    max-height: 250px;
    overflow: hidden;}
.blurf-content img{
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
    
    
}
.blurf-content-2{
    margin-top:100px;
}
.blurf-head-2 h2{
    max-width:50% ;
}
.blurf-sub-content{
    gap: 40px;
}
.blurf-sub-content img{
    width: 50%;
    border-radius: 5px;
    height: auto;
}
.blurf-sub-content-txt{
    align-items: end;
    width: 50%;
}

/* ── Brick Canvas Build Animation ── */
.brick-canvas-wrap{
    width: 50%;
    border-radius: 5px;
    overflow: hidden;
}
.brick-canvas-wrap .brick-source-img{
    /* Invisible but still in flow — sets the wrapper’s intrinsic size */
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    visibility: hidden;
}
.brick-canvas-wrap .brick-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: none; /* shown by JS once ready */
}
@media(max-width: 767px){
    .blurf-section{
    padding: 0px 0px ;
    margin-bottom: 70px;
}
    .blurf-content-1{
        gap: 20px;
    }
    .line-decor-blurf{
        width: 97.5%;
    }
    .blurf-content-1.flex-row, .blurf-sub-content.flex-row, .contact-inner.flex-row{
        flex-direction: column;
    }
    .blurf-content-1-left{
        width: 100%;
        min-height: auto;
        gap: 40px;
        margin-top: 50px;
    }
    .blurf-content-1-right, .blurf-sub-content-txt, .blurf-sub-content img{
        width: 100%;
        padding-top: 0;
    }
    .brick-canvas-wrap{
        width: 100%;
    }
    .blurf-content-1-left-img-2{
        padding-top: 60px;
        min-height: 400px;
    }
    .blurf-img-1, .blurf-img-4{
    max-height: 350px;


}

.blurf-img-2, .blurf-img-5{
    max-height: 125px;
    width: 75%;
    margin: auto;
    border-radius: 10px;
    object-fit: cover;
    }
.blurf-img-3, .blurf-img-6{
    max-height: 200px;
    width:80%;
        border-radius: 10px;

}
     
}

.blank-section{
    height: 100vh;
    max-height: 700px;
}
.blank-inner{
    overflow-x: hidden;
}
.blank-bg{
    border-radius: 10px;
    overflow: hidden;
     height: 100vh;
    max-height: 700px;
}
.blank-bg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: 0px 0px;
    background-image: linear-gradient(90deg, #040651 10%, #080DB7 90%);    
    z-index: 1;
    opacity: 0.4;
}
.blank-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.logo-section{
    width: fit-content;
    padding: 50px 0;
}
.logo-inner{
    width: fit-content;
}
.logos{
    justify-content: space-evenly;
    gap: 40px;
    margin-right: 40px;
    width: fit-content;
    animation: carousel 20s linear infinite;
}

.logos img{
    height: 100px;
    min-width: 150px;
    
    opacity: 0.7;
    object-fit: contain;
    filter: grayscale(1);

}


@keyframes carousel{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.contact-section{
    padding: 100px 0 100px 0;
}
.line-decor{
    top: 100px;
    right: -5%;
    width: 50%;
    height: auto;
}
.line-decor path{
    stroke-dasharray: 9999;
    stroke-dashoffset: 9999;
}
.contact-inner{
    gap: 10%;
    max-width:95rem;
    width: 100%;
}
.contact-column-1{
    width: 60%;
}
.contact-column-2{
    width: 40%;
}
.contact-column-1 .brick-canvas-wrap--contact{
    width: 100%;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}
.contact-column-1 .brick-canvas-wrap--contact .brick-source-img{
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 0 10px 10px 0;
    object-fit: cover;
    display: block;
    visibility: hidden;
}
.contact-column-1 .brick-canvas-wrap--contact .brick-canvas{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 10px 10px 0;
    display: none;
}

.contact-cta{
    width: fit-content;
}
.contact-link {
    text-decoration: none;
    outline: none;
    width: fit-content;
    border: none;
}
.contact-link-txt{
    align-content: center;
    position: relative;
}
.contact-link-svg{
    padding:12px 15px ;
    height: 80%;
    align-self: center;
    align-content: center;
    background-color: rgb(253, 253, 255);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
     position: relative;
    transition: all var(--transition) var(--transition);
    z-index: ;

}


.contact-link-svg::before{
    content: '';
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    transform: translateX(-100%);
    transform-origin: left;
    transition: all var(--transition) ;
    z-index: 1;

}
.contact-cta:hover .contact-link-svg::before{
    transform: translateX(0);
    opacity: 1;
}


#contact-arrow{
    width: 18px;
    position: relative;
    transition-delay: 0.3s;
    fill: rgba(0, 78, 162, 1);
    transition: fill 0.3s ease;
     
}
.contact-link:hover #contact-arrow{
    animation: slideIn 0.6s ease forwards;
    animation-delay: 0.3s;
}
.contact-link:hover #contact-arrow{
    fill: var(--color-primary-light);
}


@media (max-width:767px){
    .contact-column-1{
        width: 97.5%;
    }
    .contact-column-2{
        width: 100%;
    }
    .contact-column-1 .brick-canvas-wrap--contact .brick-source-img{
        width: 97.5%;
    }
    .contact-inner{
        gap: 20px
    }
    .line-decor{
        top: 56%;
        width: 97.5%;
    }
}