/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

a {
	text-decoration:none !important;
}
.brand-posts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* Card */
.brand-post-item {
  grid-column: span 2;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

/* Even rows */
.brand-post-item.wide {
  grid-column: span 3;
}

/* Link wrapper */
.brand-post-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

/* Image tag */
.brand-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Image-only zoom */
.brand-post-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.brand-post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  pointer-events: none;
}

.brand-post-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 35px;
}

/* Shine effect */
.brand-post-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
}

.brand-post-item:hover .brand-post-image::after {
  animation: shine 0.8s ease-in-out;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1.5px solid red;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.redText{
	color:#BD1E2D;
}

.step-slider .slick-slide {
	margin: auto 10px;
}
.cir-butn .elementor-button::after {
    position: absolute;
    content: "";
    width: 10%;
    height: 10%;
    border-radius: 50%;
    background-color:#e3000f;
    right: 0;
    bottom: 20%;
    transition: all 0.4s ease;
}

.cir-butn .elementor-button{
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	  
}

.cir-butn .elementor-button:hover::after {
    width: 100%;
    height: 100%;
    transform: scale(2);
}
.cir-butn .elementor-button span
{
	position: relative;
    z-index: 5;
}
.review-slider .slick-dots li button:before{
	color:#fff;
	font-size:18px;
}
[type=button]:focus{
	background-color:transparent !important;
}
.approch-div .image-box{
	min-height:500px;
}
.slick-slider .elementor-widget-image-box{
	min-height:320px;
}
.pop-up-open .elementor-icon-list-icon {
	order:2;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Modal show class */
.modal.show {
	display: block;
	opacity: 1;
}

/* Modal content box */
.modal-content {
	background-color: #fff;
	border-radius: 15px;
	width: 100%;
	max-width: 100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Close button */
.close {
    color: #BD1E2D;
    position: absolute;
    top: 10%;
    z-index: 1;
    right: 5%;
    font-size: 48px;
    cursor: pointer;

}

.close:hover {
	color: #000;
}

.blogs .hfe-post-content{
	margin-top:40px;
}
.blogs .hfe-post-image img{
	border-radius:30px;
}
.apply-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.apply-form .col {
  flex: 1;
}

.apply-form .col-full {
  width: 100%;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
  background: transparent;
}

.apply-form input[type="submit"] {
	background: #0d1b2a;
	color: #fff;
	padding: 10px;
	border: none;
	cursor: pointer;
	font-size: 26px;
}
.apply-form :focus-visible {
    outline: none;
}
.apply-form textarea {
	max-height:150px;
}
.apply-form input[type="submit"]:hover {
  opacity: 0.9;
}
.submit-btn{
	max-width:min-content;
}
.pop-up-open{
	cursor:pointer;
}
/* Responsive */
@media (max-width: 992px) {
  .brand-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-post-item,
  .brand-post-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .brand-posts-grid {
    grid-template-columns: 1fr;
  }
  .approch-div .image-box {
	min-height: auto;
  }
}
