@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
html {font-family: sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; overflow-x: hidden; }

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
	line-height: 1.6;
	color: #333;
	font-weight: 400;
	font-size: 17px;
}

h1,
h2,
h3,
h4 {
	font-family: "Poppins", sans-serif;
	
	font-weight: 600;
}

p{padding-bottom: 10px;}

.mr-2 {
	margin-right: 10px
}

.container {
	max-width: 1600px;
	margin: 0px auto;
}

/* Header Styles */
.header-top {
	background-color: #5A5B5E;
	color: white;
	padding: 8px 0;
	font-size: 16px;
	height: auto;
}

.header-top a {
	color: #fff;
	text-decoration: none;
}

.header-top a:hover {
	color: #fff;	
}

.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: 100px;
}

.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;
}

/*main-menu */

.main-nav {
	display: flex;
	align-items: center;
	gap: 35px;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
	align-items: center;

	 
}

.nav-item {
	position: relative;
	margin: 0 10px;
}

.nav-link {
	display: flex;
	align-items: center;
	color: #2c3e50;
	text-decoration: none;
	font-size: 18px;
	transition: color 0.3s ease;
	position: relative;
	z-index:8;
}

.nav-link:hover,.nav-link.active {
	color: #e30613;
}


.nav-link:hover::after {
	width: 80%;
}

/* Dropdown Arrow */
.dropdown-arrow {
	margin-left: 8px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
	/*transform: rotate(180deg);*/
}

/* Dropdown Menu */
.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 250px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	/*overflow: hidden;*/
	text-align: left;
}

.nav-item:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	list-style: none;
}

.dropdown-link {
	display: block;
	padding: 12px 20px;
	color: #2c3e50;
	text-decoration: none;
	font-size: 16px;
	 transition: all 0.3s ease; 
	 border-bottom: 1px solid #f1f3f4; 
	font-family: poppins;
}


.dropdown-link:hover {
	background: #f8f9fa;
	color: #E30613;
	padding-left: 30px;
}

.dropdown-item:last-child .dropdown-link {
	border-bottom: none;
}

/* Sub Dropdown */
.sub-dropdown {
  display: none;
  position: absolute;
  top: auto;
  left: 100%;
 background: white;
	min-width: 250px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
}

.dropdown-item:hover > .sub-dropdown {
  display: block;
}



/* Mobile Menu Toggle */
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
	color: #2c3e50;
	padding: 10px;
	width: 50px;
}


/* Animation for mobile menu */
@keyframes slideIn {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0);
	}
}

.nav-menu.active {
	animation: slideIn 0.3s ease; 

	   /* animation: slideDown 0.3s ease-out forwards; */

}


/* End main-menu */

.appointment-button {
	background-color: #CE0000;
	font-family: "Poppins", sans-serif;
	color: white;
	padding: 10px 30px;
	border: none;
	cursor: pointer;
	font-weight: 400;
	text-decoration: none;
	transition: background-color 0.3s;	
	line-height: 30px;
	font-size: 18px;
	text-align: center;
	display: inline-block;
}

.appointment-button:hover {
	background-color: #c0392b;
}
.btn-default{
	background-color: #CE0000;
	font-family: "Poppins", sans-serif;
	color: white;
	padding: 10px 30px;
	border: none;
	cursor: pointer;
	font-weight: 400;
	text-decoration: none;
	transition: background-color 0.3s;	
	line-height: 30px;
	font-size: 18px;
	text-align: center;
	display: inline-block;
}
.btn-default:hover {
	background-color: #c0392b;
}
.get-quote-btn{
	background: #003466;
	color: white;
	padding: 10px 30px;
	border: none;
	cursor: pointer;
	font-weight: 400;
	text-decoration: none;
	transition: background-color 0.3s;	
	line-height: 30px;
	font-size: 18px;
	text-align: center}

.get-quote-btn:hover {
	background-color: #003466;
}


.pl-2{padding-left: 10px;;}

/* Slider Banner */


.slider-container {
	/* */
	/* background: url('../img/banner-background.jpg'); */
	position: relative; 
	overflow: hidden;
	/*
            height: 70vh;
         
*/
}

.slide .container {

	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;width:1600px;
}


.slide1{position: relative;background: url(../img/slider1.jpg) center/cover no-repeat;
overflow: hidden;}
.slide2{position: relative;background: url(../img/slider2.jpg)  center/cover no-repeat;
overflow: hidden;}
.slide3{position: relative;background: url(../img/slider3.jpg)  center/cover no-repeat;
overflow: hidden;}
.slide4{position: relative;background: url(../img/slider4.jpg)  center/cover no-repeat;
overflow: hidden;}
.slider {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	height: 700px;	           
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 50px 50px;	
	position: relative;
	background-position: center center;
	
/* background-repeat: no-repeat;
  background-position: right top;
  background-size: cover; */

}

.slide::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.2),
      rgba(0, 0, 0, 0)
  );
  z-index: 1;
}
.slide-content {
	color: white;
	width:100%;
	z-index: 2;
	
}

.slider-container .container {
	overflow: hidden;	
}

.slide-content h2 {
    font-size: 60px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.slide-buttons {
	display: flex;
	gap: 20px;
	align-items: center;
}


.slide-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* 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: 62%;
	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 {
	
	color: #fff;

}

.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;
}



/* About Section */
.about {
	padding: 60px 0px 60px 0;
	background-color: white;
}

.about .container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 50px;
	vertical-align: top;
}

.about-content h2 {
	
	color: #003466;
	margin-bottom: 20px;
    font-size: 50px;
    font-weight: 400;
    line-height: 56px;


}

.about-content p {
	color: #555555;
	margin-bottom: 20px;
	
	
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    /* height: 320px; */
}

.about-content .section-title-left {
	text-align: left;
}

.aboutus-img-bototm {
    gap: 15px;
    margin-top: 8px;
    grid-template-columns: 1fr 1fr;
    display: grid;
}


/* Products Section */
.products {
	padding: 60px 0;
	/*            background-color: #f8f9fa;*/
}

.products .container {

	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	margin-bottom:0px;
}

.section-title h2 {
	font-size: 40px;
	color: #fff;
	margin-bottom: 10px;
	font-weight: 600;
	line-height: 66px;
}

.section-title-left {
	margin-bottom: 0;
}

.section-title-left p {
    font-weight: 500;
    font-size: 18px;
    color: #6C6C6C;
    margin-bottom: 0;
    text-transform: uppercase;
	border-bottom:3px solid #CE0000;
	display:inline-block;
	margin-bottom: 10px;
}

.section-title-left h2 {
      /*padding-top: 10px;*/
     color: #003466; 
}


.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	/*            margin-bottom: 50px;*/
}


.product-card:hover {
	transform: translateY(-5px);
}

/* product-slider */

.product .section-title p {   
    width: 80%;
    margin: 0px auto;
}
.product {
	padding: 60px 0;
	background-color: #fff;position: relative;
}

.product-grid.owl-carousel .owl-stage{display:flex;}
.product-grid.owl-carousel .owl-item img{margin:auto; max-height:340px;}
.product-grid .product-card{background-color:#042340}


.product::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 70%;
	top: 0;
	background-color: #003466;
}

.product .container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;position: relative;
}


.product-grid {
	margin-top: 30px;
}

.product-card {
	
	padding: 0;
	border-radius: 0;
	
	position: relative;
	height: 100%;
    position: relative;transition: transform 0.3s;
}

.pe-grid.owl-carousel.owl-carousel .owl-stage {
	display: flex;
}

.product-carousel {
	position: relative;
}

.product-item {}


/* Owl Carousel Custom Styles */
.product .owl-dots {
	text-align: center;
	margin-top: 40px;
}


.product .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;
}

.product .owl-theme .owl-dots .owl-dot.active span {
	background: #F44E19 !important;
	transform: scale(1.2);
}

.product-grid.owl-carousel .owl-stage::after{
    display: none;
}


.product-card img{
    max-width: 100%;
    height: auto;
    display: block;
}

.product-card .name-link {
	position: relative;
	width: 100%;
	height: auto;
	left: 0px;
	bottom: 0px;
	padding: 12px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:20px;
}
.product-card .name-link a{color:#222; text-decoration:none;}
.product-card .name-link h2{
font-family: 'Exo';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 30px;
color: #000000;
}

.product-card .name-link a.link i{
    color: rgba(206, 0, 0, 1);
    font-size: 20px;

}

.global-brands-carousel {
	position: relative;
}

/* quality policy */

.quality-policy{background: #003466;}
.quality-policy h2{text-align: left;}

.quality-policy .about-content p{color: #fff;}

 .animation-part-left .aboutus-img-top {           
            transition: transform 0.3s ease;
        }

.animation-part-left .aboutus-img-top:hover{
	transform: scale(1.02);
}

/* Brands Section */

.brands {
	padding: 40px 0;	
}

.brands .container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}

.brands h2 {
	margin-bottom: 30px;
}
.text-left{text-align:left !important}

 .logo-slider {
    background: #fff;
    padding: 20px 0;
     mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 14%, rgb(0, 0, 0) 86%, rgba(0, 0, 0, 0) 95%);
  }
  .home-product-slider{
	  background: #fff;
    padding: 20px 0;
     mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 14%, rgb(0, 0, 0) 86%, rgba(0, 0, 0, 0) 95%);
	  
  }

  .slider-row,.product-slider-row {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .slide-track,.product-slide-track {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
  }

.slide-track img {
    height: 140px;
    margin: 0 10px;
    object-fit: contain;
    background: #fff;
    border-radius: 30px;
    padding: 10px;    
    border: 1px solid #CECECE;
	max-width:160px;
  }
.slide-track.homeproduct img {max-width:340px; min-width:340px; height:260px;}
/* certificates */

.certifications{padding-top: 60px;}
.certificats1-slider{ background: #fff;
    padding: 20px 0;}

.certificats1-slider .slide-track img {
    height: 270px; max-width:inherit;
    margin: 0 10px;
    object-fit: contain;
    background: #fff;
    border-radius: 0px;
    padding: 0px;    
    border: 1px solid #222;
  }


/*
.slider-container-brand {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 20px 0;
mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 14%, rgb(0, 0, 0) 86%, rgba(0, 0, 0, 0) 95%);

}

.slider-row {
  display: flex;
  gap: 20px;
  animation: scroll-left 25s linear infinite;
}

.slider-row.reverse {
  animation: scroll-right 25s linear infinite;
}

.slider-item {
  flex: 0 0 auto;
  background: #fff;
  
  border-radius: 30px;
 border:1px solid #CECECE;
  display: flex;
  align-items: center;
  justify-content: center;  
}

.slider-item img {
    height: 150px;
    width: auto;
    max-width: 270px;
    object-fit: contain;border-radius:30px;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

 Responsive tweaks 
@media (max-width: 768px) {
  .slider-item img {
    height: 45px;
    max-width: 120px;
  }
}

*/




/* Footer */
.footer {
	color: white;
	padding: 0px 0 0px;
}

.footer .container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 20px;
	margin-top: 40px;
}

.footer .logo {
    max-width: 300px;
    text-align: center;
    
}

.footer .logo img {
	max-height: 100%
}

.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 40px;
    max-width: 300px;
	justify-content: center;
}

.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;
}

.social-icons a:hover{transform: rotate(360deg);}


.footer-section h3 {
	color: #FFFFFF;
	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 {
	text-decoration: none;
	transition: color 0.3s;	
font-style: normal;


line-height: normal;
color: #FFFFFF;


    
}

.footer-section ul li a:hover {
	color: rgba(227, 6, 19, 1);
}

.footer-section .contact-details p {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	
	line-height: 26px;
	
	color: #FFFFFF;
}

.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;
    padding-bottom: 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 {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	color: #95a5a6;	
	font-size: 14px;
	color: #fff;
	display: flex;
	justify-content: space-between;
} 

.footer-bottom a {
	color: #fff;
	text-decoration: none;
}

.footer-bottom .copy-right {
	text-align: left;
}

.footer-bottom .developed-by {
	text-align: right;
}

.subscription-container {
	background: #CE0000;
	padding: 40px 0px;
	
	
}
.looking-for {
	display: flex;
	justify-content: space-between;
}

.subscription {
	display: flex;
	
	align-items: center;
}

.subscription-container h2 {
	font-weight: 500;
	padding-top:0px;

}

.subscription-button {
	  font-family: "Poppins", sans-serif;
	background-color: #fff;
	color: #1B1F22;
	padding: 10px 30px;
	border: none;
	cursor: pointer;
	font-weight:400;
	text-decoration: none;
	transition: background-color 0.3s;	
	line-height: 30px;
	font-size: 18px;
	text-align: center;
	display: inline-block;align-items: center;
  display: flex;
}

.subscription-button:hover {
	background-color: #f0f0f0;
}
.bg-blue{
	background: #003466;
    background: url("../img/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	background-attachment:fixed;
    background-position: center center;
}
.bg-blue:after {
    background: #003466f2;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
}
.bg-blue .container{position:relative; z-index:1;}
.text-white{color:#fff !important}

.footer-bg{
    background: #003466;
    background: url("../img/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
    padding-top: 50px;
}
.footer-bg::after {
	background: #003466f2;
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	top: 0;
}

.footer-logo-row{
    display: flex;
  justify-content: center;
 align-items: center;
  flex-wrap: wrap; 
  gap: 20px;
  margin: 0 auto 25px auto;
}
.cert-logo {
	background: white;
	border-radius: 15px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.owl-carousel .owl-item img {
	display: block;
	width: auto !important;
}

.owl-carousel.owl-drag .owl-item {
	padding-top: 10px;
}



.contact-info-mobile{display: none;}
.appointment-button-mobile{display: none;}

/*
.our-solutions .container {
    display: grid;
    flex-shrink: 0;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.our-solutions{padding: 60px 0px;}
.solution-text-part{z-index: 3; position: relative; background-color: #fff !important; padding: 30px !important;border-radius: 10px;box-shadow: 0 9px 30px 0 rgba(0,0,0,0.1);}
.our-solution-img{position: relative; margin-left: -50px; margin-top: 0; min-width: calc(50% + 50px); flex: none;}
.our-solution-img img{max-width: 100%;height: auto; border-radius: 8px;}


*/

.homeAboutNew {
    padding: 60px 0;
}

.twoColFlex {
    display: flex;
}
.twoColFlex .col {
    width: 50%;
    flex: 0 0 50%;
}
.twoColFlex .contentbox {
    padding: 40px;
    border-right: 5px solid #003466;
    border-radius: 0px 10px 10px 0px;
    
}

.img-background{
visibility: visible;
 animation-name: fadeInLeft; 
 display: block;
  background-image: url(../img/qc4.jpg);
  background-position:center center;}

.twoColFlex .img-background {
    width: 100%;
    height: 100%;
    background-size: cover;border-radius: 10px 0px 0px 10px ;
}
.bg-lightblue {
    background-color: #dcecfb;
}



:root{
      --bg:#f7fbff; --card:#ffffff; --muted:#6b7280; --accent:#0077B6; --green:#16a34a; --soft:#e6f3ff;
      --card-radius:14px; --gap:18px; --max-width:1000px;
    }
.timelinetitle{font-size:22px;font-weight:700;text-align:center;margin-bottom:30px;}

    .timeline{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;position:relative;padding:0 20px;}
    .timeline::before{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:#cfeeff;border-radius:4px;}

    .year-block{display:flex;flex-direction:column;align-items:center;position:relative;text-align:center;width:90px;}
    .bar{width:18px;border-radius:6px 6px 0 0;background:var(--accent);transition:height 0.4s;}
    .growth{margin-top:8px;font-weight:700;color:var(--green);font-size:14px;}
    .year{margin-top:8px;font-weight:600;color:var(--muted);font-size:13px;}

    .bar[data-h='10']{height:20px}
    .bar[data-h='40']{height:60px}
    .bar[data-h='80']{height:100px}
    .bar[data-h='134']{height:140px}
    .bar[data-h='340']{height:180px}
    .bar[data-h='630']{height:220px}
    .bar[data-h='900']{height:250px}

    @media(max-width:700px){
      .timeline{flex-wrap:wrap;justify-content:center}
      .year-block{width:70px;margin-bottom:20px}
    }














    /* Button styling */
    #toTopBtn {
      display: none; /* Hidden by default */
      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: 5px;
      cursor: pointer;
    }

    #toTopBtn:hover {
      background-color: #555;
    }
  


@media(max-width:800px){
.cert-logo img {height: 40px !important; width: 40px !important;
}

/*
responsive menu come from top

   @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    } */

.fullrow{padding:40px 0}

.col-21 {
	width: 48%;
	display: inline-block;
	margin: 0 3% 0 0;
	float: left
}

.col-22 {
	width: 48%;
	display: inline-block;
	margin: 0;
	float: right
}

.col-31 {
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	float: left
}

.col-32 {
	width: 31.66%;
	display: inline-block;
	margin: 0 2.5% 0 0;
	float: left
}

.col-33 {
	width: 31.66%;
	display: inline-block;
	margin: 0;
	float: left
}

.col-41 {
	width: 23.12%;
	display: inline-block;
	margin: 0 2.5% 30px 0;
	float: left
}

.col-42 {
	width: 23.12%;
	display: inline-block;
	margin: 0 2.5% 30px 0;
	float: left
}

.col-43 {
	width: 23.12%;
	display: inline-block;
	margin: 0 2.5% 30px 0;
	float: left
}

.col-44 {
	width: 23.12%;
	display: inline-block;
	margin: 0;
	float: left
}
.container2{
    margin: 0 auto;
    padding: 0 3%;
    position: relative;
}
.mb0{margin-bottom:0 !important}

.swiper-slide img{border-radius:12px;}
@media only screen and (max-width:1024px){	
	.container2{padding: 0 15px;}
}
@media only screen and (max-width:800px){	
	.col-21 {width:100% !important;display:block !important;margin: 0 0 15px 0  !important;}
	.col-22 {width:100% !important;display:block !important;}
}