/*==================================================
  GRCS - HVAC Remote Engineering Solutions
  style.css
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#0b5ed7;
    --secondary:#00b4ff;
    --orange:#ff9d00;
    --dark:#14213d;
    --light:#f8f9fa;
    --white:#ffffff;
    --gray:#6c757d;
    --border:#e8e8e8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    font-size:15px;
    color:#444;
    line-height:1.7;
    overflow-x:hidden;
    background:#fff;
}
.cta-box 					{ text-align: center;color: #fff }
.cta-box h2				{ text-align: center;color: #fff;padding-top: 20px }
.cta-box h3				{ text-align: center;    color: #fe6a14; }
.container				    { max-width:1240px; margin:auto; }

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}
/*==========================================
        OUR PROCESS
===========================================*/

.our-process{

padding: 35px 0;    margin-top: 65px;

}

.process-card{
    position:relative;
    background:#fff;
    border:1px solid #d8d8d8;
    border-radius:30px;
    text-align:center;
    padding:81px 25px 35px;
    height:100%;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.process-icon{
    position:absolute;
    top:-78px;
    left:50%;
    transform:translateX(-50%);
}

.circle{
       width: 130px;
    height: 130px;
    background:#f7fbff;
    border:16px solid #e8f2ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.circle img{
    width:72px;
}

.step-no{
        position: absolute;
    left: 50%;
    bottom: -23px;
    transform: translateX(-50%);
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background: #2e63b8;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h3{
    font-size: 18px;
    font-weight: 600;
    color: #0d2f73;    font-style: italic;
}

.line{
    width:45px;
    height:2px;
    background:#ff7a00;
    display:block;
    margin: 5px auto 6px;
}

.process-card p{
      font-size: 12px;
}

.process-arrow{
      position: absolute;
    width: 56px;
    height: 2px;
    background: #2e63b8;
       top: -29px;
    left: -41px;

}

.process-arrow::after{
    content:"";
    position:absolute;
    right:-1px;
    top:-5px;
    border-left:10px solid #2e63b8;
    border-top:6px solid transparent;
    border-bottom:6px solid transparent;
}

/* Remove first arrow */

.col-lg:first-child .process-arrow{
    display:none;
}

/*==========================
Responsive
===========================*/

@media(max-width:991px){

.process-arrow{
    display:none;
}

.process-card{
    margin-top:90px;
}

}

@media(max-width:767px){

.process-card{
    padding:100px 20px 30px;
}

.circle{
    width:140px;
    height:140px;
}

.circle img{
    width:60px;
}

.step-no{
    width:55px;
    height:55px;
}

.process-card h3{
    font-size:20px;
}

.process-card p{
    font-size:15px;
}

}

@media(max-width:576px){

.process-card{
    margin-bottom:90px;
}

.circle{
    width:120px;
    height:120px;
}

.circle img{
    width:52px;
}

.process-card h3{
    font-size:18px;
}

}
/*=========================================
    WHY CHOOSE US SECTION
=========================================*/

.why-choose-us{
    padding:80px 0;
    background:#f8fbff;
}

.why-card{
        background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 28px;
    padding: 22px 18px 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    border-color:#0c2d73;
}

/*===========================
Icon
===========================*/

.why-icon{
    min-width:100px;
    margin-top: 9px;

    height:100px;
    border-radius:50%;
    background:#d8ebff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon img{
    width:58px;
    transition:.4s;
}

.why-card:hover .why-icon img{
    transform:scale(1.08);
}

/*===========================
Content
===========================*/

.why-content{
    flex:1;    text-align: left;
}

.why-content h3{
    color:#0b2d77;
font-size: 15px;
    font-weight: 600;
    text-transform:uppercase;
    margin-bottom:10px;    font-style: italic;
}
.circle img { width: 120px }
.title-line{
    display:block;
    width:42px;
    height:2px;
    background:#ff7a00;
    margin-bottom:15px;
}

.why-content p{
    font-size:12px;
    color:#666;
   
    margin:0;
}

/*===========================
Hover Effect
===========================*/

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:#ff7a00;
    transition:.4s;
}

.why-card:hover::before{
    height:100%;
}

/*===========================
Responsive
===========================*/

@media(max-width:1199px){

.why-icon{
    width:120px;
    height:120px;
    min-width:120px;
}

.why-icon img{
    width:65px;
}

}

@media(max-width:991px){

.why-card{
    padding:28px;
}

.why-content h3{
    font-size:20px;
}

.why-content p{
    font-size:16px;
}

}

@media(max-width:767px){

.why-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.why-icon{
    margin-bottom:15px;
}

.title-line{
    margin:15px auto;
}

}

@media(max-width:576px){

.why-choose-us{
    padding:60px 0;
}

.why-card{
    padding:24px;
    border-radius:20px;
}

.why-icon{
    width:100px;
    height:100px;
    min-width:100px;
}

.why-icon img{
    width:55px;
}

.why-content h3{
    font-size:18px;
}

.why-content p{
    font-size:15px;
    line-height:1.7;
}

}
.partner1 {     background-image: url(../images/pa1.png);
    background-repeat: no-repeat;
    margin-top: 31px;
    border-radius: 56px;padding: 35px;    background-position: center; }
.enger11 h2 span {
    color: #fe6a14;
}

.enger11 img {
    margin-top: -24px;
    margin-left: 468px;
}
.benfit {     margin-top: 40px;
 }
.py-5 						{ background: url("../images/chobg.png");background-repeat: no-repeat;margin-top: 20px }
.py-54						{ background: url("../images/probg.png");background-repeat: no-repeat; text-align: -webkit-center;     background-size: cover;padding: 20px;
    background-position: bottom;}
.py-54	img {     width: 353px;padding: 20px; }
.services 					{     margin-top: 35px;}
.ser-1 						{     margin-bottom: 35px;
    text-align: -webkit-center; }
.ser-1 h2					{ font-weight: 700;letter-spacing: 0.8px; font-size: 33px; }
.ser-1 img 					{ width: 383px; }
.in-box {border-bottom: 1.6px solid #cacaca;
    border-right: 1.6px solid #cacaca;
    padding: 20px;
    background-color: #fff;
    position: relative;
    transition: all .5s ease;
    min-height: 290px;
     margin-left: -23px;
}
.in-box h4 {font-size:20px
}
.in-box img {
    display: block;
    margin-bottom: 30px;
    font-size: 42px;
    color: #000;
    position: relative;
    z-index: 1;    width: 66px;
}
.in-box:hover::after {
    transform: rotate(90deg);
    transition: all .3s ease;
}
.in-box:after {
    position: absolute;
  left: 11%;
    top: 18%;
    height: 60px;
    width: 57px;
    background: url("../images/in.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    content: "";
}
.item-details 		{ margin-top: 250px;color: #fff }
.item-details h5		{ margin-bottom: 20px }
.btn1 				{     background: #fe6a14;color: #fff;  padding: 5px 16px 5px 16px;
border-radius: 10px; }
.whwedo 					{ background: url("../images/servicebg.png");background-repeat: no-repeat;padding-bottom: 22px; }
.section-title1 {
margin-top: 44px;
	text-align: -webkit-center;}
.section-title1 img {    width: 353px;}
.section-title1 p {   color: #fff; margin-top: 10px;}



.testimonials      			{ margin-top: 20px }
.shape {
    position: absolute;
          top: -16px;
    right: 86px;
    z-index: 3;
}
.image {
 
    -webkit-animation:spin 10s linear infinite;
    -moz-animation:spin 10s linear infinite;
    animation:spin 10s linear infinite;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #3b4bff, #4f46e5);
  display: flex;
  align-items: center;
     padding: 60px 40px 82px 0px;

  color: #fff;
}

.hero1 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT SIDE */
.hero-left {
  position: relative;
  flex: 1;
}

.main-img img {
  width: 85%;
  border-radius: 20px;
}

.small-img {
    border: 10px solid #fff;
   -webkit-box-shadow: 1px -1px 13px 4px #BDBDBD; 
box-shadow: 1px -1px 13px 4px #BDBDBD;


  position: absolute;
    bottom: -65px;
      right: -5px;
    width: 53%;
  border-radius: 20px;
  overflow: hidden;
 
}

.small-img img {
  width: 100%;
  display: block;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.hero-right h1 {
 font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #e0e7ff;
}

/* FEATURES */
.features1 {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.feature-box1 {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

/* STATS */
.stats1 {
  display: flex;
  gap: 50px;
}

.stats1 h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.stats1 p {
  font-size: 14px;
  color: #c7d2fe;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 40px;
  }

  .small-img {
    position: static;
    margin-top: 20px;
    width: 80%;
    margin-inline: auto;
  }

  .features1 {
    justify-content: center;
  }

  .stats1 {
    justify-content: center;
  }
}
#customers-testimonials {
	.shadow-effect{ min-height: 70vh;	
		background:url("../images/s1.png");
		background-repeat: no-repeat;
        color: #0f0d1d;
        padding: 24px 30px;
        text-align: left;
        border-radius: 5px;
		h5{
			
			font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            letter-spacing: 0.8px;
			
		}
		
	}	
	.shadow-effect11{ min-height: 70vh;	
		background:url("../images/s2.png");
		background-repeat: no-repeat;
        color: #0f0d1d;
        padding: 24px 30px;
        text-align: left;
        border-radius: 5px;
		h5{
			
			font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            letter-spacing: 0.8px;
			
		}
		
	}
		.shadow-effect1{ min-height: 70vh;	
		background:url("../images/s3.png");
		background-repeat: no-repeat;
        color: #0f0d1d;
        padding: 24px 30px;
        text-align: left;
        border-radius: 5px;
		h5{
			
			font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            letter-spacing: 0.8px;
			
		}
		
	}
	.shadow-effect2{ min-height: 70vh;	
		background:url("../images/s4.png");
		background-repeat: no-repeat;
        color: #0f0d1d;
        padding: 24px 30px;
        text-align: left;
        border-radius: 5px;
		h5{
			
			font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            letter-spacing: 0.8px;
			
		}
		
	}
}
	
/*
	.shadow-effect:hover .icon {
    background: #fff;
    border: 1px solid #fff;
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
.owl-carousel .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
	transition: all .3s ease;}
}
*/
}



	.shadow-effect11{-webkit-box-shadow: -1px -2px 38px -19px rgba(247,247,247,0.97); 
box-shadow: -1px -2px 38px -19px rgba(247,247,247,0.97); min-height: 50vh;	
		background-color: #f3f4f6;
        color: #0f0d1d;
        padding: 24px 30px;
        text-align: left;
        border-radius: 18px;
		h5{
			
			font-size: 20px;
            line-height: 26px;
            font-weight: 600;
            letter-spacing: 0.8px;
			
		}
		p{
			font-size: 15px;color: #445375;
		}
	}
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
	line-height: 50px;
	border-radius: 50%;
  position: absolute;
  top: 30%;
	font-size: 20px;
  color: #fff;
	border: 1px solid #ddd;
	text-align: center;
}
.owl-carousel .owl-prev {
  left: -70px;
}
.owl-carousel .owl-next {
  right: -70px;
}


.g-4 { text-align: center; }
.projects-box { 
    width: 185px;
    text-align: center;background: #00142C;
background: linear-gradient(90deg, rgba(0, 20, 44, 1) 0%, rgba(7, 93, 191, 1) 95%);border-radius: 10px; }
.projects-box  h3 { color: #fff;    font-size: 23px;
    margin-top: 11px; }
.projects-box  span { color: #fff;    font-size: 10px; }
.icon img { margin: 19px; }
.section-title{
   margin-bottom: 28px;
	text-align: -webkit-center;}
.section-title img {    width: 353px;}

.section-title h2{
    font-size:31px;    text-align: center;
    font-weight:600;
    color:var(--dark);    width: 388px;
    margin-top: 10px;
}

.section-title span{
    color:#fe6a14;
}

/*=====================================
Header
======================================*/

.header-area{
    position:absolute;
    width:100%;
    left:0;
    top:0;
    z-index:999;
}

.navbar{
    padding:18px 0;
    background:#fff;
  
}

.navbar-brand img{
    height:55px;
}

.navbar-nav .nav-link{
    color:#333;
    font-weight:500;
    padding:10px 18px;
}

.navbar-nav .nav-link:hover{
    color:var(--primary);
}
.header {     margin-top: 6px; }
.logo img { width: 130px; }
.get {     margin-top: 18px; }
.get a{
    width:150px;
    height:39px;
	background: #2b5293;
	border:none;
    display:flex;
    align-items:center;
    justify-content:center;
}
.get a span{
      margin: 11px;    color: #fff;
}
.navbar .btn span{ padding: 10px }
/*=====================================
Hero
======================================*/

.hero-section{
    padding:75px 0 120px;
    position:relative;
    background:    padding-bottom: 120px;
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    overflow:hidden;
}


.hero-section h1{ font-style: italic;
    font-size:33px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-section h5{ font-style: italic;
    font-size:19px;
    font-weight:600;
    color:#fff;
    margin-bottom:20px;
}
.hero-section h5 span{ font-style: italic;
    font-size:19px;
    font-weight:600;
    color:#fe6a14;
    margin-bottom:20px;
}

.hero-section h5 span{
    color:#fe6a14;
}

.hero-section p{
    font-size:17px;
    color:#fff;
    margin-bottom:35px;
}

.hero-section .btn{
  padding: 10px 37px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    background: #fe6a14;
}

.hero-section img{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/*=====================================
About
======================================*/

.about-section{
margin-top: -50px;
}

.about-section h2{
    font-size:30px; font-style: italic;
    font-weight:700;
    margin-bottom:20px;
}

.about-section span{
    color:var(--primary);
}

.about-section p{
    color:#666;
    margin-bottom:25px;
}

.project-box{
    width:220px;
    padding:25px;
    border-radius:12px;
    background:#0d6efd;
    color:#fff;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.project-box h3{
    font-size:42px;
    margin-bottom:5px;
}

/*=====================================
Counter
======================================*/

.counter-section{
    padding:53px 0;    margin-top: 38px;
    background:url("../images/rating.png");    
    text-align: -webkit-center;
}
.counter-section img { width: 54px;
   
}

.counter-box{
    color:#fff;margin-top: 10px;
}

.counter-box i{
    font-size:45px;
    margin-bottom:15px;
}

.counter-box h2{ 
    font-size:36px;  color: #fe6a14;
    font-weight: 600;
}

.counter-box p{
    margin:0;
}

/*=====================================
Expertise
======================================*/

.expertise-section{
  padding: 26px 0;
}

.logo-box{
    background:#fff;
    border-radius:12px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.logo-box:hover{
    transform:translateY(-8px);
}
.enger1 {  margin-top: 44px; }
.enger1 h2 {       font-size: 28px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 20px; }
.enger1 h2 span { color: #fe6a14; }
.enger1 img {     margin-top: -24px;
    margin-left: 286px; }

/*====================================================
    OUR SERVICES SECTION
=====================================================*/

.services-section{
    position:relative;
    padding:90px 0;
    background:url("../images/services-bg.jpg") center center/cover no-repeat;
    overflow:hidden;
    z-index:1;
}

.services-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(7,18,33,.78);
    z-index:-1;
}

.services-section .section-title{
    margin-bottom:45px;
}

.services-section .section-title h2{
    font-size:52px;
    font-weight:800;
    color:#ffffff;
    text-transform:uppercase;
    letter-spacing:1px;
}

.services-section .section-title span{
    color:#ff7a00;
}

/*====================================================
OWL
=====================================================*/

.services-slider{
    position:relative;
}

.services-slider .owl-stage{
    display:flex;
    align-items:center;
}

.services-slider .owl-item{
    padding:10px;
}

/*====================================================
CARD
=====================================================*/

.service-item{
    border-radius:30px;
    overflow:hidden;
}

.service-img{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    height:430px;
    transition:.4s;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.service-img::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.85) 8%,
    rgba(0,0,0,.15) 45%,
    rgba(0,0,0,.05) 100%);
    z-index:1;
}

.service-item:hover img{
    transform:scale(1.12);
}

.service-item:hover .service-img{
    transform:translateY(-8px);
}

/*====================================================
CONTENT
=====================================================*/

.service-content{
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    z-index:5;
}

.service-content h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    line-height:1.35;
    text-transform:uppercase;
    margin-bottom:18px;
}

.read-btn{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:12px 28px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.read-btn:hover{
    background:#ffffff;
    color:#ff7a00;
}

/*====================================================
OWL NAVIGATION
=====================================================*/

.services-slider .owl-nav{
    margin:0;
}

.services-slider .owl-nav button{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:62px;
    height:62px;
    border-radius:50% !important;
    background:rgba(255,255,255,.15)!important;
    color:#fff!important;
    font-size:38px!important;
    transition:.3s;
}

.services-slider .owl-nav button:hover{
    background:#ff7a00!important;
}

.services-slider .owl-prev{
    left:-80px;
}

.services-slider .owl-next{
    right:-80px;
}

.services-slider .owl-nav i{
    line-height:62px;
}

/*====================================================
DOTS
=====================================================*/

.services-slider .owl-dots{
    margin-top:35px;
    text-align:center;
}

.services-slider .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#8a8a8a!important;
}

.services-slider .owl-dot.active span{
    background:#ff7a00!important;
    width:34px;
    border-radius:20px;
}

/*====================================================
SHADOW
=====================================================*/

.service-item{
    box-shadow:0 18px 45px rgba(0,0,0,.28);
}

/*====================================================
RESPONSIVE
=====================================================*/

@media(max-width:1200px){

.services-slider .owl-prev{
    left:-20px;
}

.services-slider .owl-next{
    right:-20px;
}

}

@media(max-width:991px){

.services-section{
    padding:70px 0;
}

.services-section .section-title h2{
    font-size:42px;
}

.service-img{
    height:380px;
}

.services-slider .owl-nav button{
    width:52px;
    height:52px;
    font-size:30px!important;
}

}

@media(max-width:767px){

.services-section{
    padding:60px 0;
}

.services-section .section-title h2{
    font-size:34px;
}

.service-img{
    height:360px;
}

.service-content{
    left:20px;
    right:20px;
    bottom:20px;
}

.service-content h4{
    font-size:18px;
}

.read-btn{
    padding:10px 22px;
    font-size:14px;
}

.services-slider .owl-prev{
    left:-5px;
}

.services-slider .owl-next{
    right:-5px;
}

}

@media(max-width:576px){

.services-section .section-title h2{
    font-size:30px;
}

.service-img{
    height:320px;
    border-radius:20px;
}

.service-item{
    border-radius:20px;
}

.services-slider .owl-nav{
    display:none;
}

}
/*=====================================
Industries
======================================*/

.industry-box{
    text-align:center;
    padding:35px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.industry-box:hover{
    background:#0d6efd;
    color:#fff;
}

.industry-box i{
    font-size:48px;
    margin-bottom:20px;
}

/*=====================================
Why Choose
======================================*/

.why-choose{
    background:#f8f9fa;
    padding:100px 0;
}

.choose-card{
    padding:40px;
    background:#fff;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.choose-card:hover{
    transform:translateY(-10px);
}

/*=====================================
Process
======================================*/

.process-section{
    padding:100px 0;
}

.process-step{
    position:relative;
    padding:30px 15px;
}

.process-step span{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
    margin:auto;
    margin-bottom:20px;
}

/*=====================================
Benefits
======================================*/

.benefits-section{
    padding:100px 0;
    background:#f7fbff;
}

.benefits-section h2{
    margin-bottom:30px;
}

.benefits-section li{
    margin-bottom:15px;
    position:relative;
    padding-left:30px;
}

.benefits-section li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#0d6efd;
}

/*=====================================
CTA
======================================*/

.cta-section{
    background:linear-gradient(90deg,#0d6efd,#00b4ff);
    color:#fff;
    padding:90px 0;
    text-align:center;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    margin-bottom:30px;
}

.cta-section .btn{
    padding:15px 40px;
    border-radius:40px;
    font-weight:600;
}

/*=====================================
Footer
======================================*/

.footer-section{
    background:#032f6b;
    color:#fff;
    padding:80px 0 30px;margin-top: 28px;
}

.footer-section h5{
    margin-bottom:20px;
}

.footer-section a{
    color:#ddd;
}

.footer-section a:hover{
    color:#fff;
}

.footer-section hr{
    border-color:rgba(255,255,255,.15);
    margin:35px 0;
}
.footer-links ul li { list-style: disc;  }
/*=====================================
Responsive
======================================*/

@media(max-width:991px){

.hero-section{
text-align:center;
padding-top:140px;
}

.hero-section h1{
font-size:40px;
}

.about-section{
text-align:center;
}

.project-box{
margin:auto;
margin-top:30px;
}

.section-title h2{
font-size:34px;
}

}

@media(max-width:767px){

.hero-section h1{
font-size:32px;
}

.hero-section h5{
font-size:18px;
}

.section-title h2{
font-size:28px;
}

.counter-box{
margin-bottom:35px;
}

.process-step{
margin-bottom:30px;
}

}