/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.container.grid-container {
  max-width: 100%;
}
.elementor-123 .elementor-element.elementor-element-d71b94a .uc_more_btn {
  font-family: urbanist;
}
.elementor-123 .elementor-element.elementor-element-e1bdcfc .uc_more_btn {
	font-family: urbanist;
}
.elementor-123 .elementor-element.elementor-element-cb2bf6c .uc_more_btn {
	font-family: urbanist;
}
#uc_flip_box_elementor_890d656 .ue-flip-box__container.uc-show .ue-flip-box__panel--back {
  z-index: 1;
  border-radius: 12px;
}
.custom-short-description {
    font-size: 14px;
    color: #fff;
    margin: 5px 0;
    line-height: 1.4;
}
.enquiry-now-btn {
  padding: 12px 25px;
  background: white;
  border-radius: 25px;
  font-size: 16px;
  font-family: 'poppins', sans serif;
  color: black;
  font-weight: 500;
}
.enquiry-now-btn:hover{
	background: #CFB88E;
}



.custom-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);        /* Mobile pe 2 columns */
    gap: 30px;
    justify-items: center;
    align-items: center;
    margin: 40px 0;
    font-family: 'Poppins', sans-serif;
    padding: 20px 0;
}

.custom-feature-item {
    text-align: center;
    color: #ffffff !important;                    /* White text */
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);             /* Agar icon dark hai to white ban jayega */
}

.custom-feature-item:hover .feature-icon img {
    transform: scale(1.15);
}

.feature-title {
    margin: 12px 0 0 0 !important;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important;
    line-height: 1.4;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .custom-features-grid {
        grid-template-columns: repeat(4, 1fr);        /* 4 columns on bigger screens */
        gap: 40px;
    }
    
    .feature-icon img {
        width: 70px;
        height: 70px;
    }
    
    .feature-title {
        font-size: 15px;
    }
}

/* Extra large screens */
@media (min-width: 1024px) {
    .custom-features-grid {
        gap: 50px;
    }
}




.lightborder {
    position: relative;
}

.lightborder .elementor-divider-separator {
    width: 100%;
    height: 2px;
    background: transparent;
    position: relative;
    overflow: visible;
}

/* Main bright line */
.lightborder .elementor-divider-separator::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 20%,
        rgba(255,255,255,1) 50%,
        rgba(255,255,255,0.3) 80%,
        rgba(255,255,255,0) 100%
    );
}

/* Glow effect */
.lightborder .elementor-divider-separator::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    transform: translateX(-50%);
    width: 90%;
    height: 12px;
    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.5) 0%,
        rgba(255,255,255,0.2) 40%,
        rgba(255,255,255,0) 80%
    );
    filter: blur(6px);
}