/*==========================================
Akshit Engineering
Responsive Bootstrap Website
style.css
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.7;
}

/*==============================
Common
==============================*/

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:15px;
}

.section-subtitle{
    color:#666;
    margin-bottom:40px;
}

.btn-primary{
    background:#0077b6;
    border:none;
    padding:12px 28px;
    border-radius:50px;
    transition:.4s;
}

.btn-primary:hover{
    background:#005f8f;
    transform:translateY(-3px);
}

.btn-warning{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
}

/*==============================
Navbar
==============================*/

.navbar{
    /* background:#0b1f33 !important; */
    background:#07376e !important;
    padding:0px 0!important;
    transition:.4s;
}

.navbar-brand{
    font-size:28px;
    font-weight:700;
    color:#fff !important;
}

.navbar-nav .nav-link{
    color:#fff !important;
    margin: 0 20px;
    font-weight:500;
    transition:.3s;
	font-size:17px;
}

.navbar-nav .nav-link:hover{
    color:#00b4d8 !important;
}
.logo{
	Background:#fff;
	Padding:15px;
	/* border-radius:15px; */
	margin:0 40px;
}
.menu_main{
	padding-top:40px;
}
/*==============================
Hero
==============================*/

.banner img:hover{
	transform:unset!important;
}
.banner img{
	width:100%;
	transform:unset!important;
}
.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    color:#fff;

    background:linear-gradient(rgb(11 23 36 / 92%), rgb(11 23 38 / 97%)), url(../img/hvac.png);

    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:56px;
    font-weight:700;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    margin-bottom:35px;
    /* max-width:600px; */
}

/*==============================
About
==============================*/

.about-img img{
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-content h2{
    font-size:40px;
    color:#0d3b66;
    margin-bottom:20px;
}

.about-content p{
    color:#555;
    margin-bottom:15px;
}

/*==============================
Services
==============================*/

.card{
    border:none;
    border-radius:15px;
    transition:.4s;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.card-body{
    padding:40px 25px;
}

.card i{
    color:#0077b6;
    margin-bottom:20px;
}

.card h5{
    font-weight:600;
    color:#0d3b66;
}

.card p{
    color:#666;
    font-size:15px;
}

/*==============================
Why Choose Us
==============================*/

.why-box{
    padding:30px;
    border-radius:15px;
    transition:.4s;
}

.why-box:hover{
    background:#f8f9fa;
    transform:translateY(-8px);
}

.why-box i{
    color:#0077b6;
    margin-bottom:20px;
}

.why-box h5{
    font-weight:600;
    color:#0d3b66;
}

/*==============================
Counters
==============================*/

.counter-section{
    background:#0077b6;
    color:#fff;
}

.counter-box{
    padding:40px 20px;
}

.counter-box h2{
    font-size:48px;
    font-weight:700;
}

.counter-box p{
    margin-top:10px;
    font-size:18px;
}

/*==============================
CTA
==============================*/

.cta{
    padding:90px 0;
    background:linear-gradient(rgb(11 23 36 / 92%), rgb(11 23 38 / 97%)), url(../img/hvac.png);

    background-size:100% 100%;
    /* background-position:center; */
    color:#fff;
}

.cta h2{
    font-size:42px;
    font-weight:700;
}

/*==============================
Footer
==============================*/

footer{
    background:#043266;
	Padding:50px 0 0;
}

footer h4{
    color:#fff;
    margin-bottom:20px;
}

footer p{
    color:#bbb;
}

footer ul{
    list-style:none;
    padding-left:0;
}

footer ul li{
    color:#bbb;
    padding:6px 0;
}

footer hr{
    border-color:#333;
}

/*==============================
Image Hover
==============================*/

img{
    transition:.5s;
}

img:hover{
    transform:scale(1.03);
}

/*==============================
Section Padding
==============================*/

section{
    padding:80px 0;
}

/*==============================
Background
==============================*/

.bg-light{
    background:#f8fbfd !important;
}

/*==============================
Animations
==============================*/

.fade-up{
    animation:fadeup 1s ease;
}

@keyframes fadeup{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/*==============================
Scrollbar
==============================*/

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#0077b6;
}

::-webkit-scrollbar-track{
    background:#eee;
}

/*==============================
Responsive
==============================*/

@media(max-width:991px){

.hero{
    text-align:center;
    min-height:75vh;
}

.hero h1{
    font-size:42px;
}

.hero p{
    margin:auto;
    margin-bottom:30px;
}

.section-title{
    font-size:32px;
}

.about-content{
    margin-top:40px;
}

}

@media(max-width:768px){

.navbar-brand{
    font-size:22px;
}

.hero{
    padding:100px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.section-title{
    font-size:28px;
}

.card{
    margin-bottom:25px;
}

.cta h2{
    font-size:30px;
}

.counter-box h2{
    font-size:38px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:15px;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

.section-title{
    font-size:24px;
}

footer{
    text-align:center;
}

}

/*==============================
Utility Classes
==============================*/

.shadow-lg{
    box-shadow:0 15px 40px rgba(0,0,0,.15)!important;
}

.rounded-xl{
    border-radius:20px;
}

.text-primary{
    color:#0077b6!important;
}

.bg-primary{
    background:#0077b6!important;
}

.about_img{
	margin-right:30px;
}




.why-choose{
    background:#f5f9fd;
}

.why-choose .sub-title{
    display:inline-block;
    color:#ff8c00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.why-choose h2{
    font-size:42px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:15px;
}

.why-choose p{
    color:#666;
}

.why-box{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
    border-bottom:4px solid transparent;
}

.why-box:hover{
    transform:translateY(-10px);
    border-color:#ff8c00;
}

.why-box .icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    background:#0d3b66;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.4s;
}

.why-box:hover .icon{
    background:#ff8c00;
    transform:rotateY(180deg);
}

.why-box h4{
    color:#0d3b66;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.why-box p{
    font-size:15px;
    line-height:28px;
    margin:0;
}

@media(max-width:768px){

.why-choose h2{
    font-size:30px;
}

.why-box{
    padding:30px 20px;
}

}



.hvac-section{
    background:#f7fbff;
}

.section-tag{
    display:inline-block;
    background:#e9f3ff;
    color:#0d3b66;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-tag i{
    color:#ff8c00;
    margin-right:8px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:20px;
}

.section-desc{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.hvac-img img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.service-box{
    background:#fff;
    border-radius:15px;
    padding:20px;
    transition:.4s;
    height:100%;
    border-left:4px solid #ff8c00;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box i{
    font-size:35px;
    color:#0d3b66;
    margin-bottom:15px;
}

.service-box h5{
    font-weight:700;
    color:#0d3b66;
}

.service-box p{
    margin:0;
    color:#666;
    font-size:15px;
}

.btn-hvac{
    background:#0d3b66;
    color:#fff;
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.4s;
}

.btn-hvac:hover{
    background:#ff8c00;
    color:#fff;
}

@media(max-width:991px){

.section-title{
    font-size:34px;
}

}

@media(max-width:768px){

.section-title{
    font-size:28px;
}

.service-box{
    margin-bottom:20px;
}

}






.vrv-section{
    background:#f7fbff;
}

.service-tag{
    display:inline-block;
    background:#edf5ff;
    color:#0d3b66;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.service-tag i{
    color:#ff7b00;
    margin-right:8px;
}

.vrv-section h2{
    font-size:42px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:20px;
}

.vrv-section p{
    color:#666;
    line-height:30px;
}

.vrv-image img{
    border-radius:0px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.vrv-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    margin-bottom:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
    border-top:4px solid #ff7b00;
}

.vrv-card:hover{
    transform:translateY(-8px);
}

.vrv-card i{
    font-size:38px;
    color:#0d3b66;
    margin-bottom:15px;
}

.vrv-card h5{
    font-weight:700;
    color:#0d3b66;
}

.vrv-card p{
    margin:0;
}
.hvac_para{
	line-height:46px!important;
	font-size:36px;
}
.maintenance-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.section-title h3{
    color:#0d3b66;
    font-weight:700;
}

.table thead{
    background:#0d3b66;
    color:#fff;
}

.table td,
.table th{
    padding:18px;
    vertical-align:middle;
}

.badge{
    padding:10px 16px;
    font-size:14px;
}

@media(max-width:768px){

.vrv-section h2{
    font-size:30px;
}

.maintenance-box{
    padding:5px;
}	
	.navbar{background:#fff!important;margin:10px 0;}
	.navbar-toggler{background:#06366c!important;}
	.table-bordered tbody{overflow:scroll;}
	.logo{padding:4px;margin:0 50px 0 0;}
	.menu_main{padding-top:32px;padding-bottom:0px;text-align:right;}
	.navbar-nav li{text-align:left;}
	.abt_det h2{padding-top:20px;font-size:22px;}
	.abt_det p{text-align:justify;}
	.vrv-section h2{font-size:22px;}
	.vrv-section p{text-align:justify;}
	.maintenance-box p{font-size: 16px;text-align: center;line-height: 26px !important;}
	.cta{padding:30px 0;background-size:cover;}
	.navbar-nav{
		position: absolute;
		width: 100%;
		height: 500px;
		z-index: 999999999;
		background: #012e61;
		left: 0;
		top: 118px;
		display: inline-table;
	}
}

@media only screen and (min-width: 991px) and (max-width: 1100px){
	.menu_main{padding-top:30px;}
	.navbar-nav .nav-link{margin:0 14px;}
	.logo{margin:0px;}
	.section-title, .vrv-section h2{font-size:28px;}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	.menu_main{text-align:right;}
	.menu_main button{background:#06366d;}
	.navbar{Background:#fff!important;}
	.logo{margin:0px;}
	.navbar-collapse{width:100%;text-align:left;}
	.navbar-nav{background:#06376e;}
	
	.abt_det h2{padding-top:30px;}
	.abt_det p{text-align:justify;}
	.card h5{font-size:16px;}
	.vrv-section h2{font-size:22px;}
	.vrv-section p{text-align:justify;}
	.maintenance-box p{font-size: 16px;text-align: center;line-height: 26px !important;}
	.cta{padding:30px 0;background-size:cover;}
	.section-tag{margin-top:30px;}
	.service-tag{margin-top:30px;}
	.cta h2{font-size:26px;}
}