section#basicwire-banner {
   
    clip-path: polygon(
    13% 0%,      /* top-left diagonal start */
    100% 0%,    /* top-right */
    100% 67%,   /* right side before diagonal */
    91% 100%,   /* bottom-right diagonal */
    0% 100%,    /* bottom-left */
    0% 55%      /* left side before diagonal */
  );
}

.bright-img-triangle:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-bottom: 60px solid #fbfafa;
    border-left: 60px solid transparent;
    border-right: 0px solid transparent;
    border-top: 0 !important;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    transition: ease-in-out 0.3s all;
}


.bright-img-triangle:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-bottom: 0 !important;
    border-left: 0px solid transparent;
    border-right: 60px solid transparent;
    border-top: 60px solid #fbfafa;
    position: absolute;
    left: 0;
    top: 0;
    transition: ease-in-out 0.3s all;
}

.bright-img-triangle {
  overflow: hidden;
}

.bright-img-triangle:hover:after {
  left: -100px;
}

.bright-img-triangle:hover:before {
  right: -100px;
}

.bright-img-triangle div {
  transition: ease-in-out 0.6s all !important;
}

 
.bright-img-triangle.reverso:after {
    border-bottom: 60px solid #fbfafa !important;
    border-top: 0 !important;
    bottom: 0;
    top: unset !important;
    left: 0px !important;
    right: unset;
}

.bright-img-triangle.reverso::before {
    top: 0 !important;
    bottom: unset !important;
    border-bottom: 0 !important;
    border-top: 60px solid #fbfafa !important;
    right: 0 !important;
    left: unset !important;
}

.bright-img-triangle.reverso:hover:before {
  right: -100px !important;
}

.bright-img-triangle.reverso:hover:after {
  left: -100px !important;
}
 .questions .btns a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-bottom: 0 !important;
    border-right: 0px solid transparent;
    border-left: 24px solid transparent;
    border-top: 24px solid #000000e8;
    position: absolute;
    right: 0;
    top: 0;
    transition: ease-in-out 0.3s all;
}
 .questions .btns::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-bottom: 24px solid #766923e3;
    border-right: 24px solid transparent;
    border-left: 0px solid transparent;
    border-top: 0 !important;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    transition: ease-in-out 0.3s all;
}
.bright-text {
    background: linear-gradient(90deg, #ea7159 0%, #e24d63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
	font-weight:600;
}



/* custom css drawn wire */

 .drawn-wire-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0px;
            padding: 4px;
        }

  .drawn-wire-card {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    min-height: 500px;
    padding: 42px 30px 0px 38px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column;
    gap: 238px;
    width: 430px;
    justify-content: start;
    cursor: pointer;
	  border-bottom: 1px solid #e1dfdf;
		    border-right: 1px solid #e1dfdf;

}
.drawn-wire-grid .drawn-wire-card:nth-child(3), .drawn-wire-grid .drawn-wire-card:nth-child(6) {
    border-right: none;
    /* border-bottom: none; */
}
.drawn-wire-grid .drawn-wire-card:nth-child(4), .drawn-wire-grid .drawn-wire-card:nth-child(5),.drawn-wire-grid .drawn-wire-card:nth-child(6){
	     border-bottom: none; 

	
}
        /* White overlay that fades to reveal image on hover */
        .drawn-wire-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #f7f4f4;
            opacity: 1;
            transition: opacity 0.45s ease-in-out;
            z-index: 1;
        }

        .drawn-wire-card:hover::before {
            opacity: 0;
        }

        /* Content styling */
.drawn-wire-card .drawn-wire-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
 }
        .drawn-wire-card .drawn-wire-content h3 {
            color: #d32f2f;
            font-size: 40px;
             margin-bottom: 10px;
            transition: color 0.3s ease;
					line-height:50px;
        }

        .drawn-wire-card .drawn-wire-content p {
            color: #666;
            font-size: 22px;
            margin-bottom: 20px;
					font-weight:500;
            transition: color 0.3s ease;
        }

        /* Learn More button container */
        .drawn-wire-card .learn-more {
            position: relative;
            z-index: 2;
            margin-top: 20px;
					
					
					 display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 38px 0 0px;
        }
 
        .drawn-wire-card .drawn-wire-link {
            color: #000;
            display: block;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            padding: 12px 24px;
            transition: color 0.3s ease;
        }

        .drawn-wire-card .drawn-wire-link span {
            transition: transform 0.3s ease;
        }

        /* Hover State - show featured image on CARD background and invert text */
        .drawn-wire-card:hover .drawn-wire-content h3,
        .drawn-wire-card:hover .drawn-wire-content p {
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
        }

        .drawn-wire-card:hover .drawn-wire-link {
            color: #fff;
			
        }

        .drawn-wire-card:hover .drawn-wire-link span {
            transform: translateX(5px);
        }

.drawn-wire-card:hover .learn-more{
	background:linear-gradient(90deg, #e24d63 0%, #ea7159 100%);
}

.contact-us.btns a:after,.contact-us.btns a:before {
    display: none;
}
 
.contact-us.btns::after{
	display:none;
}
.contact-us.btns a {
    transition: 0.6s ease-in-out;
	 clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
	text-decoration:none;
}
.drawn-wire-card:hover .learn-more{
	 clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% 100%,
        20px 100%,
        0 calc(100% - 20px)
    );
}

.contact-us.btns a:hover{
	clip-path:none;
    transition: 0.6s ease-in-out;
}
div#questions {
    clip-path: polygon(
        55px 0,
        100% 0,
        100% calc(100% - 56px),
        calc(100% - 61px) 100%,
        0 100%,
        0 55px
    );
}

.learn-more::after {
  content: "";
  display: inline-block;
  width: 16px;              /* adjust size */
  height: 16px;
  margin-left: 8px;
  background: url('/wp-content/themes/hello-elementor-child/image/right-arrow-black.png')
              center / contain no-repeat;
}

.drawn-wire-card:hover .learn-more::after{
  background-image: url('/wp-content/themes/hello-elementor-child/image/right-arrow-white.png');
}

        @media (min-width: 1440px) {


.img-triangle.sm:after {
    border-left: 0px solid transparent !important;
    border-bottom: 50px solid #fbfafa !important;
}
}
        /* Responsive Design */
        @media (max-width: 768px) {
            .drawn-wire-grid {
                grid-template-columns: repeat(2, 1fr);
            }
					
					.bright-img-triangle.reverso:after {
    border-bottom: 20px solid #fbfafa  
}
	.bright-img-triangle.reverso:after {
    border-bottom: 20px solid #fbfafa !important;
   
}
					.bright-img-triangle:after {
  
    border-right: 20px solid transparent;
 
}
     .bright-img-triangle.reverso::before {
    
    border-top: 20px solid #fbfafa !important;
   
}

 				.bright-img-triangle.reverso::before {
  
    border-top: 35px solid #fbfafa !important;
  
}
					div#questions {
    clip-path: polygon(
        35px 0,
        100% 0,
        100% calc(100% - 35px),
        calc(100% - 35px) 100%,
        0 100%,
        0 35px
    );
}
					.bright-img-triangle:before {
    border-left: 25px solid transparent;
}
					
.bright-img-triangle.reverso::before {
    border-top: 25px solid #fbfafa !important;
}					
		.contact-us.btns a {
    transition: 0.6s ease-in-out;
    clip-path: polygon(
        0 0,
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 9px)
    );
    text-decoration: none;
}			
}

        @media (max-width: 480px) {
            .drawn-wire-grid {
                grid-template-columns: 1fr;
            }
        }
