 @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
		--primary-color: #2c7d75;
		--hover-color: #1b5e57;
		--accent-color: #ffa726;
		--border-color: #e0e0e0;
		--shadow-color: rgba(0, 0, 0, 0.12);
		--text-primary: #2d3436;
		--text-secondary: #636e72;
		--bg-hover: #f0f5f5;
	}

	.navbar {
		background-color: white;
		padding: 0.7rem 2rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 1000;
		box-sizing: border-box;
		border-bottom: 1px solid #f0f0f0;
	}

	.brand {
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.brand img {
		height: 40px;
	}

	 .font-bengali {
	     font-family: 'Noto Serif Bengali', serif;
	 }

	.app-launcher-btn {
		width: 42px;
		height: 38px;
		border-radius: 6px;
		border: none;
		background: transparent;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 8px;
		transition: background-color 0.2s, transform 0.1s;
	}

	.app-launcher-btn:hover {
		background-color: var(--bg-hover);
	}

	.app-launcher-grid {
		display: none;
		position: fixed;
		top: 65px;
		right: 20px;
		background: white;
		border-radius: 12px;
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
		padding: 24px;
		max-width: 340px;
		max-height: 520px;
		overflow-y: auto;
		z-index: 1001;
	}

	.app-launcher-grid.active {
		display: block;
		animation: fadeIn 0.2s ease-out;
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
			transform: translateY(-8px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	.app-launcher-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
		padding-bottom: 16px;
		border-bottom: 2px solid var(--border-color);
	}

	.app-launcher-header h3 {
		margin: 0;
		font-size: 18px;
		font-weight: 600;
		color: var(--primary-color);
	}

	.app-launcher-search {
		position: relative;
		margin-bottom: 20px;
	}

	.app-launcher-search input {
		width: 85%;
		padding: 12px 12px 12px 40px;
		border: 2px solid var(--border-color);
		border-radius: 8px;
		font-size: 14px;
		outline: none;
		transition: border-color 0.2s, box-shadow 0.2s;
	}

	.app-launcher-search input:focus {
		border-color: var(--primary-color);
		box-shadow: 0 0 0 2px rgba(44, 125, 117, 0.2);
	}

	.app-launcher-search svg {
		position: absolute;
		left: 14px;
		top: 50%;
		transform: translateY(-50%);
		width: 16px;
		height: 16px;
		color: var(--text-secondary);
	}

	.app-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}

	.app-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		color: var(--text-primary);
		padding: 10px 6px;
		border-radius: 10px;
		transition: all 0.2s;
		border: 1px solid transparent;
	}

	.app-item:hover {
		background-color: var(--bg-hover);
		border-color: var(--border-color);
		transform: translateY(-3px);
		box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	}

	.app-icon {
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 8px;
		background-color: #f5f5f5;
		position: relative;
		overflow: hidden;
		/*
		clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
		*/
	}

	.app-icon img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.app-name {
		font-weight: 500;
		font-size: 12px;
		text-align: center;
		margin-bottom: 2px;
		color: var(--text-primary);
	}

	.app-category {
		font-size: 10px;
		color: var(--text-secondary);
		text-align: center;
		margin-top: 2px;
	}

	.app-launcher-sections {
		margin-top: 24px;
	}

	.app-section {
		margin-bottom: 24px;
	}




	.app-section-btn {
		position: relative;
		overflow: hidden;
	}

	.app-section-btn::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(120, 113, 108, 0.1);
		transform: translate(-50%, -50%);
		transition: width 0.6s, height 0.6s;
	}

	.app-section-btn:hover::before {
		width: 400px;
		height: 400px;
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.fade-in-up {
		animation: fadeInUp 1s ease-out forwards;
	}

	.delay-1 {
		animation-delay: 0.1s;
		opacity: 0;
	}

	.delay-2 {
		animation-delay: 0.2s;
		opacity: 0;
	}

	.delay-3 {
		animation-delay: 0.3s;
		opacity: 0;
	}

	.section-title {
		font-size: 14px;
		font-weight: 500;
		color: var(--text-secondary);
		margin-bottom: 16px;
		padding-bottom: 8px;
		border-bottom: 1px solid var(--border-color);
	}

	.empty-state {
		text-align: center;
		padding: 24px;
		color: var(--text-secondary);
	}

	.my-account-link {
		display: block;
		text-align: center;
		margin-top: 20px;
		color: white;
		background-color: var(--primary-color);
		text-decoration: none;
		font-size: 14px;
		font-weight: 500;
		padding: 10px;
		border-radius: 6px;
		transition: background-color 0.2s, transform 0.1s;
	}

	.my-account-link:hover {
		background-color: var(--hover-color);
		transform: translateY(-2px);
	}
	
	body {
		margin: 0;
		font-family: 'Lato', sans-serif;
		background-color: #F8F9FA;
		color: #495057;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	
	.animated-element {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	}

	.animated-element.is-inview {
		opacity: 1;
		transform: translateY(0);
	}


	.glass-effect-screenshot {
		background: rgb(0, 0, 0);
		backdrop-filter: none;
		border: 1px solid #00000073;
	}

