  
        /* Apply Inter font to the entire body */
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f7f7f7; /* Light gray background */
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }

        /* Custom styles for the header gradient (Bootstrap doesn't have native gradient classes like Tailwind) */
        .header-gradient {
            background: linear-gradient(to right, #2563eb, #10b981); /* from-blue-600 to-green-500 */
        }

        /* Custom styling for navigation buttons to mimic original design */
        .nav-button-custom {
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid transparent;
            background-color: #1d4ed8; /* Blue-700 equivalent */
            color: white;
            padding: 0.5rem 1.5rem !important; /* px-5 py-2 equivalent */
            border-radius: 9999px; /* rounded-full equivalent */
            font-weight: 500; /* font-medium equivalent */
            text-align: center;
            display: block; /* For full width on mobile */
            width: 100%;
			margin-left:25px;
            margin-bottom: 0.5rem; /* Space between buttons on mobile */
        }
        .nav-button-custom:hover {
            background-color: #1e40af; /* Blue-800 equivalent */
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
            border-color: #a7f3d0; /* Light green border on hover */
            color: white; /* Ensure text color remains white on hover */
        }
        @media (min-width: 768px) { /* md breakpoint */
            .nav-button-custom {
                width: auto; /* Revert to auto width on larger screens */
                margin-bottom: 0; /* Remove bottom margin on larger screens */
            }
        }

        /* Style for section titles */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bolder; /* extrabold equivalent */
            color: #333; /* Darker text */
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #3b82f6; /* Blue underline */
            border-radius: 9999px; /* Pill shape */
        }

        /* Custom card hover effect */
        .product-card, .why-choose-card, .blog-card {
            transition: all 0.3s ease-in-out;
        }
        .product-card:hover, .why-choose-card:hover, .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important; /* !important to override Bootstrap shadow-lg */
        }

        /* Custom shadow for footer to mimic shadow-inner */
        .footer-shadow-inner {
            box-shadow: inset 0 8px 10px -7px rgba(0,0,0,0.3);
        }

         .slider {
      height: 300px;
      position: relative;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 100%;
      left: 0;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: top 1s ease-in-out;
      background-size: cover;
      background-position: center;
    }
    .slide.active {
      top: 0;
    }

.p-img{
	width:100%;
	border-radius: 50px;
    border: 2px #0f0 solid;
}	
