/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');	
*{
	margin: 0;
	padding: 0;
}
html {
    overflow-x: hidden;
}
:root {
    --primary: #001264;
    --light: #fff;
    --dark: #000;
	--secondary: #fbd00b;   
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
a{
	text-decoration: none !important;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
    width: 100%;
    padding: 10px 0;
    z-index: 100;
    background: #fff !important;
    transition: all 0.4s ease;  
}
.site-header.sticky .main-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    padding: 8px 0;   
    animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
/* Ensure parent li is positioned */
.nav li {
    position: relative;
}
.btn-primary{
	border: 1px solid #fff !important;
}
/* Hide all submenus by default */
.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    min-width: 220px;
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Show first level submenu */
.nav li:hover > .sub-menu {
    display: block;
}

/* SECOND LEVEL submenu (submenu inside submenu) */
.nav .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    display: none;
}

/* Show second level submenu on hover */
.nav .sub-menu li:hover > .sub-menu {
    display: block;
}

/* Optional styling */
.nav .sub-menu li {
    padding: 0;
}

.nav .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    white-space: nowrap;
}

.nav .sub-menu li a:hover {
    background: #f5f5f5;
}

/* Menu on Mobile */
@media (max-width: 767px){
	.nav .sub-menu li a{
		color: #777 !important;
	}
}

.btn-primary{
	background: #001263 !important;
    padding: 10px 13px;
    color: #fff !important;
    text-decoration: none;
	text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
}
.btn-primary:hover {
    background: #fbd00b;
    color: #001264 !important;
	transition: 0.3s ease-in-out;
}
.topbar .social-icons i:hover {
    color: #fbd00b;
}
.topbar span:hover {
    color: #001264;
}
.topbar a:hover {
    color: #001264 !important;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 13px;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    border: none;
}
ul{
	list-style-type: none;
}
.btn-primary i {
    background: #fff;
    color: #000;
    border-radius: 50%;
    padding: 4px 5px;
    margin-left: 7px;
    font-size: 17px; 
}
.site-header .nav > li > a {
  color: #817B7B !important;
  text-decoration: none;
	text-transform: uppercase;
  padding: 8px 15px;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  display: inline-block;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  color: var(--primary) !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #001264 !important;
	text-decoration: none;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--primary);
  color: #fff !important;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
.logo img {
    width: 60%;
}
/* ================================
   	Mobile menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
.topbar{
	background: #F5F5F5;
	color: #817B7B;
	padding: 5px 0;
}
.topbar .social-icons i{
	color: #e12525;
}
.topbar i{
	color: #e12525;
	font-size: 16px;
}

.topbar a{
	text-decoration: none;
	color: #817B7B !important;
}
/* ================================
   Footer Section CSS
================================ */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: #e12525;
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #e12525;
  stroke-width: 4;
}
footer{
	background: #1A2A5C;
	border-radius: 50px 50px 0 0;
	position: relative;
}
.hello{
	position: absolute;
	bottom: 20%;
	left: 30%;
}
.hello img{
	width: 60%;
}
.hello .arrow{
	width: 15%;
}
footer .icon-wrap{
	height: 40px;
	width: 40px;
}
footer .icon-wrap i{
	color: #fff;
}
footer h5{
	color: #fff;
    margin: 20px 0;
    font-size: 18px;
}
.sign input {
    border-radius: 7px;
}
a.footer-btn {
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 8px 20px;
	display: inline-block;
    color: #fff !important;
    text-decoration: none;
}
.footer-btn img{
	height: 10px;
    width: 10px;
    filter: invert(1);
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
footer .social-icons a {
    text-decoration: none;
    border: 1px solid #fff;
    height: 35px;
    width: 35px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
ul.footer-details i {
    color: #fff;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 80%;
    display: block;
}
.footer_menu {
    padding: 60px 0 80px 0;
}
.footer-details li {
    display: block;
    margin-bottom: 15px;
    position: relative;
}
.footer-img{
	display: flex;
    justify-content: flex-end;
}
ul{
	padding-left: 0rem !important;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
footer h3 {
    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
	color: #fff;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
	color: #fff;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
a{
	color: #fff !important;
}
footer .menu li{
	padding-left: 0 !important;
	color: #fff !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
}
footer .menu li::after {
  content: "\f061"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #fff;
}
footer .menu li:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 200;
    position: relative;
    text-decoration: none;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #fff;
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: #fbd00b;
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
/* ================================
   Scrool to top
================================ */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e12525;
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
.logo{
    padding: 5px 0;
    border-radius: 10px;
}
.hm-title-bgbox h2 {
    color: #fff;
    font-size: 38px;
    line-height: 50px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-btom-img{
	position: relative;
}
.overlay1{
    background-color: #c6d5ee;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
}
.contact-btom-img img{
	height: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}
/* ================================
   Hero Section
================================ */
 		.hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            color: #fff;			
        }
        .bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: #a5a0a06b;
            z-index: 2;
        }  
        .content-box {
            position: relative;
            z-index: 3;
            width: 62%;
        }
		.hero-heading{
			font-size: 40px;
			font-weight: 700;
		}
		.hero-heading span{
			color: var(--primary);
		}
        .badge-pill {
            background: #dbd8d845;
            padding: 8px 20px;
            border-radius: 30px;
            display: inline-block;
            font-size: 14px;
			margin-bottom: 1rem;
        }
			.hero-section .badge-pill{
				margin-bottom: 2rem;
		}
        .man-img {
            position: absolute;
            bottom: 0;
            right: 4%;
            z-index: 4;
            height: 75%;
            object-fit: contain;
        }
		.hero-btn a{
			color: #fff !important;
			border: 1px solid #fff;
			text-decoration: none;
			padding: 10px 13px;
			border-radius: 5px;
		}
/* ================================
   About Section
================================ */
.main-heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
	margin-bottom: 25px;
}
section{
	padding: 50px 0 30px;
}
section.inner-about p {
    font-size: 14px;
	line-height: 2;
}
.about-content ul{
	list-style-type: none;	
}
.about-content ul li{
	font-weight: 600;
}
.about-content ul li img{
	width: 4%;
	margin-right: 8px;
}
.about-content h5{
	font-weight: 700;
	font-size: 18px;
}
		.about-btn a {
    color: #bc2424 !important;
    border: 1px solid #bc2424;
    text-decoration: none;
    padding: 10px 13px;
    border-radius: 5px;
}

/* ================================
  Certificate & Safety
================================ */
.certificate-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 10px 0 #8080806e;
    border-radius: 7px;
    border: 1px solid #8080808c;
	height: 120px;
}
.certificate-box img{
	width: 25%;
}
.certificate-box p{
	margin-bottom: 0;
}

/* Choose Us */
.text-center.service-top {
    background: #fff;
    padding: 20px 0px;
}
h2.section-title {
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.services-tabs {
    position: relative;
    height: 400px;
    overflow: hidden;
    object-fit: cover;
}
 
/* background */
.bg-wrapper{
  position:absolute;
  inset:0;
}
.bg-image{
  position:absolute;
  inset:0;
	height:400px;
  background-size:cover;
  background-position:center;
}
h2.section-title.hvac-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
} 

/* grid overlay: 3x4 */
.grid-overlay{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(3,1fr);
  z-index:2;
}
.grid-overlay span{
  background: rgba(0,0,0,0.35); /* light black */
  opacity:1;
  transform:scale(1);
  transition:0.5s ease;
}
 
/* content box */
.service-content{
  position:relative;
  z-index:3;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100%;
	display:none;
}
/* .content-box{
  background:#fff;
  padding:35px;
  max-width:420px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
} */
 
/* tabs */
.tabs {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(to top, #550608fa, #00000000);
    z-index: 3;
}
.tab{
/*   flex: 1; */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* bottom-align text */
  align-items: center;
  cursor: pointer;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.2);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.tab:last-child{
  border-right:none;
}
.tab:hover, .tab.active {
    background: #4e494921;
}
 
/* tab title & sliding description */
.tab-title {
    z-index: 2;
    font-size: 20px;
    margin-bottom: 10px;
}
.tab-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-size: 17px;
    text-align: start;
    margin-top: 5px;
}
.tab:hover .tab-desc{
  opacity:1;
  transform: translateY(0);
}
/* Set default background image on page load (first tab) */
.services-tabs .bg-image {
    background-image: url("https://webzensys.com/work/bosshc.com/wp-content/uploads/2026/01/gallery28.jpeg");
    background-size: cover;
    background-position: center;
}

/* ================================
   Service Section
================================ */
   .services-banner {
    background: url("https://webzensys.com/work/bosshc.com/wp-content/uploads/2026/03/service-bg.png") center/cover no-repeat;
    position: relative;
    padding: 80px 0 180px;
    color: #fff;
  }
  .services-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background: #06163abd;
    z-index:1;
    pointer-events: none; 
  }
  .services-content{ position: relative; z-index: 3; }
  .tag-pill{
    display:inline-block;
    padding:3px 20px;
    background:#fff;
	  font-size: 15px;
    color:#000;
    border-radius:35px;
    font-weight:600;
  }
  .services-title{
    margin-top:16px;
    font-size:26px;
    font-weight:700;
  }
  .banner-arrows{
    position: absolute;
    right: 11%;
    bottom: 65%;
    z-index: 12; 
    display: flex;
    gap: 12px;
    align-items:center;
    pointer-events: auto;  
  }
  .banner-arrows .swiper-button-prev,
  .banner-arrows .swiper-button-next{
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.20);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
  }
  .banner-arrows .swiper-button-prev::after,
  .banner-arrows .swiper-button-next::after{
    font-size: 20px;
    color: #000;
    font-weight: 800;
  }
  .services-section{
    margin-top: -240px;
    position: relative;
    z-index: 10;
  }
  .service-card{
    background:#fff;
    border-radius: 14px;
    overflow:hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
    transition: transform .28s ease, box-shadow .28s ease;
	  height: 100%;
  }
	.swiper{
		padding: 30px 0;
	}
  .service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  }
  .service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
  }
  .service-body{ padding:18px; }
  .service-title{ font-size:18px; font-weight:700; margin:0 0 8px; }
  .service-text{ color:#444; font-size:14px; margin:0 0 12px; }
  .read-more{
	  color: #001264 !important; 
	  font-weight:600; 
	  cursor:pointer; 
}
  .swiper-button-lock { display: block !important; }
/* ================================
   Why Choose Us Section
================================ */
.why-section {
    position: relative;
	padding: 30px 0 30px;
}
.topline-holder {
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  position: relative;
  margin-top: 35px;
  margin-bottom: 50px;
  z-index: 1;
  overflow: visible; 
}
.dot-group {
  position: absolute;
  top: -40px;         
  width: 20%;
  height: 60px;     
  pointer-events: none;
  z-index: 3;         
}
.v-line {
  display: block;
  position: absolute;
  left: 5%;           
  top: 40px;
  width: 1px;
  height: 45px;
  background: #D9D9D9;
  z-index: 3;         
}               
.red-dot {
  display: block;
  position: absolute;
  left: 5%;           
  top: 75px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}    
.feature-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgb(0 0 0 / 33%);
    padding: 10px;
    text-align: left;
    transition: 0.3s;
    min-height: 160px;
    position: relative;
	margin-top: 10px;
    flex: 1 1 calc(20% - 20px); 
}  


/* ================================
       Specified Sector
================================ */
.specialized {
    padding: 50px 0;
    background: #fffef0;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}
.specialized .slick-slide {
    margin: 0 20px;
}
.specialized-info {
    background: #fff;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 6%);
    border-radius: 8px;
    overflow: hidden;
    height: 355px;
}
.specialized-info img{
    height: 300px;
    object-fit: cover;

}
.specialized-info h3 {
    font-size: 20px;
    padding-bottom: 15px;
}
.slick-prev, .slick-next {
    background: #001264 !important;
    height:45px !important;
    width:45px !important;
    border-radius:50%;
    z-index:999;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: var(--primary) !important;
}
@media (max-width: 992px) {
    .feature-card {
        flex: 1 1 calc(33.33% - 20px);
    }
}
@media (max-width: 768px) {
    .feature-card {
        flex: 1 1 calc(50% - 20px);
    }
}
@media (max-width: 500px) {
    .feature-card {
        flex: 1 1 100%;
    }
}
.icon-box {
    background: var(--secondary);
    padding: 10px;
    width: 60px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
}
.icon-box img {
    width: 28px;
    filter: brightness(0) invert(1);
}
.feature-card p {
/*     font-weight: 700; */
    font-size: 16px;
	text-align: center;
}
/* ================================
       Review Section
================================ */
.reviews {
    background: #fffef0;
    padding: 40px 0;
    margin: 50px 0;
}
.reviewsldr .reviews-item {
    background: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 7px 1px #8080805c;
    height: 310px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}
.reviewsldr .reviews-item,
.reviewsldr .reviews-item * {
    text-align: left !important;	
}
.review-text h3{
	font-size: 20px;
	font-weight: 600;
}
.starreviews i{
	color: #e99819;
}
.slick-dots {
    bottom: -30px;
}
.slick-dots li button {
    width: 8px;
    height: 8px;
    background: #c7d8f9;  
    border-radius: 50%;
    padding: 0;
}
.slick-dots li.slick-active button {
    width: 20px;
    height: 5px;
    background: var(--secondary);   
    border-radius: 22px;
}
.slick-dots li.slick-active button::before{
	display: none !important;
}
.slick-dots li button:before{
	display: none !important;
}
/* ================================
   	Install Project
================================ */
.about-projects {
    position: relative;
    overflow: hidden;
}
.about-projects figure::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
	border-radius: 10px;
    transition: 0.4s ease;
}
.about-projects img {
    height: 300px;
    object-fit: cover;
}
.project-dtls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
	text-align: left;
    padding: 15px 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(40%);
    transition: all 0.4s ease;
    z-index: 2;
}
.project-dtls h3,
.project-dtls h5,
.project-dtls a {
    color: #fff;
    margin: 0;
}
.project-dtls h5{
	font-size: 15px;
}
.project-dtls h3{
	font-size: 20px;
}
.project-dtls a {
    display: inline-block;
    margin-top: 5px;
	color: var(--secondary) !important;
   font-size: 14px;
	text-decoration: none;
}
.about-projects:hover figure::before {
    opacity: 1;
}
.about-projects:hover .project-dtls {
    opacity: 1;
    transform: translateY(0);
    bottom: 5%;
    left: 0;
}
/* ================================
   Contact Section
================================ */
.contact-inner-section .main-heading,
.contact-form .main-heading{
    text-align: center;
    font-size: 50px;
    margin-bottom: 4rem;
}
.inner-contact-form {
    width: 70%;
    margin: auto;
}
p.last-item {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.form-control {
   background: #f9f9f9;
   border: 1px solid #ddd;
   color: #000;
	border-radius: 0;
}
.form-control:focus {
   border-color: var(--primary);
   box-shadow: none;
} 
section.map-section .container-fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}
/* ================================
   Breadceumb
================================ */
.breadcrumb-section {
    background: var(--primary);
    text-align: center;
    color: #fff;
    padding: 50px 0;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #e12525;
}
.breadcrumb-item.active{
	color: #e12525;
}
.breadcrumb-section nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ================================
  Contact Page Css
================================ */
/*    .contact-page-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    }  */
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
    .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
    }
/*--------------------------------------
			Blog Section
-------------------------------------*/
.blog-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.blog-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* responsive */
}

.blog-card {
  background: #fff;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/*--------------------------------------
			About Page
-------------------------------------*/
.exp-box {
    background: var(--primary);
    color: #fff;
    padding: 30px;
    display: inline-block;
    bottom: 0;
    position: absolute;
    left: 0;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
} 
section.promise {
    background: #fffef0;
    padding: 50px 0;
}
.exp-box h5 {
    font-size: 30px;
    color: var(--secondary);
    font-weight: 700;
}
.inner-about-img{
	position: relative;
}
.inner-about-img,.what-to-img{
	height: 350px;
}
.inner-about-img img, .what-to-img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}
img.an1 {
    width: 16px;
    margin-right: 10px;
}
section.what-do p {
    font-size: 14px;
	line-height: 1.5;
}
.promise-container{
	width: 100%;
	margin: auto;
	text-align: center;
}
.promise-container p {
    font-size: 14px;
}
.promise a{
	display: inline-block;
}
.hvac-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.hvac-section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}
h2.fw-bold {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}
.hvac-section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.hvac-services-list {
  padding: 0;
  margin: 30px 0;
}

.hvac-service-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: inline-block;
  margin-right: 20px;
  color: #333;
}

.hvac-service-item .service-icon {
  color: #007bff;
	margin-right: 10px;
    margin-top: 15px;
}

.hvac-section-description {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}
li.hvac-service-item {
    display: flex;
    align-items: center;
    background: #77777724;
    padding: 10px;
    border-radius: 5px;
}
ul.hvac-services-list.list-unstyled.text-center.mb-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hvac-service-item:hover {
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}
.hvac-service-item {
  opacity: 0; /* start hidden */
  transform: translateY(30px);
  transition: all 0.5s ease-out;
}

.hvac-service-item.animate {
  animation: slideInUp 0.6s forwards;
}
.leadership-section {
  background-color: #f9f9f9;
}

.presidnet-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid #007bff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.leadership-quote {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

.philosophy {
  font-size: 1.4rem;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 1rem;
}

.highlight-quote {
  font-style: italic;
}

.leadership-text {
  font-size: 1rem;
  color: #555;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #0056b3;
	color: #fff !important;
}
.service-areas {
  background: #f8f9fb;
}

.section-subtitle {
  display: block;
  text-align: center;
  color: #ff4d4d;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Card */
.area-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  transform: translateY(-8px);
}

/* Image */
.area-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.area-content {
  padding: 20px;
}

.area-content h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #001263;
}

.area-content h5 span {
  color: #e12525;
  font-weight: 600;
}

.area-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* Button */
.btn-primary {
  background: #ff4d4d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e63c3c;
}

/* Call Button */
.about-btn a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.about-btn a:hover {
  color: #ff4d4d;
}





/* ================================
   Service page CSS
================================ */
.service-box {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.service-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.25));
}
.service-content1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  padding: 0 25px;
  color: #fff;
  transition: transform .45s ease;
}
.service-content1 h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;	
}
.service-box .service-content1 p,
.service-box .service-content1 a {
  opacity: 0;
  transform: translateY(20px);
  transition: .45s ease;
}
.service-box:hover img {
  transform: scale(1.1);
}
.service-box:hover .service-content1 {
  transform: translateY(-100px);
}
.service-box:hover p,
.service-box:hover a {
  opacity: 1;
  transform: translateY(0);
}
/* ================================
   Service Details Page
================================ */
.faq-section {
    max-width: 80%;
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
}
.service-list {
  list-style: none;
  padding-left: 0;
}
.service-list li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
}
.service-list li::before {
  content: "\f058"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
/*   background: #0d6efd; */
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
}
.why-choose-box {
    border-radius: 10px;
    transition: 0.3s;
    background: #fff;
    box-shadow: 0 0 10px 0 #80808078;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.why-choose-box h4{
	color: var(--primary);
	font-weight: 700;
}
.why-choose-box:hover {
   transform: translateY(-8px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.frequently{
	padding: 0 0 50px;
}
/* Highlight Box */
.highlight-box {
  background: #ffffff;
  border-left: 4px solid #0b2c5f;
  padding: 15px 18px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-box p {
  margin: 0;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
.service-card .icon {
  width: 50px;
  height: 50px;
  background: #0b2c5f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.service-card .icon i {
  color: #fff;
  font-size: 20px;
}

.why-choose {
  background: #fff;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card .icon {
  font-size: 32px;
  color: #001264; /* your theme color */
}

.feature-card h5 {
  font-size: 18px;
}

.feature-card p {
    color: #001264;
}


/* ================================
   Blog Inner Page
================================ */

.single-blog-card-image {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
}
.single-blog-card-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.single-blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-content h4 {
  font-size: 16px;
  margin: 0;
  font-weight: normal;
}
.blog-content h3 {
    font-size: 19px;
    line-height: 1.2;
    margin-top: 5px;
    font-weight: 600;
}
.read-more-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  font-size: 14px;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.read-more-btn:hover {
  background: var(--secondary);
  color: #fff;
}



/* ================================
   gallery Page CSS
================================ */
   .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: .5s ease;
	border-radius: 12px;
}
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.1);
}



/* ================================
  		Responsive Screen
================================ */
@media(max-width: 1200px){
	.hello {
		bottom: 16%;
	}
}

@media(max-width: 1024px){
	.reviews{
		margin: 0;
	}
}

@media(max-width: 991px){
	.topbar{
		display: none;
	}
	.contact-box{
		border-radius: 20px;
	}
	.hello {
        bottom: 10%;
    }	
	.topline-holder{
		display: none;
	}
}

@media (max-width: 767px){
	.man-img{
		display: none;
	}
	.content-box{
		width: 95%;
	}
	section {
		padding: 30px 0 20px;
	}
	footer a.footer-logo img{
		width: 50%;
	}
	.footer-img {
		justify-content: center;
	}
	.specialized {
		padding: 30px 0;
		margin: 30px 0;
	}
	.hello {
		bottom: 9%;
	}	
	.promise-container{
		width: 100%;
	}	
	section.promise{
		padding: 30px 0;
	}
	.faq-section{
		max-width: 100%;
	}
}

@media (max-width: 667px){
	.contact-section{
		width: 100%;
		margin-bottom: 0;
	}
	.footer_menu {
		padding: 40px 0 60px 0;
	}
}

@media (max-width: 568px){
	.main-heading {
		font-size: 26px;
	}
	.certificate-box img {
		width: 16%;
	}	
	.certificate-box{
		height: auto;
	}	
	.hello {
		bottom: 10%;
		left: 20%;
	}
	.swiper {
		padding: 45px 0 0;
	}
	.service-card{
		height: auto;
	}	
	.slick-next {
		right: 0px;
	}
	.slick-prev{
		left: 0px;
	}
	.reviews {
		padding: 30px 0;
	}
	.hero-heading {
		font-size: 35px;
	}
}

@media(max-width: 479px){
	.btn-flex-section {
		flex-direction: column;
		gap: 25px !important;
	}
	.swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: var(--swiper-navigation-sides-offset,-10px) !important;
		right: auto;
	}
	.swiper-button-next, .swiper-rtl .swiper-button-prev {
		right: var(--swiper-navigation-sides-offset,25px) !important;
		left: auto;
	}
	.feature-card{
		min-height: auto;
	}
	.hero-heading {
		font-size: 30px;
	}
	.reviewsldr .reviews-item{
		height: 460px;
	}
	.contact-page-box{
		padding: 25px;
	}
}

@media(max-width: 414px){
	.hero-heading {
		font-size: 28px;
	}	
	.banner-arrows {
		position: absolute;
		left: 5%;
		bottom: 45%;
		z-index: 12;
		display: flex;
		gap: 12px;
		align-items: center;
		pointer-events: auto;
	}
	.swiper-button-next, .swiper-rtl .swiper-button-prev {
		right: var(--swiper-navigation-sides-offset,60%) !important;
		left: auto;
	}
	.swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: var(--swiper-navigation-sides-offset,0px) !important;
		right: auto;
	}
	.swiper {
		padding: 100px 0 0;
	}
	.main-heading {
		font-size: 22px;
	}
}

@media(max-width: 375px){
	.gallery-item img{
		height: 150px;
	}
}

@media(max-width: 360px){
	.contact-box {
		border-radius: 20px;
		padding: 30px 20px !important;
	}
	ol.breadcrumb {
		display: flex !important;
		justify-content: center;
	}
}
.copyright a {
    text-decoration: none;
}

/* Blog Page */
.single-blog-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


/* Service Page */

/* HERO */
.services-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.services-hero h1 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.services-hero p {
  max-width: 700px;
  margin: auto;
  color: #666;
}
.service-list a {
    color: #001264 !important;
    text-decoration: none !important;
}
.service-title a {
    color: #001264 !important;
    text-decoration: none !important;
}
/* SECTION */
.service-section {
padding: 0px 20px 60px 20px;
    max-width: 1200px;
    margin: auto;
}

/* FLEX ROW (MAIN CHANGE) */
.service-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch;
}

/* CARD */
.service-card {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.service-icon {
  width: 35px;
  height: 35px;
  background: #77777759;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}
.service-icon img {
    width: 45% !important;
}

/* TEXT */
.service-title {
  font-size: 24px;
  font-weight: 700;
}

.service-tagline {
  color: #001264;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  color: #555;
  margin-bottom: 15px;
}

/* LIST */
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #001264 !important;
}

/* MOBILE */
@media(max-width: 768px){
  .service-row {
    flex-direction: column;
  }
}
.col-md-6.abt img {
    height: 470px;
    object-fit: cover;
}


/* SECTION BACKGROUND */
.leadership-section {
    background: linear-gradient(135deg, #f4f7fb, #eef2f7);
    position: relative;
}

/* TITLE */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1f44;
    position: relative;
}

/* ROW CARD STYLE */
.leadership-section .row {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* IMAGE STYLE */
.president-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #f4f7fb;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

/* IMAGE HOVER */
.president-img:hover {
    transform: scale(1.05);
}

/* CONTENT */
.leadership-quote {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
	text-align: justify;
}

/* BIG HIGHLIGHT QUOTE */
.philosophy {
    margin: 10px 0 20px;
}

.highlight-quote {
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: #0d0a35;
    display: inline-block;
    position: relative;
}

/* DESCRIPTION */
.leadership-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* BUTTON */
.leadership-section .btn {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.leadership-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}


/* Areas Serve Before Footer */

/* SECTION */
.service-areas {
    background: #f9f9f9;
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.service-area-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.service-area-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* AREA BOX */
.area-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER */
.area-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* TITLE */
.area-box h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.area-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-area-title {
        font-size: 1.6rem;
    }
}
p.cntnt {
    font-weight: normal !important;
    font-size: 18px !important;
    text-align: justify !important;
}


/* Contact Form */

/* Form Wrapper */
.wpcf7 form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	margin-bottom: 40px;
}

/* Labels */
.wpcf7 .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
  font-size: 14px;
}

/* Inputs + Textarea + Select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9fafc;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Focus Effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #e63946; /* red accent */
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1);
}

/* Textarea Height */
.wpcf7 textarea {
  min-height: 120px;
  resize: none;
}

/* Spacing */
.wpcf7 .row {
  margin-bottom: 15px;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.wpcf7 input[type="submit"]:hover {
  background: #c92c3a;
  transform: translateY(-2px);
}
.wpcf7 input[type="submit"]{
	background: #001263 !important;
}
/* Full Width Button */
.wpcf7 .wpcf7-submit {
  width: 100%;
}

/* Error Messages */
.wpcf7-not-valid-tip {
  color: #e63946;
  font-size: 12px;
  margin-top: 4px;
}

/* Success Message */
.wpcf7-mail-sent-ok {
  background: #e6f9f0;
  color: #2a9d8f;
  padding: 10px;
  border-radius: 6px;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .wpcf7 form {
    padding: 20px;
  }
}
section.why-choose-section .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
	margin: 0 auto !important;
}


/* Responsive Screens */

@media (max-width: 1024px){
	.tabs{
		flex-wrap: wrap;
	}
	.inner-contact-form {
		width: 90%;
		margin: auto;
	}
}

@media (max-width: 568px){
	.banner-arrows {
		right: 15%;
	}
}

@media (max-width: 479px){
	.contact-inner-section .main-heading, .contact-form .main-heading {
    	font-size: 34px;
	}
	.inner-contact-form {
			width: 100%;
	}
	    .banner-arrows {
			bottom: 38%;
	}
}
@media (max-width: 767px){
	.services-tabs{
		height: 900px;
	}
}