* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	line-height: 1.6;
	color: #333;
	font-weight: 400;
	font-size: 16px;
}

h1,
h2,
h3,
h4 {
	font-family: "Playfair Display", serif;
	font-weight: 500;
}

strong{font-weight: 500;}

.mr-2 {
	margin-right: 10px
}

.container {
	max-width: 1600px;
	margin: 0px auto;
padding: 0px 20px;

}

/* Header Styles */
.header-top {
	background-color: #4D4D4D;
	color: white;
	padding: 8px 0;
	font-size: 16px;
	height: auto;
}

.header-top a {
	color: #fff;
	text-decoration: none;
}

.header-top .container {

	margin: 0 auto;
	display: flex;
	/* justify-content: space-between; */
	align-items: center;
	padding: 0 20px;
	justify-content: end;
	gap: 20px;
}

.logo {}

.logo img {
	max-height: 70px;
}

.contact-info {
	display: flex;
	gap: 20px;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	color: white;
	text-decoration: none;
	width: 28px;
	height: 27px;
	background-color: #555;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	border: 1px solid #fff;
	line-height: 28px;
}

.header-top .contact-info span {
	display: flex;
	align-items: center;
}

.header-top .contact-info span i {
	margin-right: 6px;
	font-size: 16px;
}

/* Navigation */

.header {
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header .container {

	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*padding: 10px 15px;*/
	padding-top: 15px;
	padding-bottom: 15px;
}

/*main-menu */



/* top Nav menu*/

 nav.main-nav {
     display: flex;
  align-items: center;
  gap: 15px;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 20px;    
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 8px 12px;
      display: block;
    }
    .nav-link:hover, .nav-link.active , .dropdown-link.active {color: #ed1c24;}

    /* Dropdown */
   .dropdown {
    display: none;
    position: absolute;
    top: 51px;
    left: 0;
    background: #4d4d4d;
  
    min-width: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    transition: all 0.3s ease;
    text-align: left;
}


.dropdown-item {
	list-style: none;
}

    .dropdown-item a {     
      display: block;
padding: 5px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;text-decoration: none;border-bottom: 1px solid #000;

    }



   .dropdown-item a:hover {
	background: #f8f9fa;
	color: #ED1C24;
	padding-left: 30px;
}

    /* Show dropdown on hover (desktop) */
    .nav-item:hover .dropdown {
      display: block;
    }

    /* Hamburger button */

    .menu-toggle {
	display: none;
	font-size: 32px;
	cursor: pointer;
	padding: 15px 20px;
	position: absolute;
	right: 10px;
	top: 0px;
	background: transparent;
	border: 0;
}


 /* Arrow style */
    .arrow {
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .arrow.rotate {
      transform: rotate(180deg);
    }

     /* Font Awesome arrow style */
   .nav-link .fa-chevron-down {
	font-size: 12px;
	transition: transform 0.3s ease;
	text-align: right;
	float: right;
	position: relative;
	top: 6px;
	padding-left: 10px;
}

    .nav-link .fa-chevron-down.rotate {
      transform: rotate(180deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

     /* .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: 0.3s ease;
        padding: 20px 0;
      }*/


	  .nav-menu {
	position: fixed;
	top: 80px;
	left: -100%;
	width: 100%;
	background: white;
	flex-direction: column;
	align-items: stretch;
	gap: 0;border-bottom: 1px solid #d6d6d6;
}
      .nav-menu.active {
        left: 0;
      }

      .nav-item {
        width: 100%;
        text-align: left;
      }

      .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        min-width: unset;margin-top: 10px;border-bottom:1px solid #d6d6d6 ;
      }

      .nav-item:hover .dropdown {
        display: none; /* disable hover on mobile */
      }

.nav-link{padding: 8px 20px;border-bottom: 1px solid #d6d6d6;}

    }

    .nav-menu.active {
	animation: slideDown 0.3s ease-out forwards; 
	}

@keyframes slideDown {
      0% {
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
      }
    }



/* End main-menu */

.appointment-button {
	background-color: #ED1C24;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.3s;
	font-family: poppins;
	line-height: 30px;
	font-size: 18px;
	text-align: center; display:inline-block;
}

.appointment-button:hover {
	background-color: #c0392b;
}


/* Slider Banner */

.owl-slider .item-slider {
  position: relative;
  height: 750px; /* Full screen height */
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
}
.item-slider .container {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*padding: 10px 15px;*/
	width: 1600px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.owl-slider.owl-drag .owl-item {

	padding: 0px !important;
}

.owl-slider .owl-nav button.owl-next, .owl-slider .owl-nav button.owl-prev, .owl-slider button.owl-dot {
	width: 20px;
	height: 20px;
	background: transparent !important;	
	box-shadow: none;
	
	
}
.owl-dots{
	position: relative;
  bottom: 50px;
  margin-top: 0 !important;
  text-align: center;
}

.item-slider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3) ); */
	background: linear-gradient( to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) );
	z-index: 1;
}

.owl-slider {
	margin-bottom: 0px;
}
.owl-slider .owl-nav.disabled {
	display: none !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ed1c24 !important;
}




.slide-content {
		color: white;
	    width: 750px;
	    z-index: 2;
}

.slider-container .container {
	overflow: hidden;	
}

.slide-image {
	width: 40%;
}

.slide-content h2 {
	font-size: 56px;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: 600;
}

.slide-content p {
	font-size: 22px;
	margin-bottom: 30px;
	color: #fff;
}

.slide-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
}

/* Slider Navigation */
.slider-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.nav-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s;
}

.nav-dot.active {
	background: white;
}

.slider-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.3s;
}

.slider-arrows:hover {
	background: rgba(255, 255, 255, 0.3);
}

.prev {
	left: 30px;
}

.next {
	right: 30px;
}















.btn-primary {
	background-color: #e74c3c;
	color: white;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	text-decoration: none;
	transition: background-color 0.3s;
}

.btn-primary:hover {
	background: #c0392b;
	transform: translateY(-2px);
}


.btn-secondary {
	background-color: transparent;
	color: white;
	padding: 10px 20px;
	border: 2px solid white;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
	text-align: center
}

.btn-secondary:hover {
	background-color: white;
	color: #2c3e50;
}

.section-title p {
	font-size: 18px;
	font-weight: 500;
	color: #ED1C24;
}

.hearing-aid {
	width: 120px;
	height: 200px;
	background: linear-gradient(145deg, #bdc3c7, #ecf0f1);
	border-radius: 30px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hearing-aid::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: #95a5a6;
	border-radius: 50%;
}

.bluetooth-label {
	position: absolute;
	bottom: 50px;
	right: -50px;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 12px;
}

/* Products Section */
.products {
	padding: 40px 0 60px 0px;
	/*            background-color: #f8f9fa;*/
}

/*.products .container {

	margin: 0 auto;
	padding: 0 20px;
}*/

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 70px;
	color: #15181B;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 70px;
}
.section-title h2 a{color: #15181B;text-decoration: none;}
.section-title h2 a:hover{color: #ED1C24;}
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	/*            margin-bottom: 50px;*/
}

.product-card {
	background: #fff;
	overflow: hidden;
	transition: transform 0.3s;
	border: 1px solid #e0e0e0;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-image {
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden
}

.product-image img {
	transition: .5s;
}

.product-image img:hover {
	transform: scale(1.2);
}

.product-info {
	padding: 20px;
}

.product-info h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #000;
	font-family: poppins;
}

.product-info p {
	color: #4D4D4D;
	font-size: 14px;
	margin-bottom: 15px;
	text-align: justify;
	line-height: 22px;
}

.get-pricing {
	background-color: transparent;
	color: #000;
	padding: 8px 20px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid #ED1C24;
	font-family: poppins;text-decoration: none;
}

/* About Section */

.about {
	padding: 10px 0px 60px 0;
	background-color: white;
}

.about .container {
	max-width: 1600px;
	margin: 0 auto;
	/*padding: 0 20px;*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-content h2 {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 20px;
}
.about-content h3 {
	font-size: 28px;
	color: #2c3e50;
	margin-bottom: 20px;
}
.about-content p {
	color: #6E6E6E;
	margin-bottom: 20px;
	line-height: 30px;
	font-size: 18px;text-align: justify;
}

.about-image img {
	max-width: 100%;
	border-radius: 10px;border: 1px solid #dfdfdf;
}

.about-content .section-title-left {
	text-align: left;
}

.section-title-left {
	margin-bottom: 0;
}

.section-title-left p {
	font-weight: 400;
	font-size: 18px;
	color: #ED1C24;
	margin-bottom: 0;
}

.section-title-left h2 {
	font-size: 50px;
	font-weight: 500;
	line-height: 60px;
}


/* Testimonials */
.testimonials {
	padding: 60px 0;
	background-color: #F0F0F0;
}

.testimonials .container {
	max-width: 1600px;
	margin: 0 auto;
	/*padding: 0 20px;*/
}

.testimonials-subtitle {
	text-align: center;
	color: #e74c3c;
	font-size: 18px;
	margin-bottom: 50px;
}

.testimonials-grid {
	margin-top: 30px;
}

.testimonial-card {
	background: white;
	padding: 60px 30px 30px 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	height: 100%;
}

/*.testimonial-card {transition: transform 0.3s ease;
            }


            .testimonial-card:hover {
                transform: translateY(-5px);
            }

*/

.testimonials-grid.owl-carousel .owl-stage-outer {
	padding-top: 30px;
	padding-bottom: 30px;
}

.testimonials-grid.owl-carousel.owl-carousel .owl-stage {
	display: flex;
}

.testimonial-carousel {
	position: relative;
}

.testimonial-item {}


/* Owl Carousel Custom Styles */
.testimonials .owl-dots {
	text-align: center;
	margin-top: 40px !important;
}


.testimonials .owl-theme .owl-dots .owl-dot span {
	display: inline-block;
	width: 12px !important;
	height: 12px !important;
	background: #B39D96 !important;
	border-radius: 100%;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span {
	background: #F44E19 !important;
	transform: scale(1.2);
}

.testimonial-text {
	color: #555555;
	margin-bottom: 20px;
	line-height: 30px;
	font-size: 18px;
}

.testimonial-author {
	font-weight: 600;
	color: #000;
	font-size: 18px;
}


.global-brands-carousel {
	position: relative;
}


.quote-icon {
	top: -30px;
	left: 30px;
	font-size: 30px;
	color: #fff;
	line-height: 1;
	position: absolute;
	background: #ED1C24;
	border-radius: 100%;
	width: 60px;
	height: 60px;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
}

.stars {
	color: #FFA54B;
	margin-bottom: 15px;
	display: flex;
	gap: 2px;
}


/* Services Grid */
.services {
	padding: 60px 0;
	background-color: white;
}

.services .container {
	max-width: 1600px;
	margin: 0 auto;
	/*padding: 0 20px;*/
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	text-align: left;
	padding: 0px;
	border-radius: 10px;
	transition: transform 0.3s;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	width: 60px;
	height: 60px;
	background-color: #e74c3c;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
}

.service-card h3 {
	font-size: 20px;
	color: #2c3e50;
	margin-bottom: 15px;
}

.service-card p {
	color: #4D4D4D;
	font-size: 16px;
}

.experience-section {
	background-color: #fdf7f4;
	text-align: center;
	margin-bottom: 0;
	border-bottom: none;
	border: 1px solid #EACFC2;
	padding: 20px 0px;
	/*    margin-bottom: 30px;*/
}

.info-section {
	border: 1px solid #e0e0e0;
	padding: 20px 20px;
	height: 100%
}

.service-card {
	transition: all 0.3s ease;
}

.company-name {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	padding-bottom: 15px
}

.contact-buttons {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.contact-btn {
	color: #4D4D4D;
	text-decoration: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	border: 1px solid #4D4D4D;
	line-height: 28px;
}

.brand-logo {
	transition: transform 0.3s ease;
}


.brand-logo:hover {
	transform: translateY(-5px);
}


/* FAQ Section */

.faq {
	background: #fff;
	height: auto;
/*	background-size: cover;*/
	align-items: center;
	display: flex;
}

.faq .container {
	width: 100%;
	margin: 0 auto;
	padding: 0 0;
}



.faq .container {
    max-width: none;
	width: 100%;
	margin: 0 auto;
	padding: 0 ;

}

.left-part {
padding: 50px 60px;
background: url('../img/counter-bg.jpg');
background-repeat: no-repeat;
background-size: cover;
position: relative;

align-items: center;
}
.left-part::after {
    
  background: radial-gradient(50% 50% at 50% 50%, #000 0%, #000 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
    left: 0;
  opacity: 0.7;    
}

.stats-grid {
	display: flex;
/*	grid-template-columns: 1fr 1fr;*/
	gap: 30px;
	position: relative;
	z-index: 2;
	margin: 0px 0 0;
    flex-wrap: wrap;
}
.stat-card {
background: #F0F0F0;
border-radius: 0;
padding: 40px 25px;
text-align: center;
transition: all 0.4s ease;
border: 1px solid #D6D6D6;
display: flex;
align-items: center;
width: calc(25% - 25px);
}

.stat-card .cards {
	width: 100%;
	margin: 0;
}
.stat-card p {
	color: #4D4D4D;
	font-size: 17px;
    font-weight: 600;
}

.right-part {
	background: linear-gradient(90deg, #B11E28 0%, #DF5E25 100%);
	padding: 50px 60px;
	color: white;
}




@media (max-width: 991px) {
.faq .container {
    grid-template-columns: 1fr;
   height: auto;
}
}



.faq-content {
	width: 100%;
	margin-left: auto;
}

.faq-content h2 {
	font-size: 50px;
	margin-bottom: 30px;
	text-align: center;
	color: #fff;
}


.faq-title {
	font-size: 36px;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
	font-weight: 300;
	letter-spacing: 1px;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 10px;
	overflow: hidden;
	background: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.faq-question {
	background: #fff;
	color: #555;
	padding: 12px 20px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: #fff;
}

.faq-question.active {
	background: #434343;
	color: #fff;
	border-radius: 10px;
}

.faq-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 20px;
	background: white;
	color: #555;
	line-height: 1.6;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer.active {
	padding: 20px;
	max-height: 200px;
}

.faq-answer p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #3F3F3F;
}


/* Brands Section */
.brands {
	padding: 60px 0 60px 0;
	/*            background-color: #f8f9fa;*/
}

.brands .container {
	max-width: 1600px;
	margin: 0 auto;
	/*padding: 0 20px;*/
}

.brands h2 {
	margin-bottom: 30px;
}

.brand-logo {
	height: 130px;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #2c3e50;
	border: 1px solid #D3D3D3;
	/* padding: 36px 0px; */
}

/* Footer */
.footer {
	background: #333;
	color: white;
	padding: 60px 0 20px;
}

.footer .container {
	max-width: 1600px;
	margin: 0 auto;
	/*padding: 0 20px;*/
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 20px;
	margin-top: 0px;
}

.footer .logo {}

.footer .logo img {
	max-height: 100px
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 40px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(227, 6, 19, 1);
	color: white;
	margin-right: 0px;
	transition: all 0.3s;
	text-decoration: none;
}

.footer-section h3 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	/* font-size: 16px; */
}

.footer-section ul li a:hover {
	color: rgba(227, 6, 19, 1);
}

.footer-section .contact-details p {
	color: #fff;
	line-height: 28px;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;

}

.footer-section .contact-details a {
	color: #fff;
	text-decoration: none;
}

.footer-section .contact-details p i {
	position: absolute;
	left: 0px;
	top: 7px;
	font-size: 18px;
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding-top: 20px;
	text-align: center;
	color: #95a5a6;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	font-size: 14px;
	color: #fff;
}

.footer-bottom a {
	color:#ED1C24;
	text-decoration: none;
}

.footer-bottom .copy-right {
	text-align: left;
}

.footer-bottom .developed-by {
	text-align: right;
}

.subscription-container {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.subscription {

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.subscription-container h2 {
	font-size: 32px;
	font-weight: 600;
	line-height: 46px;
}

.subscription-form {
	display: flex;
	gap: 20px;
	width: 100%;
}

.subscription-content p {
	color: #6E6E6E;
	margin-bottom: 20px;
	line-height: 30px;
	font-size: 18px;
	text-align: justify;
}

.form-input {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	outline: none;
}

.form-group {
	flex: 1;
}


.owl-carousel .owl-item img {
	display: block;
	width: auto !important;
}

.owl-carousel.owl-drag .owl-item {
	padding-top: 10px;
}










   .grid-container {
     display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
    }

.card:first-child {
  width: calc(66.66% - 30px);
}

.card  {
    width: calc(33.33% - 30px);
  	margin: 15px;
  	background-color: #ccc;  
  	overflow: hidden;
 	position: relative;
	border: 1px solid #d6d6d6;
 }

.quality-item-content, .quality-item-content .icon, .quality-item-content .quality-item-icon:after, .quality-item-img img{
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.quality-item{
  background: rgba(21, 24, 27, 0.7);
  border-radius: 10px;
}

.quality-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quality-item-content {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.quality-item-content .quality-item-icon {
  width: 100%;
  top: 0;
  left: 0;
  display: flex;  
  align-items: center; 
  justify-content: center;
  height: calc(100% - 10px);
}

.quality-item-content .icon {
  width: 80px;
  height: 80px; 
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  z-index: 1; 
  justify-content: center;
  border-radius: 500px;
  background: #fff;
  text-decoration: none;color: #f00;font-size: 20px;
}

/* image hover BAckground black */
.quality-item-content .quality-item-icon:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(21, 24, 27, 0.7);
	
}

/* image hover effect */
.quality-item:hover .quality-item-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* on image hover content visible with opacity */
.quality-item:hover .quality-item-content {
	opacity: 1;
	visibility: visible;
}


.contact-info-mobile {
	display: none;
}



#toTopBtn {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	font-size: 16px;
	background-color: #333;
	color: white;
	border: none;
	outline: none;
	padding: 12px 16px;
	border-radius: 100px;
	cursor: pointer;
}


/* about us */

.breadcrumb {
      list-style: none;
      display: flex;
      padding: 10px;    
      border-radius: 5px;
    }

    .breadcrumb li {
      /*margin-right: 10px;*/
    }

    .breadcrumb li+li:before {
      content: ">";
      margin: 0 10px;
      color: #fff;
    }

    .breadcrumb li a {
      text-decoration: none;
      color: #f0f0f0;
    }

    .breadcrumb li a:hover {
      text-decoration: underline;
    }
   .pageTitle {    
    padding: 130px 0 100px;
    color: #fff;   
    position: relative;
    z-index: 9;
    background: url(../img/inner-page-banner.png) center center no-repeat;
    background-size: cover;
}

.pageTitle::after {
    background: radial-gradient(50% 50% at 50% 50%, #4D4D4D 0%, #4D4D4D 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    opacity: 0.9;
}

.pageTitle h1 {
    margin: 0;
    padding: 0;
    font-size: 55px;
    line-height: 65px;
    color: #fff;
}

.pageTitle .container{position: relative;z-index: 1;}


.about.aboutus_page {
	padding: 60px 0px 60px 0;

}

.our-mission-vision .container{
	 display: grid;      
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
      text-align: center;
}

.aboutus-box {
      padding: 0px;
    }

    .aboutus-box img {
       margin-bottom: 0px;
    }

    .aboutus-box h3 {
     font-size: 20px;
  margin-bottom: 10px;
  color: #000;
  font-family: poppins;
    }

   .aboutus-box p {
	color: #4D4D4D;
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 32px;
}

.list{padding: 15px 0px;}
.list li{list-style: none; font-size:18px; color:#6E6E6E;font-weight: 400;position: relative;padding-left: 32px;padding-bottom: 5px;}
.list li i{color: #ED1C24;position: absolute;left: 0;top: 7px;}

.getin-touch p {
	font-size: 24px;
	color: #000004;
	margin: 20px 0px 20px 0px;
}

 .contact-form {      
      padding: 30px;     
      margin: 0 auto;    
      border-radius: 10px;
      width:100%;
      z-index: 999;
    }
 .contact-form h2 {
      margin-bottom: 20px;font-size:28px;font-weight:600;  color:#17181B
    }



    .form-group {
      margin-bottom: 15px;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .form-row .form-group {
      flex: 1;
      min-width: 200px;
    }

    .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 400;color:#5E6065;font-size:20px;
    }

   .form-group input,
    .form-group textarea {
      width: 100%;font-family: "Poppins", sans-serif;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

   .form-group textarea {
      height: 100px;
      resize: vertical;
    }

    .submit-btn {
      background-color: #000;
      color: #fff;
      border: none;
      padding: 12px 20px;
      font-size: 20px;
      cursor: pointer;
      width: 100%;      
      transition: background 0.3s ease;font-weight:500;
    }

 .submit-btn:hover {
    background-color: #ed1c24;
}

    .contact-us {
    margin: 0 auto;
    padding: 20px 0px;
    display: grid;
    grid-template-columns: 1fr  2fr;
    gap: 50px;
    align-items: center;
}

.contact-form-right{background: #f6f6f6;border-radius: 10px;height: 100%;}

    .aboutus-detail {
    text-align: center;
    padding: 0px;
    border-radius: 10px;
    transition: transform 0.3s;
    height: 100%;
    background: #fff;
    border: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.card-info-section {
    padding: 10px 0px;  
}
.aboutus-detail h3 {
    margin: 0px 0px 20px 0px;
    font-size: 26px;
    color: #2D4291;
    font-weight: 600;
}
.contact .aboutus-detail p {
    position: relative;
}
.contact .aboutus-detail p i {
    color: #ed161e;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 22px;
}
.aboutus-detail p {
    color: #32323A;
    font-size: 18px;
    line-height: 32px;
    padding-top: 0px;
}
.contact .aboutus-detail {
    text-align: left;padding: 40px;
}
.address_p {
    padding-left: 26px;
    padding-bottom: 10px;
}
.contact-us-left{height: 100%;}
.address_c {
    padding-left: 40px;
    padding-bottom: 10px;
}
.contact .aboutus-detail p a {
    color: #32323A;
    text-decoration: none;
}

/* productpage */

/*.products-grid-page{
	grid-template-columns: repeat(4, 1fr);}

.products-grid-page{display: flex;justify-content: center; flex: 0 0 25%;}*/

.products-grid-page {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	margin-bottom: 30px;
}

.products-grid-page .product-card {   
    flex: 0 0 23%;
}


.product-page-image {
    height: 280px;
    display: block;
    align-items: center;
    position: relative;
  }

.product-info-name {
	padding: 10px 20px;
	position: absolute;
	bottom: 0px;
	background: #575757;
	width: 100%;
}
.product-info-name h3 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #fff;
    font-family: poppins;
}
.product-page h2{margin: 0px 0px;font-size: 36px;font-weight: 500;}
.pageTitle .container {
/*	padding: 0px 15px;*/
}


.thankyou .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 60px;  
    align-items: center;
}

.thankyou .section-title h2 {
    font-size: 40px;
    color: #15181B;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 50px;
}

.product-page-image img{max-width: 100%;width: 100%;}




hr {
    border: none;
    width: auto;
    height: 70px;
    border-bottom: 1px solid #d6d6d6;
    box-shadow: 0 16px 12px -20px #959393;
    margin: -20px auto 20px;
    background: 0 0;
    opacity: .9;
}


.mr-5{margin-right: 10px;}



.gallerysingle{position:relative; text-align:center; margin:0 auto;}
.gallerysingle a{position:relative; width:180px; height:140px; display:inline-block; background-color:#f6f6f6; border:4px solid #fff; box-shadow: 0 0 0 1px #ddd; background-position:center center; background-repeat:no-repeat; background-size:100% auto;transition:all ease-in-out 0.5s; margin:5px 6px;}
.gallerysingle a .img-overlay {background-color: rgba(0,0,0,.6); color: #fff;position: absolute;left: 0;right: 0;font-size: 30px;top: 0;bottom: 0;line-height: 140px; transition: ease-in-out 0.5s;     transition-property: visibility,opacity,background-color; visibility:hidden; opacity:0;}
.gallerysingle a:hover .img-overlay{visibility:visible; opacity:1;}


/*.homeSlider {
   height: 79vh;
    min-height: 750px;
}*/
/*.homeSlider {
    position: relative;
    padding-top: 0;
}*/
.wow {
    visibility: hidden;animation-delay: 0.2s;
}
.mb20{margin-bottom:20px !important;}




