 /* ✅ Embed Switzer-Variable Font */
        @font-face {
            font-family: 'Switzer';
            src: url('assets/fonts/Switzer-Variable.ttf') format('truetype'),
                 url('assets/fonts/Switzer-VariableItalic.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        /* ✅ Set Switzer as Default Font for Everything */
        * {
            font-family: 'Switzer', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ✅ Header Styling */
        .header {
            background-color: #a4ff00 !important;
            padding: 15px 0;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-logo {
            display: flex;
            align-items: center;
        }

        .header-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .header-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #000;
        }

        .auth-buttons .btn {
            margin-left: 10px;
        }

        /* ✅ Hero Section */
        .hero-section {
            background-color: #fff;
            padding: 50px 20px;
            text-align: center;
            border-radius: 10px;
            color: black;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .hero-section p {
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* ✅ Instagram Widget */
        .elfsight-app {
            display: block;
            margin: 0 auto;
            max-width: 100%;
        }

        /* ✅ Hide "Load More" button & Elfsight Branding */
        .eapps-instagram-feed-posts-grid-load-more-container,
        a[href*="elfsight.com"] {
            display: none !important;
        }

        /* ✅ Footer */
        .footer {
            background-color: #222;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }

        .footer h5 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 8px;
        }

        .footer ul li a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer ul li a:hover {
            text-decoration: underline;
        }
		
		/* ✅ Add border-radius to the Instagram widget */
.elfsight-app {
    border-radius: 15px;  /* Adjust this value as needed */
    overflow: hidden;      /* Ensures rounded corners apply properly */
}

.no-dec
{
	text-decoration: none !important;
}

.btn-link
{
	text-decoration: none !important;
}


		