html{
	font-size: 62.5%;  scroll-behavior: smooth;
}
@font-face{
	font-family:'poppins_regular';
	src:url('../fonts/Poppins-Regular.ttf');
}
@font-face{
	font-family:'poppins_medium';
	src:url('../fonts/Poppins-Medium.ttf');
}
@font-face{
	font-family:'poppins_semibold';
	src:url('../fonts/Poppins-SemiBold.ttf');
}
@font-face{
	font-family:'poppins_bold';
	src:url('../fonts/Poppins-Bold.ttf');
}

@font-face {
  font-family:'FontAwesome';
  src:url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2');
  font-weight: normal;
  font-style: normal;
}
body{
	box-sizing: border-box;
	overflow-x: hidden!important;


}
.container-fluid, .row{
	margin:0px;
	padding:0px;
}

:root{
	--blue:#00b5ff;
	--purple:#da00f4;
	--orange:#ff8108;
	--yellow:#feda02;
	--graybg:#F4F6FC;
	--black:#181835;
	--navbar_height:8.5rem;
	--poppins_regular:'poppins_regular';
	--poppins_medium:'poppins_medium';
	--poppins_semibold:'poppins_semibold';
	--poppins_bold:'poppins_bold';
}
.navbar{
	background:white;;
	/* padding:.5rem 0; */
	 background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent white */
    color: black; /* Menu link color to match logo */
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
height: var(--navbar_height);
}
.main_logo{
	max-width:25rem;
}
.my_menu{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-link{
	font-size:1.6rem;
	font-family: var(--poppins_semibold);
	color:var(--black);
	text-transform: capitalize;
	letter-spacing: .1rem;
	/* margin-right:2.5rem; */
	position: relative;
	transition: color 0.3s ease; /* Smooth color transition */
	margin-bottom: 1rem;
}
.nav-link:hover{
	color:var(--purple);
}
.close_icon{
	margin-right: 3rem;
	cursor: pointer;
}
/*.nav-link::after {
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	background-color: var(--purple);
	left: 10%; 
	bottom: -3px;
	transition: width 0.3s ease; 
}

.nav-link:hover::after {
	width: 70%; 
}*/
.navbar .offcanvas.show {
	background: var(--graybg);
	max-width: 30rem;
	
}
.get_quote_btn{
	background:var(--purple);
	color:white;
	opacity: .9;
	text-transform: capitalize;
	font-family: var(--poppins_semibold);
	border-radius: 3.5rem;
	padding:1.2rem 3.2rem!important;
	display: inline-block;
		transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for smooth animation */
	font-size: 1.7rem;
	margin-right: 0;
}
.get_quote_btn:hover{
	background: var(--blue);
	color:white;
	text-decoration:none;
	transform: translateY(-3px); /* Slight lift on hover */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow on hover */
	
}
.download_btn i{
	margin-right: .7rem;
}

.menu_icon{
	font-size: 2rem;
	cursor: pointer;
	color:var(--purple);
	
}
.menu_icon:hover{
	color:var(--blue)
}
.nav_flex{
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}
.nav_mobile_right{
	display: none;
}
.my_menu{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu_btn{
	background:white;
	color:var(--blue);
	border-radius: 2.5rem;
	padding:.7rem 2.5rem!important;
	display: inline-block;
	margin-right: 1rem!important;
	margin-bottom: 0!important;
}
.menu_btn:hover{
	background: var(--lightblue);
	color:white;
	text-decoration:none;
}
.navbar-toggler:focus{
	outline: none;
	box-shadow: none;
}
.sticky_navigation {
	background-color: rgba(255, 255, 255, 0.9); 
	margin-top:0rem!important;  
	width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown{
	0%{
	  opacity: 0;
	  -webkit-transform: translateY(-20px);
	 }
	  100% {
	  opacity: 1;
	  -webkit-transform: translateY(0);
	  }
  }    
   
		
  .fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
  }
  
/*2. hero section*/
.hero_section {
	width: 100%;
	height: auto;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .8)), /* Gradient overlay */
		url(../images/hero_image.jpg);
	background-size: cover;
	padding-bottom: 3rem;
	background-position: center;
	margin-top:var(--navbar_height);
	padding:5rem 0

}
.hero_heading{
	font-size:4.5rem;
	line-height: 5.5rem;
	font-family: var(--poppins_semibold);
	color:white;
	 text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7), /* Soft shadow for depth */
        0 0 10px rgba(255, 255, 255, 0.5); /* Glow effect for clarity */

}

.main_hero_section{
	padding-top: calc(var(--navbar_height) + 3rem );
	
}
.brand_color{
	color:white;
	position: relative;
	display: inline-block;
	z-index: 1;
}
.brand_color::after {
    content: "";
    position: absolute; /* Position relative to .brand_color */
    left: 0; /* Align to the left */
    bottom: -0rem; /* Position below the text */
    width: 99%;
    margin-left: 1%;
    height: 2.4rem;
    background: var(--purple);
    z-index: -1; /* Ensure it appears behind the text */
}
.hero_desc{
	font-size: 2rem;
	line-height: 2.8rem;
	border-left:.8rem solid var(--blue);
	font-family: var(--poppins_regular);
		color:white;
		opacity: .9;
		padding-left:2rem;
		margin:2rem 0;
}
.hero_btn{
	background: var(--pur);
}
.main_hero_section .get_quote_btn{
	font-size: 1.8rem;
	text-transform: capitalize;
	text-decoration: none;
}

/*form */


.main_form{
	width:100%;
	height: auto;
	padding:4rem 2rem;
	border-radius: 2rem;
	background:rgba(0, 0, 0, .7);
}
.inputbox{
	width: 100%;
	height: auto;
	background: white;
	padding:.5rem 1rem;
	border-radius: .5rem;
	border:.1rem solid #dad398;

}
.main_form label{
	color:var(--black);
	font-size: 1.4rem;
	font-family: var(--poppins_medium);
	opacity: .9;
	display: block;
	margin-bottom: 0;
}
.main_form input, select{
	width: 100%;
	font-size: 1.6rem;
	margin-top: -.5rem;
	height:3.5rem;
	border:none;
}
.main_form input:focus{
	outline: none;
}
.main_form input:focus.inputbox{
	border:.1rem solid var(--lightblue);
}

.main_form textarea{
		width: 100%;
		height: 15rem;
	font-size: 1.6rem;
	height:7rem;
	border:none;
}
.main_form input[type="submit"]{
		width: 100%;
		height: 5rem;

		background: var(--purple);
	font-size: 2rem;
	border:none;
	color:white;
	font-family: var(--poppins_semibold);
	text-transform: uppercase;
	border-radius: 2.5rem;
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;

}
.main_form input[type="submit"]:hover{
	background: var(--blue);
	transform: translateY(-3px); /* Slight lift on hover */
}
.sec_tagline{
	font-size: 1.6rem;
	text-transform: uppercase;
	font-family: var(--poppins_semibold);

	font-weight: 700;
	letter-spacing:.2rem;
	color:var(--gray);
	margin:0;
}
.border_radius{
	border-radius: 2.5rem;
}
.sec_heading{
	font-size: 3.6rem;
	font-family: var(--poppins_semibold);
		font-weight: 700;
	color:var(--gold);
}
.sec_desc{
		font-size: 1.7rem;
		font-family: var(--poppins_regular);
		line-height: 2.4rem;
}
.misson_statment{
	display: flex;
	border:.1rem solid var(--blue);
	border-radius: 1.5rem;
	margin-top:1.5rem;
}
.mission_left{
	width:50rem;
	display: flex;
	height: auto;
	border-top-left-radius: 1.4rem;
	border-bottom-left-radius: 1.4rem;
	background: var(--blue);
	align-items: center;
	justify-content: center;
}
.mission_left i{
	font-size: 5rem;
}
.mission_right{
	margin-left:2rem;
	padding:2rem 0;
}
.bigger_one{
	font-size: 2.2rem;
	font-family: var(--poppins_regular);
	font-weight:900;
	font-style: italic;
	letter-spacing: .4rem;
}


.last_one{
	width:6rem!important;
	height:5rem!important;
} 

.signature{
	display: block;
	margin-top:1rem;
	padding-bottom:1rem;
	max-width: 18rem;
	border-bottom: .2rem solid var(--purple);
}
.ceo_text{
	font-size: 1.6rem;
	color:black;
	margin-top: 1rem;
	margin-bottom:0rem;

}
.p_color{
	color:var(--purple);
	margin:0;
}
.py_7{
	padding: 7rem 0;
}
/*service page */
.home_service_card{
	width:auto;
	height: auto;
	background: var(--graybg);
	padding:2rem 2.5rem;
	align-items: center;
	justify-content: center;
	display: flex;
	border-radius: 1rem;
	box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
	border:.1rem solid #f2f2f2;

}
.ser_name{
	font-size: 2.2rem;
	color: var(--black);
	font-family: var(--poppins_semibold);
	border-left: 1rem solid var(--purple);
	padding-left:1rem;
}
.gen_p{
	font-size:1.7rem;
	font-family: var(--poppins_regular);
}
.ser_img {
    border-radius: 1rem;
}
.why_choose_us{
	background:url(../images/why_choose_bg.jpg);
	background-size: cover;
	background-position: center;
}
.ser_right{
	margin-left: .5rem;
}
.ser_right div{
	width: 10rem;
	height: 10rem;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}
.ser_right div i{
	font-size: 3rem;
	color: var(--purple);
}
.home_ser_link{
	font-size: 1.8rem;
	color: var(--black);
	color: var(--purple);

	font-family: var(--poppins_semibold);
}
.home_ser_link i{
	padding-left: 1.5rem;

	 display: inline-block;
    animation: moveLeftToRight 3s ease-in-out infinite;
}
@keyframes moveLeftToRight {
    0% {
        transform: translateX(-10px); /* Start position (off to the left) */
    }
    50% {
        transform: translateX(10px); /* Move to the right */
    }
    100% {
        transform: translateX(-10px); /* Return to the start position */
    }
}
.why_choose_us_card{
	background:transparent;
	border:.1rem solid #e4e5e7; 
	padding:3rem 1.5rem;
}
.why_choose_icon{
	font-size: 4rem;
	color: var(--purple);
}
.why_choose_title{
	font-size: 2.2rem;
	color:var(--black);
	text-transform: capitalize;
	font-family:var(--poppins_bold);
	margin:1.5rem 0;
	font-weight:800;
}
.why_choose_desc{
	font-size: 1.7rem;
	color:black;
	opacity: .9;
	font-family: var(--poppins_regular);
	margin:0;
	line-height: 2.3rem;
}




.banner_type{
	width:100%;
	height: auto;
	padding:4rem 2rem;
	background: linear-gradient(to left, rgba(218, 0, 244, .9), rgba(0, 181, 255, .9)),
    url(../images/banner.jpg);

	border-radius: 2rem;
	background-size: cover;
	background-position: center;
	margin-bottom: 8rem;
	margin-top: 8rem;
}

.protect_btn{
	display:inline-block;
	padding:1.5rem 4rem;
	background:var(--blue);
	color:white;
	font-size: 1.8rem;
	border-radius: 5rem;
	text-decoration: none;
	text-transform: capitalize;
	font-family: var(--poppins_bold);
}

.protect_btn:hover{
	background:var(--black);
	color:white;
}

.text_blue{
	color:var(--blue);
}


.faq-section{
	font-family: var(--poppins_regular);
	background:#f2f2f2;
}

.faq-section .accordian{
	margin-top:3.1rem;
}
.faq-section .accordian .card{
	margin-bottom:1.1rem;
}
.faq-section .card-header:after{
    font-family:'FontAwesome';
    content:"\f068";
    float:right;
    padding-left:5px;
    padding-right:5px;
    margin:0px;
    padding-top:1px;
    padding-bottom:-10px!important;
    cursor: pointer;
    color:var(--purple);
    font-size:1.4rem;
    font-weight: normal;
   
  }
  .faq-section .collapsed:after{
    content:"\f067";
        color:var(--purple);
  }

.faq-section p{
	font-size:18px;
	color:black!important;
}

	
 
  .card-header a{
  	font-size:1.7rem;
  	color:var(--black);
  	padding:0;
  	margin:0;
  	text-decoration: none;
  }
  #content_p p{
  	font-size:1.4rem;
  	padding-left:0px;
  	text-align:left;
  	color:#676767!important;
  	font-weight:normal;
  }
  .faq-section .accordian .card{
  	background: white;
  	border:none;
  	margin-bottom:1.1rem!important;
  }
  .faq-section .card-header{
  	background:var(--gold);
  	vertical-align: middle;
  	height: 5.2rem;
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	cursor: pointer;

  }
  .accordian .card-body{
  	background: white;
  	text-align: left;
  	border-top:1px solid var(--gold);


  }
  .red-text{
  	color:var(--gold);

  }


.main_faq{
/*  max-width: 64.8rem;*/
  margin:0 auto;
}
.accordion-header button{
  font-size: 1.5rem;
  font-family: var(--ubuntu_bold);
  background: var(--white-smoke);
  padding:1.5rem 1rem;
  border-radius: .5rem;
  border:.1rem solid var(--light-grey);
}
.accordion-header{
  border-radius: .5rem;
  background: var(--white-smoke);
}
.accordion-item .accordion-collapse{
  background: var(--white-smoke);
  margin-top: 0!important;
}
.accordion-item{
  margin-bottom: 1.7rem;
}
.accordion-button:focus {
    z-index: 3;
      border:transparent!important;

    outline: 0;
    box-shadow: none;
    color:black;
    background: transparent;
    outline:none;
}
.accordion-body{
  font-size: 1.6rem;
  color: var(--black);
}

.accordion-item{
  border:none;
}

.accordion-button:not(.collapsed){
  box-shadow: none;
  background: transparent;
  color:var(--black);
}

/* Remove the default arrow icon */
.accordion-button::after {
    content: ''; /* Remove default content */
    background-image: none; /* Ensure no background image */
}

/* Default state: collapsed with plus icon */
.accordion-button.collapsed::after {
    content: '';
    background-image: url('../images/cross.png'); /* Replace with your plus icon image */
    background-size: contain; 
    background-repeat: no-repeat;
    background-position: center right; 
    width: 30px; 
    height: 30px;
    margin-left: auto; 
}

.accordion-button:not(.collapsed)::after {
    content: '';
    background-image: url('../images/cross.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    width: 30px;
    height: 30px;
    margin-left: auto;
    transform: rotate(45deg);
}
.accordion-button{
	font-family: var(--poppins_regular);
	font-size: 1.6rem;
}



/*footer */
.space_x{
	color:gray;
	font-size: 1.8rem;
	padding:0 1rem;
}
.forfooter{
	height: auto;
	background:var(--graybg);
font-family: var(--poppins_regular);
	padding:7rem 0rem;
}
.footer_logo{
	max-width:25rem;
}
.footerheading{
	font-size:2rem;
	color:var(--purple);
	font-family: var(--poppins_medium);

	font-weight:500;


}
.fotlink ul{
	padding-left:0px;
	margin-top:20px;
}

.fotlink ul li{
	list-style: none;
}
.fotlink ul li a{
	line-height:30px;
	color:var(--black);
	font-size:1.5rem;
}
.foot-p{
	font-size:1.5rem;


}
.footer_menu_ul li a:hover{
	color:var(--blue);
}
.lifafa{
	font-size:1.5rem;
	color:var(--blue);
}
.ff-link{
	font-size:1.5rem;
	color:var(--black);
	padding-left:5px;
}

footer{
	font-size:1.7rem;
	color:var(--black);
	border-top:.1rem solid gray;
}
.veryfooter a{
	/*margin:0px 10px;*/
	color:var(--black);
}
.veryfooter a:last-child{
	margin:0px 10px;
	margin-right:0px;
}
.ff-link:hover{
	color:var(--blue);
}
.about_section{
	background: var(--graybg);
}
.nav-link.active{
	color:var(--purple)
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
footer{
	padding:1rem 0rem;
}
.copyright_text{
	margin-bottom: 0px;
	font-size:1.5rem;
	color:var(--black);
}
.copyright_text a{
	color:var(--purple);
}
.copyright_text a:hover{
	color:var(--blue);
}
.social_icons{
	padding-left:0px;
	/*margin-top:4rem;*/
	display: block;
	padding-bottom: 0px;
	margin-bottom:0px;

}
.social_icons li{
	list-style: none;
	display: inline;
	margin-bottom:0px;

}
a{
	text-decoration: none;
}
.social_icons li a{
	width:3.5rem;
	height: 3.5rem;
	margin-right:1rem;
	font-size:2rem;
	background:var(--purple);
	line-height: 3.5rem;
	text-align: center;
	border-radius: 100%;
	margin-bottom:0px;
	padding-bottom: 0px;
	color:white;

}
.footer_menu_ul {
    list-style-type: disc; /* Adds a bullet point */
    padding-left: 20px; /* Adjust spacing as needed */
}

.social_icons li a:hover{
	text-decoration: none;
	background: var(--blue);
	color:white;
}
.footer_p{
	font-family: var(--poppins_regular);
	font-size:1.5rem;
	color: var(--black);
}
.privacy_menu li{
	list-style: none;
	display: inline-block;
	color:var(--black);
}
.privacy_menu li a{
	color:var(--black);
	font-size: 1.5rem;
	font-family: var(--poppins_regular);

}
.privacy_menu li a:hover{
	color:var(--blue);
}
.logos-slider .slick-next:before, .logos-slider .slick-prev:before{
	display: none;
}
/*for home*/

.forhomeform form{
	margin-top:1rem;
}
.forhomeform form input, select{
	width:100%;
	display: block;
	height:4.9rem;
	font-size: 1.6rem;
	padding-left:1.6rem;
	background: #f2f2f2;
	border:.1rem solid #e6e6e6;
}
.forhomeform form textarea{
	width:100%;
	display: block;
	background: #f2f2f2;
	border:.1rem solid #e6e6e6;

	height:15.9rem;
	font-size: 1.6rem;
	padding-left:1.6rem;

}
.forhomeform form input::placeholder, .forhomeform form textarea::placeholder{
	font-size:1.6rem;
	line-height: 4.9rem;
	/*padding-left:1rem;*/
}
:focus:is(input,textarea,select){
	box-shadow:0px 0px 1px 1px var(--gold);
	border-radius: 3px;
	outline: none;
}
.forhomeform form input[type="submit"]{
	background:var(--purple);
	color:white;
	font-size:1.8rem;
	letter-spacing: .1rem;
	height: 4.9rem;
	font-family: var(--poppins_semibold);
	text-transform: uppercase;
	margin-bottom:6rem;
	border-radius: 2.5rem;
	max-width: 15rem;
	

}
.forhomeform form input[type="submit"]:hover{
	background: var(--blue);
	transform: translateY(-3px)!important; 
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}
.map_s{
	width:100%;    height: 32rem;
    margin-top: 1rem;
}


@media (min-width: 992px) {
  /* Reset opacity overlay on larger screens */
  .offcanvas-backdrop {
    opacity: 0 !important;
    display: none !important;
  }
}
.footermargintop{
	margin-top: 2rem;
}


/* about page stat */
.general_navbar{
	background-color: white;
}
.common_space{
	margin-top: var(--navbar_height);
}

.main_breadcrumb{
	background:#F4F6FC;
	padding:4rem 0;
}
.main_breadcrumb ul{
	padding:0;
	margin:0;
}
.main_breadcrumb ul li{
	list-style: none;
	display: inline-block;
	margin:0 1rem;
	font-size: 1.8rem;
	font-family: var(--poppins_medium);
	padding:0;
	color:var(--black);
}
.main_breadcrumb ul li a{
	color:black;
}
.main_breadcrumb ul li a:hover{
	color: var(--yellow);
}
.main_breadcrumb ul li a.active{
	color: var(--purple);
}

.forhrline{
	letter-spacing: -.7rem;
	margin-right: 1.5rem;
	color: var(--purple);
}

.about_descs, .vms_desci{
	font-family: 'Poppins-Regular';
	font-size: 1.8rem;
}
.vms_card{
	background: white;
	border:.4rem solid var(--graybg);
	padding:3rem 1.5rem;
	border-radius: 1rem;
}
.vms_desci{
	height:19rem;
}
.purple_color{
	color: var(--purple);
}
.vms_title{
	font-size: 2.5rem;
	margin-top:2rem;
	font-family:var(--poppins_semibold);
	color:var(--red);
	border-left:.5rem solid var(--purple);
	padding-left: .5rem;
/*	border-bottom: .5rem solid var(--green);*/
	display: inline-block;
	margin-block-end: 1rem;
}

.vms_icon{
	width:6rem;
	height: 6rem;
	background: var(--purple);
	color:white;
	display: block;
	line-height: 6rem;
	text-align: center;
	font-size: 3rem;
	border-radius: 100%;
	border: .1rem solid var(--yellow);
/*	box-shadow: .1rem .1rem .4rem var(--red);*/
}
.features_section{
	background-color:black;
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/bg-form.png);}

.feature_card{
	padding:3rem 1rem;
	background: #e4e5e7;
	display: flex;
	align-items: center;
	justify-content: center;
}	
.feature_icon_div i{
	font-size: 5rem;
	text-align: center;
	color:var(--purple);
	text-align:center
}
.feature_icon_div{
	display: flex;
	align-items: center;
	justify-content: center;
}
.feature_card{
	max-width: 90%;
	padding:3rem;
	margin:0 auto;
	margin-bottom: 3rem;
	
}

.ml_10{
	margin-left:10%
}
.sub_heading{
	font-size: 2.4rem;
	margin-bottom: .8rem;
	padding-left:1rem;
	border-left:1rem solid var(--purple);
	font-family:var(--poppins_semibold)
}

.sub_sub_heading{
	font-size: 2rem;
	margin-bottom: .8rem;
	padding-left:1rem;
	font-family:var(--poppins_semibold)
}
.sub_four_heading{
	font-size: 1.8rem;
	margin-bottom: .8rem;
	padding-left:1rem;
	font-family:var(--poppins_semibold)
}


.feature_icon_div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
	margin:0 auto;
    background-color: #f5f5f5; /* Light gray background */
    border-radius: 50%; /* Makes the icon circle-shaped */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 10px;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.feature_icon_div i {
    font-size: 30px; /* Icon size */
    color: var(--purple); /* Dark gray color for the icon */
}

.feature_icon_div:hover {
    background-color: #e0e0e0; /* Slightly darker background on hover */
    transform: scale(1.1); /* Scale the icon up slightly on hover */
}

.feature_icon_div i:hover {
    color: #007bff; /* Change icon color on hover */
}
.gen_p i{
	font-size: 1.4rem;
	font-weight: bold;
	font-family:var(--poppins_regular)
}
.text_purple{
	color:var(--purple)
}


.ser_no{
	width:7rem;
	height: 4.2rem;
	background: var(--purple);
	display: inline-block;
	border-radius: 1rem;
	text-align: center;
	color:white;
	font-family: var(--poppins_medium);
	margin-right: 1rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1rem;

}
	
.section_sub_heading{
	font-family: var(--poppins_semibold);
	margin-top:1rem;
	font-size: 3.2rem;
	line-height: 3.5rem;
	text-transform: capitalize;
	font-weight: bolder;
}
.services_main .get_quote_btn{
	font-size: 1.7rem;
}
.forflex{
	display: flex;
	align-items: center;
}

/* free quote  */
.free_quote_hero{
	width:100%;
	height: auto;
	background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),url(../images/get_a_free_qoute.jpg);
	background-size: cover;
	display: flex;
	align-items: center;
	padding:5rem 0
}



.work_process{
	background:url(../images/process-bg.png);
	background-size: cover;
	position: relative;
}
.process_card{
	position: relative;
	text-align: center;
}
.icon_circle{
	width:10rem;
	height: 10rem;
	background:var(--purple);
	border-radius: 100%;
	margin:0 auto;
	box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
	display: flex;align-items: center;justify-content: center;
	
	z-index:2;
	position: relative;
}
.icon_circle i{
	font-size: 4rem;
	color:white;
}
.process_card_title{
	 font-size: 2rem;
	  font-family: var(--poppins_semibold);
	  color:var(--black);
	  text-align: center;
	  display:block;
	  margin:1.5rem 0;
}
.process_card_desc{
	font-size: 1.5rem;
	  font-family: var(--poppins_regular);
	  color:black;
	  	  text-align: center;
}
.number_circle{
	width:4rem;
	height: 4rem;
	background:white;
	border-radius: 50%;
	margin:0 auto;
	box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 3;
	left:33%;
}
.actual_nubr{
	font-size: 1.8rem;
	color:var(--green2);
	  font-family:var(--poppins_semibold);
	  padding:0;
	  margin:0;

}
.curve_line{
	position: absolute;
	width:auto;
	margin-top: 10rem;
	z-index:1;
	overflow: hidden;

}

.form_section{
	max-width: 80%;
	margin:0 auto
}
.quote_form{
	background: var(--graybg);
	padding:3rem 2rem;
	border-radius: 1rem;;
}
.quote_form label{
	font-size: 1.6rem;
	color:var(--black);
	font-family: var(--poppins_semibold);
	display: block;
	text-transform: capitalize;
	margin-bottom: .4rem;
}
.quote_form input{
	width:100%;
	height: 4.5rem;
	border:none;
	border:.1rem solid rgb(242, 234, 234);
	font-size: 1.7rem;
	padding-left:.5rem;
	font-family: var(--poppins_regular);
}
.quote_form select{
	width:100%;
	height: 4.5rem;
	border:none;
	border:.1rem solid rgb(242, 234, 234);
	font-size: 1.7rem;
	padding-left:.5rem;
	margin-top: .4rem;
	font-family: var(--poppins_regular);
}
.quote_form_btn input{
	width: 20%;
		height: 5rem;
	display: block;
	margin:0 auto;;
		background: var(--purple);
	font-size: 2rem;
	border:none;
	color:white;
	font-family: var(--poppins_semibold);
	text-transform: uppercase;
	border-radius: 2.5rem;
	margin-top: 2rem;
}
.quote_form_btn input[type="submit"]{
	transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;

}
.quote_form_btn input[type="submit"]:hover{
	background:var(--blue);
	transform: translateY(-3px)!important; 
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}
.bg_gray{
	background: var(--graybg);
}
.home_service_card .gen_p{
	height: 14rem;;
}.whatsapp_float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
  }

  /* WhatsApp Icon */
  .whatsapp-icon {
	font-size: 30px;
  }
  
  /* Caption Above Icon */
  .whatsapp_caption {
	position: absolute;
	bottom: 70px;
	right: -10px;
	background-color: #25d366;
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: opacity 0.3s ease;
	font-family: var(--poppins_semibold);
  }
  
  /* Hover Effects */
  .whatsapp_float:hover .whatsapp_caption {
	opacity: 1;
  }
  
  .whatsapp_float:hover {
	transform: scale(1.1);
	color: var(--black);
  }
  
  /* Floating Wave Animation */
  .whatsapp_float::before,
  .whatsapp_float::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(37, 211, 102, 0.3); /* Lighter green for wave effect */
	transform: translate(-50%, -50%) scale(1);
	opacity: 0;
	animation: wave 2s infinite;
  }

  .whatsapp_float::after {
	animation-delay: 1s;
  }

  @keyframes wave {
	0% {
	  transform: translate(-50%, -50%) scale(1);
	  opacity: 0.5;
	}
	100% {
	  transform: translate(-50%, -50%) scale(1.8);
	  opacity: 0;
	}
  }

  .whatsp_color{
	color: #25d366;
	font-family: var(--poppins_semibold);
  }
  .text_pages ul li{font-size: 1.7rem;font-family: var(--poppins_regular);}
  .text_pages .sub_sub_heading{
	padding-left:0!important;
	margin:2rem 0;
  }
  .text_pages .sub_heading{
	margin:2rem 0;
  }
.mt_5{
	margin-top: 11rem;
}
.require{
	color:red
}

.thankyou_text{
	color:var(--black);
	font-size:2rem;
	font-family: var(--poppins_semibold);
	text-align: center;
}
.main_thankyou_box{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	
}
.thankyou_contents{
	padding:4rem 2rem;
	width:40rem;
	box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	border-radius: 1rem;
}
.thank_you_logo{
	max-width: 15rem;
}
.check_mark_icon{
	max-width: 7rem;
	display: block;;
	margin:0 auto
}
.thanks_desc{
	font-size: 1.6rem;
	font-family: var(--poppins_medium);
	margin-bottom: 2rem;
}