/* Styling for the widget title */
.widget-title {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 25px; /* Default font size for desktop */
    color: #ff014f;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    line-height: 1.5;
    border-left: 4px solid #ff014f;
    padding-left: 10px;
}

/* Tablet screens */
@media screen and (max-width: 768px) {
    .widget-title {
        font-size: 22px; /* Slightly smaller font size */
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }
}

/* Mobile screens */
@media screen and (max-width: 480px) {
    .widget-title {
        font-size: 20px; /* Even smaller font size */
        letter-spacing: 1px;
        margin-bottom: 10px;
        border-left: 3px solid #ff014f; /* Thinner border */
        padding-left: 8px;
    }
}

 




.mobile_logo {
    max-width: 100px; /* Adjust the width as needed */
    margin: 0 auto; /* Center the logo if needed */
}

/* menu */
.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}


/* social media */




/* Styling for the social-share container */
.social-share-inner-left {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
    margin-top: 20px;
	margin-left: 10px;

     
  }
  
  /* Styling for the social-share list */
  .social-share {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
  }
  
  /* Styling for individual list items */
  .social-share li {
    position: relative;
    width: 40px; /* Decreased size */
    height: 40px; /* Decreased size */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff; /* Set background color to white */
    border: 2px solid white; /* White border for the icons */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: add shadow for better contrast */
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .social-share li a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Default icon styles */
  .social-share i, .social-share svg {
    width: 24px; /* Increased icon size */
    height: 24px; /* Increased icon size */
    color: #333;
    transition: color 0.3s ease;
  }
  
  /* Hover effect */
  .social-share li:hover {
    background-color: #007bff;
    transform: scale(1.1);
  }
  
  .social-share li:hover i, .social-share li:hover svg {
    color: #fff;
  }
  
  /* Specific colors for each social media icon */
  .social-share .facebook {
    background-color: #3b5998;
  }
  
  .social-share .twitter {
    background-color: #1da1f2;
  }
  
  .social-share .instagram {
    background-color: #e4405f;
  }
  
  .social-share .youtube {
    background-color: #ff0000;
  }
  
  .social-share .tiktok {
    background-color: #010101;
    display: flex; /* Ensure TikTok icon uses flex to align properly */
    justify-content: center;
    align-items: center;
  }
  
  .social-share .tiktok svg {
    width: 22px; /* Slightly adjust the size for TikTok icon */
    height: 22px; /* Slightly adjust the size for TikTok icon */
    fill: none;
    stroke: #fff; /* White color for TikTok's icon */
    stroke-width: 2;
  }
  
  /* Icon size on hover */
  .social-share li:hover i, .social-share li:hover svg {
    transform: scale(1.2);
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .social-share-inner-left {
      margin-top: 10px;
		margin-left: 10px;
    }
  
    .social-share {
      gap: 10px; /* Reduce gap on smaller screens */
    }
  
    .social-share li {
      width: 40px;
      height: 40px;
    }
  
    .social-share i, .social-share svg {
      width: 20px;
      height: 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .social-share-inner-left {
      margin-top: 5px;
      padding-left: 15;
    }
  
    .social-share li {
      width: 30px; /* Further decrease size for very small screens */
      height: 30px;
    }
  
    .social-share i, .social-share svg {
      width: 16px; /* Adjust icon size for very small screens */
      height: 16px;
    }
  
    .social-share {
      gap: 5px; /* Further reduce gap on very small screens */
    }
  }
  



