body {
	margin: 0;
	padding: 0;
	font-family: 'Trebuchet MS', sans-serif;
}

.standard-logo {
	display: flex;
	align-items: center;
	height: 100px;
	border-left: 1px solid #0284c7;
}

.standard-logo img {
	width: 200px;
	height: 70px;
	padding: 10px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	height: 100px;
	padding: 0 20px;
}

#primary-menu ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0px;
}


#primary-menu li {
	height: 100px;
	display: flex;
	padding: 0 10px;
	justify-content: center;
	align-items: center;
}

#primary-menu li a {
	color: black;
	text-decoration: none;
	font-weight: bold;
	display: block;
	perspective: 600px;
	transition: color 0.3s;
	position: relative;
	background: none;
	border-radius: 6px;
}

#primary-menu li a .flip-text {
	display: inline-block;
	transition: transform 0.6s cubic-bezier(.4, 2, .6, 1);
	transform-style: preserve-3d;
	position: relative;
}

#primary-menu li a .flip-back {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
	background: linear-gradient(90deg, #0284c7, #075985);
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	backface-visibility: hidden;
	transform: rotateX(180deg);
	border-radius: 6px;
	/* padding: 0 8px; */
}

#primary-menu li a .flip-front {
	display: inline-block;
	backface-visibility: hidden;
	transition: color 0.3s;

	padding: 10px 15px;
}

#primary-menu li a:hover .flip-text,
#primary-menu li.current a .flip-text {
	transform: rotateX(180deg);
}

#primary-menu li a:hover .flip-front,
#primary-menu li.current a .flip-front {
	color: #0284c7;
}

#primary-menu li a:hover {
	color: #0284c7;
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
}

#primary-menu {
	border-right: 1px solid #0284c7;
	padding: 0 10px;
}


#primary-menu ul {
	margin: 0;
	padding: 0;
}

/* Ensure header is fixed */
#header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background: white;
	border-bottom: 3px solid #0284c7;
}

.fullscreen-slider {
	position: relative;
	width: 100%;
	margin-top: 100px;
	height: calc(100vh - 100px);

	overflow: hidden;
	background: #000;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.2) translate(100px, 100px) rotateZ(3deg);
	transition: all 1s ease-in-out;
	filter: blur(3px);
	z-index: 0;

}

.slide.active {
	opacity: 1;
	transform: scale(1) translate(0, 0) rotateZ(0deg);
	filter: blur(0);
	z-index: 2;
	box-shadow: 0 0 100px rgba(255, 255, 255, 0.05);
}

/* Slider Controls - Fixed Vertical Center */
.slider-controls {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
	padding: 0 30px;
	box-sizing: border-box;
}

.slider-controls button {
	background-color: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	border: 2px solid #fff;
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.slider-controls button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.content-wrap {
	background: white;
	margin: 30px auto 30px auto;
	border-radius: 24px;
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
	padding: 40px 24px 32px 24px;
	max-width: 93%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.title-block.center h1 {
	font-size: 2.8rem;
	font-weight: 800;
	text-align: center;
	color: #0284c7;
	margin: 10px;
	letter-spacing: 1px;
}

.title-block.center p {
	font-size: 1.3rem;
	color: #334155;
	margin: 10px 0 30px 0;
}

#portfolio.grid-container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
	margin-top: 24px;
}

.portfolio-item {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
	transition: transform 0.2s, box-shadow 0.2s;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.portfolio-item:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
}

.portfolio-image img {
	border-radius: 18px 18px 0 0;
	width: 350px;
	height: 200px;
	object-fit: cover;
	transition: filter 0.3s;
}



.portfolio-desc {
	padding: 20px 16px 16px 16px;
	text-align: center;
}

.portfolio-desc h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #0284c7;
	margin: 0;
}

.portfolio-desc a {
	text-decoration: none;
	color: inherit;
}

.portfolio-wrapper {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
	margin-top: 24px;
}

.portfolio-row {
	display: flex;
	gap: 32px;
	justify-content: Start;
	flex-wrap: nowrap;
}

.social-glow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #FFFFFFFF;
	color: #0284c7;
	font-size: 18px;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
}

.social-glow:hover {
	background: linear-gradient(90deg, #0284c7, #075985);
	color: white;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
}

#footer {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #e2e8f0;
	padding-top: 50px 0;
	box-shadow: 0 -10px 30px rgba(2, 132, 199, 0.2);
	border-top: 3px solid #0284c7;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 0 24px 15px 24px;
}

.footer-content h3 {
	color: #0284c7;
	font-size: 23px;
}

.social-icon {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.social-icon a:hover {
	text-decoration: none;
}

.footer-content a {
	text-decoration: none;
}

.footer-content {
	width: 200px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-links a,
.footer-bottom a {
	position: relative;
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.4s ease, transform 0.4s ease;
}

.footer-links a::after,
.footer-bottom a::after {
	/* content: ""; */
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, #00f2fe, #4facfe);

	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
	opacity: 0;
}

.footer-links a:hover,
.footer-bottom a:hover {
	color: #4facfe;
	font-weight: 600;
	transform: translateX(8px) scale(1.05);
	text-shadow: 0 0 6px rgba(79, 172, 254, 0.6);
}

.footer-links a:hover::after,
.footer-bottom a:hover::after {
	transform: scaleX(1);
	opacity: 1;
}


.footer-bottom {
	text-align: center;
	font-size: 14px;
	color: #94a3b8;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border-top: 1px solid #0284c7;
	border-bottom: 1px solid #0284c7;
}

/* Hamburger icon hidden by default */
.mobile-menu-toggle {
	display: none;
	font-size: 28px;
	color: #0284c7;
	cursor: pointer;
	padding: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {

	.portfolio-row {
		gap: 16px;
	}
}

@media (max-width: 768px) {
	body {
		margin-top: 60px;
	}

	.header-content {
		height: 60px;
		width: 100%;
	}

	#header {
		height: 60px;
	}

	.standard-logo {
		display: flex;
		height: 60px;
		justify-content: center;
		align-items: center;
	}

	.title-block.center h1 {
		font-size: 25px;
	}

	.title-block.center p {
		font-size: 15px;
		text-align: center;
		margin-bottom: 10px;
	}

	.content-wrap {
		margin: 10px;
		padding: 15px;
	}

	.standard-logo img {
		height: 50px;
		width: 150px;
		padding: 0 10px;
	}

	#primary-menu {
		border-right: none;

		padding: 0;
		width: 100%;
	}

	#primary-menu ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	#primary-menu li {
		height: 48px;
		padding: 0;
		width: 100%;
		justify-content: flex-start;
	}

	#primary-menu li a,
	#primary-menu li a div {
		width: 100%;
		padding: 12px 16px;
		font-size: 1rem;
	}

	.footer-container {
		flex-direction: column;
		align-items: stretch;
		gap: 5px;
		padding: 0 8px 10px 8px;
	}

	.footer-content {
		width: 100%;
		text-align: center;
	}

	.footer-links {
		align-items: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 6px;
		padding: 8px 0;
	}

	.portfolio-wrapper {
		gap: 16px;
	}

	.portfolio-row {
		flex-direction: column;
		gap: 16px;
	}

	.portfolio-item {
		width: 100%;
		min-width: 250px;
	}

	.portfolio-image img {
		height: 140px;
		width: 100%;
	}

	.fullscreen-slider {
		height: 220px;
		margin-top: 60px;
	}

	.slide {
		height: 220px;
	}

	.slider-controls button {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.mobile-menu-toggle {
		display: block;
	}

	#primary-menu {
		display: none;
		position: fixed;
		top: 62px;
		left: 0px;
		z-index: 1000;
		width: 100%;
		flex-direction: column;
		background: white;
	}

	#primary-menu.show {
		display: flex;
	}

	#primary-menu ul {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	#primary-menu li {
		width: 100%;
		/* padding: 10px 15px; */
		border-bottom: 1px solid #e0e0e0;
	}

	#primary-menu li a {
		display: block;
		width: 100%;
		padding-left: 20px;
	}
}

@media (max-width: 480px) {
	.footer-content h3 {
		font-size: 18px;
	}

	.footer-content p,
	.footer-bottom {
		font-size: 12px;
	}

	.portfolio-desc h3 {
		font-size: 1rem;
	}

	.portfolio-image img {
		height: 90px;
	}

	.fullscreen-slider,
	.slide {
		height: 120px;
	}
}


.dropdown-view-product {
	position: relative;
}

.dropdown-menu-view-product {
	display: none;
	position: absolute;
	left: 0;
	top: 60%;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 4px 16px rgba(2, 132, 199, 0.15);
	border-radius: 8px;
	z-index: 9999;
	padding: 10px 0;
}

.mobile-lt {
	display: flex;
	justify-content: space-between;
	padding-right: 10px;
	border-right: 1px solid #0284c7;
	position: fixed;
	right: 20px;
}

.dropdown-view-product:hover .dropdown-menu-view-product,
.dropdown-menu-view-product:hover {
	display: block;
}

.dropdown-category {
	position: relative;
	padding: 8px 24px 8px 16px;
	cursor: pointer;
	white-space: nowrap;
}

.dropdown-category:hover {
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
}

.dropdown-category-name {
	font-weight: 600;
	color: #0284c7;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cart-badge {
	background-color: red;
	padding: 2px 5px;
	border-radius: 50%;
	color: white;
	margin-left: 8px;
}

.dropdown-products {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	background: #fff;
	min-width: 200px;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
	border-radius: 8px;
	z-index: 9999;
	padding: 10px 0;
}

.dropdown-category:hover .dropdown-products {
	display: block;
}

.dropdown-products a {
	transition: 1s;
	border-radius: none;
	margin: 0;
}

.dropdown-products a:hover {
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
	border-radius: none;

}

.dropdown-product-link {
	display: block;
	padding: 8px 18px;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s;
}

.dropdown-product-link:hover {
	background: #f1f5f9;
	border-radius: 10px;
	color: #0284c7;
}

@media (max-width: 768px) {
	.dropdown-products {
		left: 30%;
		top: 50px;
	}
}

.dropdown-product-link {
	margin: 15px;
}

.dropdown-menu-view-product {
	left: 5%;
	top: 70px;
}

/* Profile Icon Styles */
.profile-icon-container {
	display: flex;
	align-items: center;
}

/* Hide mobile profile icon on desktop, show on mobile */
.mobile-profile-icon {
	display: none;
}

@media (max-width: 768px) {
	.mobile-profile-icon {
		display: flex !important;
	}

	/* Hide original profile icon in nav on mobile */
	#primary-menu .profile-icon-container:not(.mobile-profile-icon) {
		display: none !important;
	}

	/* Make header-content flex row for hamburger and profile icon */
	.header-content {
		display: flex;
		align-items: center;
	}
}

.profile-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(90deg, #0284c7, #075985);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 5px solid #0284c7;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
}

.profile-icon:hover {
	transform: scale(1.1);
	box-shadow: 0px 8px 24px rgba(2, 132, 199, 0.4);
}

.profile-icon i {
	color: white;
	font-size: 18px;
}

.profile-image {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
}

@media (max-width: 768px) {
	.profile-icon {
		width: 35px;
		height: 35px;
	}

	.profile-icon i {
		font-size: 16px;
	}
}

/* Profile Dropdown Styles */
.profile-dropdown {
	display: none;
	position: absolute;
	top: 90%;
	right: 30px;
	background: #fff;
	min-width: 200px;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
	border-radius: 8px;
	z-index: 9999;
	padding: 8px 0;
	margin-top: 5px;
}

.profile-dropdown.show {
	display: block;
	box-shadow: 0px 4px 16px rgba(2, 132, 199, 0.25);
}

.profile-icon-container:hover .profile-dropdown {
	display: block;
}

.profile-dropdown-item {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	gap: 10px;
	color: #333;
	text-decoration: none;
	transition: background 0.2s;
	white-space: nowrap;
}

.profile-dropdown-item:hover {
	background: #f1f5f9;
	color: #0284c7;
}

.profile-dropdown-item i {
	width: 16px;
	text-align: center;
}

@media (max-width: 768px) {
	.profile-dropdown {
		right: -10px;
		min-width: 180px;
	}
}