.logo img{
	height: 55px;
	width: 155px;
	
}
.slide1 img{
	
	height: 700px;
	background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
}

 .mob{
display: none;	
}
  @media (max-width: 767px) or (max-width: 1024px) {
        .desk {
          display: none;
        }
		.mob{
		display:inline;	 
		}
      }

.inspiro-slider .slide .sl 
 {
  padding-top: 100px;
  padding-bottom: 100px;
 margin-top: -140px;
}

.mytab {
	padding:20px;
	background-color: #ffffff;
	
  border-radius: 25px 25px 0px 0px;
  margin-left:10px;
   box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.39);
   overflow: scroll;
   width: 200px;
   height: 500px;
  
}
.mytab::-webkit-scrollbar {
    width: 6px;
	margin:20px;
}

.mytab::-webkit-scrollbar-track {
  
	margin:20px;
}

.mytab::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
	margin:5px;
}
.tabimg img{
	width: 100%;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px; /* 👈 Positioned above scroll button */
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover effect for WhatsApp button */
.whatsapp-float:hover {
    background-color: #20b358;
    transform: scale(1.1);
}

/* Tooltip base style */
.whatsapp-float::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    bottom: 18px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(10px);
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Tooltip arrow */
.whatsapp-float::before {
    content: '';
    position: absolute;
    right: 63px;
    bottom: 28px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Tooltip hover animation (slide + fade in) */
.whatsapp-float:hover::after,
.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0);
}
/*
.whatsapp-float:hover {
    background-color: #20b954;
    transform: scale(1.1);
    text-decoration: none;
    color: #fff;
} */

.whatsapp-icon {
    font-size: 34px;
}

.main_nav_item a {
    position: relative;
    padding-bottom: 10px;
}

.main_nav_item.active a::after,
.main_nav_item a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;           /* length of the bar */
    height: 5px;          /* thickness */
    background: #f7c600;  /* yellow color */
    border-radius: 10px;  /* rounded ends */
}
 
.footer_contact_item a {
    color: #ffffff;
    text-decoration: none;
}
.menu_social_item a {
    color: inherit;          /* Keeps original color */
    text-decoration: none;
}

.menu_social_item svg {
    fill: currentColor;      /* Uses inherited text color */
}
.contact_info_item a {
    color: inherit;          /* Takes color from parent (not blue) */
    text-decoration: none;   /* Removes underline */
}

.contact_info_item a:hover {
    color: inherit;          /* No color change on hover */
    text-decoration: none;
}

.contact_info_item svg {
    fill: currentColor;      /* Makes the WhatsApp icon follow text color */
}

/*--------------------
	Client design 
----------------------*/

.clients-section {
    padding: 70px 0;
    background: #f7f9fb;
}

.clients-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    letter-spacing: 0.5px;
}

.client_logo img {
    width: 160px;
    height: auto;
 /*   opacity: 0.6;
    filter: grayscale(100%); */
    transition: all 0.3s ease;
    margin: 0 auto;
}

.client_logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px);
}

/* Dots like your sample image */
.clients_slider .owl-dots {
    margin-top: 25px;
}

.clients_slider .owl-dot span {
    width: 8px;
    height: 8px;
    background: #c8c8c8 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.clients_slider .owl-dot.active span {
    background: #7d7d7d !important;
    width: 12px;
    height: 12px;
}
/* Name below the image (hidden by default) */
.client_name {
    opacity: 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    transition: 0.3s ease;
}

/* Show name on hover */
.client_logo:hover .client_name {
    opacity: 1;
}