/* ✅ 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;
}

:root {
    --primary: #001264;
    --light: #fff;
    --dark: #000;
	--secondary: #E02020;
    
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.container{
	max-width: 1250px;
}


/* ================================
   Desktop Navigation
================================ */
/* .site-header .main-header {
	 position: absolute;
      left: 0;
	  padding: 10px 0;
      width: 100%;
      z-index: 10;
      background: #fff !important;
} */

/* Default Header */
.site-header .main-header {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 100;
    background: #fff !important;
    transition: all 0.4s ease;   /* Smooth animation */
}

/* Sticky Header */
.site-header.sticky .main-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* Shadow */
    padding: 8px 0;   /* Smaller height animation */
    animation: slideDown 0.4s ease forwards;
}

/* Slide Down Animation */
@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;
}

.btn-primary{
	background: var(--secondary);
    padding: 10px 13px;
    color: #fff !important;
    text-decoration: none;
	text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
}

.wpcf7-submit{
	background: var(--secondary);
    padding: 10px 13px;
    color: #fff !important;
    text-decoration: none;
	text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
	border: none;
}

.btn-primary i {
    background: #fff;
    color: #000;
    border-radius: 50%;
    padding: 4px 5px;
    margin-left: 7px;
    font-size: 10px; 
}


.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;
}

/* Dropdowns */
.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: var(--secondary) !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;
}

/* Show dropdown on hover */
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}

/* Align submenu to parent */
.site-header .nav li ul.sub-menu li {
  position: relative;
}

/* Sub-sub menus (flyouts) */
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .site-header .nav {
    display: none; /* hidden, mobile uses side menu */
  }
}


/* 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-main-menu-1 li {
    padding: 20px 10px;
    border-bottom: 1px solid #fff;
}
#menu-main-menu-1 li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}
.topbar{
	background: #F5F5F5;
	color: #817B7B;
	padding: 5px 0;
}
.topbar .social-icons i{
	color: var(--primary);
}
.topbar i{
	color: var(--primary);
	font-size: 16px;
}

.topbar a{
	text-decoration: none;
	color: #817B7B !important;
}

/* FOOTER SECTION CSS */
footer{
	background: #1A2A5C;
	border-radius: 50px 50px 0 0;
	position: relative;
}
.hello{
	position: absolute;
	bottom: 15%;
	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: 60px;
}
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;
    padding: 3px 8px;
    margin-bottom: 25px;
    border-radius: 50%;
    display: inline-block;
}

.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.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 50px 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: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
/* Scroll To Top Button */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    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;
			margin-top: 3rem;
        }

        .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: #00000024;
            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: 85%;
            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);
}

section{
	padding: 50px 0 30px;
}

.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: var(--secondary) !important;
			border: 1px solid var(--secondary);
			text-decoration: none;
			padding: 10px 13px;
			border-radius: 5px;
		}

/* Certifications & 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;
}

/* Service */

   .services-banner {
    background: url("https://webzensys.com/work/conair-mechanical.com/wp-content/uploads/2025/11/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: 999; 
    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: 400px;
  }

	.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:var(--secondary) !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); 
}


/* Specialized Sector  */
.specialized {
    padding: 50px 0;
    background: #fffef0;
    margin: 50px 0;
}
.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 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;
}

/* When screen gets small (tablet) → 3 per row */
@media (max-width: 992px) {
    .feature-card {
        flex: 1 1 calc(33.33% - 20px);
    }
}

/* Mobile → 2 per row */
@media (max-width: 768px) {
    .feature-card {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Small mobile → 1 per row */
@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 {
    margin-top: 80px;
    font-weight: 700;
    font-size: 15px;
	text-align: center;
}

/* reviews 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;
}
.reviewsldr .reviews-item,
.reviewsldr .reviews-item * {
    text-align: left !important;
	
}
.review-text h3{
	font-size: 20px;
	font-weight: 600;
}

.starreviews i{
	color: #e99819;
}

/* General dots area */
.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: 30px;
    height: 4px;
    background: var(--secondary);   
    border-radius: 20px;
}
.slick-dots li.slick-active button:before{
	display: none !important;
}

/* Install and Project */

.about-projects {
    position: relative;
    overflow: hidden;
}

/* overlay */
.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;
}

/* project details */
.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;
}

/* Text styling */
.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;
}
/* Hover Effects */
.about-projects:hover figure::before {
    opacity: 1;
}

.about-projects:hover .project-dtls {
    opacity: 1;
    transform: translateY(0);
    bottom: 5%;
    left: 0;
}


/* Contact Section */
.contact-section{
	width: 80%;
	margin: auto;
	margin-bottom: 2rem;
}
/* LEFT BOX */
.contact-box {
    background: var(--primary);
    color: #fff;
    border-radius: 20px 0 0 20px;
    position: relative;
}

/* Icon Circle */
.icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
	padding: 17px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Small labels */
.label {
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Social icons */
.contact-section .social-icons a {
    width: 35px;
    height: 35px;
    background: #fbf3f321;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}
.contact-section .social-icons a i{
	color: #fff;
}
.contact-section .social-icons a:hover {
    background: #fff;
   
}
.contact-section .social-icons a:hover i{
	color: var(--primary);
}

/* Form field styling */
.contact-form .form-control {
    border: 1px solid #e0e0e0;
    height: 35px;
    font-size: 14px;
}

.contact-form textarea.form-control {
    height: auto;
}
.contact-box a{
	text-decoration: none;
}


/* Responsive Screens */

@media (max-width: 1024px){
	
	.btn-primary {
		font-size: 9px;
	}
	.site-header .nav > li > a {
    font-size: 9px;
	padding: 6px 8px;	
	}
	.logo img.img-fluid {
    width: 60%;
	}
	.slick-next
 	{
    right: -15px;
	}
	.slick-prev {
    left: -5px;
	}
	.specialized-info{
	height: 300px;	
	}
	.review-text h3 {
    font-size: 16px;
	}
	.reviewsldr .reviews-item, .reviewsldr .reviews-item * {
    font-size: 12px;
	}
	.contact-box a {
    font-size: 12px;
	}
	.ms-3.text-white {
    font-size: 12px;
	}
	.contact-section .social-icons a {
    width: 30px;
    height: 30px;
	}
	footer p {
    font-size: 12px;
	}
	footer .menu li {
    font-size: 12px;
	}
	footer h3 {
	font-size: 14px;
	}
	footer h5 {
    font-size: 16px;
	}
	.form-control {
	font-size: 12px;
	}
	a.footer-btn {
	font-size: 12px;
	}
	footer .social-icons a{
	padding: 2px 8px;	
	}
	.copyright p {
    font-size: 12px;
	}
	.hello {
    bottom: 30%;
    left: 77%;
	}
	.hello img {
    width: 75%;
	}
}

@media (max-width: 991px){
	
	.hero-section {
     height: 145vh;
	}
	.certificate-box{
	 flex-direction: column;
     text-align: center;	
	}
	.certificate-box p {
    font-size: 12px;
	}
	.topline-holder {
	display: none;
	}
	.feature-row {
	margin-top: 35px;
	}
	.feature-card p{
	text-align: left;	
	}
	.specialized-info h3 {
    font-size: 18px;
	}
	.specialized-info {
    height: 260px;
    }
	.contact-box{
	 border-radius: 20px 20px 20px 20px;	
	}
	footer a.footer-logo img {
	 width: 30%;
	}
	a.footer-btn {
    margin-bottom: 20px;
	}
	.sign {
    width: 30%;
	}
	.hello {
	bottom: 9%;
	}
	.hello {
    bottom: 13%;
	left: 35%;	
    }
	.hello img {
     width: 20%;
    }
	.hello .arrow {
    width: 5%;
	}
	.copyright p {
     text-align: left;
    }
}
@media (max-width: 820px){
	section.about .row.g-5 {
    flex-direction: column !important;
	}
	section.about .col-md-6 {
    width: 100%;
	}
	.slick-prev {
    left: -8px !important;
	}
	.slick-next {
    right: -10px !important;
	}
}
@media (max-width: 767px){
	.certificate-box{
	height: 260px;	
	}
	section.certificat .row {
    gap: 10px;
	}
	.certificate-box p {
    font-size: 16px;
    }
	.footer-img {
    justify-content: left;
	}
	.copyright .row {
    gap: 10px;
	}
	.hello {
	bottom: 14%;
	}
}
@media (max-width: 667px){
	.hero-heading {
	font-size: 34px;
	}
	.btn-primary {
	padding: 7px;
	}
	.btn-primary i{
	font-size: 7px;	
	}
	.hero-btn a{
	padding: 10px;	
	font-size: 9px;
	}
}
@media (max-width: 520px){
	.hero-heading {
	font-size: 26px;
	}
	.main-heading {
	font-size: 26px;
	}
	.banner-arrows {
	right: 15%;
	}
	.service-card{
	height: 345px;	
	}
	.specialized-info {
    height: 245px;
	}
}
@media (max-width: 425px){
	.badge-pill{
	font-size: 13px;	
	}
	.hero-heading {
    font-size: 22px;
    }
	.content-box p {
    font-size: 14px;
	}
	.man-img{
	right: -5%;
    height: 65%;	
	}
	.btn-flex-section {
    flex-direction: column;
    gap: 15px !important;
	}
	.hero-btn a {
	padding: 8px;
	}
	.main-heading {
    font-size: 22px;
    }
	.about-content p {
    font-size: 14px;
	}
	.about-btn a {
	padding: 5px;
	font-size: 14px;
	}
	.certificate-box {
    height: 190px;
    }
	.banner-arrows .swiper-button-prev, .banner-arrows .swiper-button-next {
    width: 35px;
	height: 35px;
	}
	.banner-arrows .swiper-button-prev::after, .banner-arrows .swiper-button-next::after {
	font-size: 14px;
	}
}
@media (max-width: 360px){
	.badge-pill {
    font-size: 8px;
    }
	.hero-section .badge-pill {
    margin-bottom: 20px;
	}
	.hero-heading {
    font-size: 17px;
    }
	.content-box p {
    font-size: 10px;
    }
	.btn-primary {
    font-size: 7px;
    }
	.about-btn a {
    padding: 5px;
    font-size: 11px;
    }
	.contact-section .social-icons a i {
    font-size: 13px;
	}
	.contact-section .social-icons a {
    height: 25px;
    }
	.hello {
    bottom: 16%;
    }
}