
*{
    margin: 0;
    padding: 0;
/* outline: 1px solid greenyellow; 
	background: rgb(0 10 0/0.1);  */
}

/* Navigation Section - Fixed Container */
.navigation-section {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	padding: 0.5rem;
	box-sizing: border-box;
	pointer-events: none;
}

.navigation-section .navigation-bar {
	position: relative;
	pointer-events: auto;
}

.navigation-bar{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 0.25rem 1rem;
	background-color: #2c334ab6;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	color : var(--light);
	position: relative;
	z-index: 10;
	align-items: center;
	box-sizing: border-box;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	pointer-events: auto;
}

.brand-name{
	font-size: 2rem;
	color:#00bfff;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}
.brand-name:hover{
	transform: scale(1.1);
	color: #00d4ff;
	text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}
.links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.links>a{
	text-decoration: none;
	color: var(--light);
	padding: 0.5rem 1rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	position: relative;
	font-weight: 200;
	display: inline-block;
}

.links>a:hover {
	background-color: rgba(0, 191, 255, 0.5);
	color: white;
	transform: translateY(-1px);
}

.links>a.active {
	background-color: rgba(0, 191, 255, 0.5);
	color: white;
	border-radius:15px;
}

/* Burger button */
.burger-btn{
    position: relative;
    top: 0;
    right: 0;
    width: 2.5rem;
    height: 2rem;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
    padding: 0.25rem;
    border-radius: 8px;
}

.burger-btn:hover{
    transform: scale(1.05);
}

.burger-btn.active .burger-bar:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active .burger-bar:nth-child(2) {
	opacity: 0;
}

.burger-btn.active .burger-bar:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.burger-bar{
    background-color: var(--light);
    width: 100%;
    height: 3px;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navigation Bar for mobile - Dropdown Menu */
.navigation-bar-mobile {
	background: rgba(44, 51, 75, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: white;
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
	width: calc(100% - 1rem);
	flex-direction: column;
	padding: 1rem 0;
	text-align: center;
	z-index: 1001;
	margin-top: 0.5rem;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	box-sizing: border-box;
}

.navigation-bar-mobile.active {
	display: flex;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.navigation-bar-mobile>a{
	width: calc(100% - 2rem);
	margin: 0.5rem 1rem;
	padding: 1rem 1.5rem;
	text-decoration: none;
	color: var(--light);
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	font-weight: 500;
	display: inline-block;
	font-size: 1.1rem;
	background: rgba(255, 255, 255, 0.05);
}

.navigation-bar-mobile>a:hover {
	color: #00bfff;
	transform: translateY(-2px);
}

.navigation-bar-mobile>a.active {
	border : 1px solid rgba(0, 191, 255, 0.3);
	color: #00bfff;
}


.my-1 {
    margin: 1rem 0;
}

.title-1::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 0;
    width: 20%;
    height: 2px;
    background: linear-gradient(45deg, #a67c57, transparent);
}

.title-1 {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 2rem;
}
.title-1::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 20%;
    height: 2px;
    background: linear-gradient(-45deg, #a67c57, transparent);
}

.py-1 {
    padding: 1rem 0;
}
.sec-3{
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto !important;
    box-sizing: border-box;
}

.sec-4{
    text-align: center;
    padding: 2rem 0;
}
.flex-a {
    display: flex;
    justify-content: space-around;
}
.sec-4>div{
    background-color: #F5F7FF;
}
/* Removed large icon size - now handled in index.css */

.box-12{
    padding: 1rem;
}


.banner{
	width: 100%;
	max-width: 100%;
	height: 100vh;
	z-index: 1;
	box-sizing: border-box;
}
.banner-section{
	height: 100vh;
	width: 100%;
	max-width: 100%;
	background-image: url("../images/Super-2.png");
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
	overflow: hidden;
	margin-top: -90px; /* Compensate for body padding */
}
/* Product Section */
.product-section {
	padding: 0.5rem 2rem 1rem;
	min-height: 100vh;
	box-sizing: border-box;
}

.product-header {
	text-align: center;
	margin-bottom: 3rem;
}

.product-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	position: relative;
	display: inline-block;
}

.product-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	border-radius: 2px;
}

.product-subtitle {
	font-size: 1.1rem;
	color: #666;
}

/* Products Container */
.products-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 0;
	box-sizing: border-box;
}

/* Product Card */
.product-card {
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeInUp 0.5s ease forwards;
	opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(n+7) { animation-delay: 0.35s; }

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.product-container-product {
	background: #ffffff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.product-card:hover .product-container-product {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.product-img-div {
	width: 100%;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.product-img-div::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.product-card:hover .product-img-div::before {
	transform: scaleX(1);
}

.product-img-div > img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.product-card:hover .product-img-div > img {
	transform: scale(1.05);
}

/* Product Content */
.product-container-product > div:not(.product-img-div) {
	padding: 0.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.product_content {
	color: #666;
	font-size: 0.9rem;
	margin-left: 0.5rem;
	line-height: 1.5;
	font-weight: 500;
	min-height: 35px;
	display: flex;
	align-items: center;
}

.product-container-product h1 {
	color: var(--dark);
	font-size: 1.3rem;
	font-weight: 700;
	margin-left: 0.5rem;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

/* View Details Button */
.view-details-btn {
	width: calc(100% - 1rem);
	margin: 0.75rem 0.5rem;
	padding: 0.5rem 0.25rem;
	background: linear-gradient(135deg, var(--dark) 100%);
	color: #ffffff;
	border: none;
	border-radius: 15px;
	font-size: 0.75rem;
	font-weight: 300;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.view-details-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.view-details-btn:hover::before {
	left: 100%;
}

.view-details-btn:hover {
	transform: translateY(-2px);
}

.view-details-btn i {
	transition: transform 0.3s ease;
	font-size: 0.9rem;
}

.view-details-btn:hover i {
	transform: translateX(5px);
}

.view-details-btn span {
	position: relative;
	z-index: 1;
}

/* Product Modal */
.product-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal.active {
	display: flex;
	visibility: visible;
	opacity: 1;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease;
}

.modal-content {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	max-width: 900px;
	width: 90%;
	margin: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.3s ease;
	overflow: hidden;
	align-self: center;
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(44, 51, 75, 0.9);
	color: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
	font-size: 1.2rem;
}

.modal-close:hover {
	background: var(--dark);
	transform: rotate(90deg);
}

.modal-body {
	padding: 2.5rem;
}

.modal-product-content {
	display: flex;
	gap: 2.5rem;
	align-items: flex-start;
}

.modal-product-image {
	flex: 1;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}

.modal-product-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 10px;
}

.modal-product-info {
	flex: 1;
	padding: 1rem 0;
}

.modal-product-info .product-name {
	font-size: 1.5rem;
	color: #374347;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.modal-product-info .product-price {
	font-size: 2rem;
	color: var(--dark);
	font-weight: 700;
	margin: 1.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.modal-product-info .product-details-title {
	font-size: 1.8rem;
	color: var(--dark);
	margin: 2rem 0 1rem 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}

.modal-product-info .product-details-title i {
	color: #00bfff;
	font-size: 1.5rem;
}

.modal-product-info .product-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-top: 1rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.backbutton{
	background-color: #f1f1f1;
   color: black;
}

/* Footer */

footer {
	width: 100%;
	max-width: 100%;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1rem 2rem;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.5), transparent);
}

.footer{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	box-sizing: border-box;
}

footer .brand-name {
	font-size: 2.5rem;
	color: #00bfff;
	margin-bottom: 0.5rem;
	transition: all 0.3s ease;
}

footer .brand-name:hover {
	color: #00d4ff;
	text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
	transform: scale(1.05);
}

footer .brand-name a {
	color: inherit;
	text-decoration: none;
}

footer .brand-line {
	margin-top: 0.5rem;
}

footer .brand-line a {
	color: var(--dark);
	text-decoration: none;
	font-size: 0.9rem;
	letter-spacing: 2px;
	transition: color 0.3s ease;
}

footer .brand-line a:hover {
	color: #00bfff;
}

footer .brand-line hr {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00bfff, transparent);
	margin-top: 0.5rem;
	width: 80px;
}

footer .contact{
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

footer .contact a {
	color: var(--dark);
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
}

footer .contact a:hover {
	color: #00bfff;
	transform: translateX(-5px);
}

footer .contact a i,
footer .contact a span {
	transition: all 0.3s ease;
}

footer .contact a:hover i,
footer .contact a:hover span {
	color: #00bfff;
}


.my-hr{
	width: 90%;
	max-width: 1000px;
	background-color: var(--dark);
	margin: 1rem auto;
	height: 3px;
	box-sizing: border-box;
}
.jugad{
	font-size: 0.7rem;
}

.contact-box{
	font-family: 'Times New Roman', Times, serif;
}


.all-iteminone{
	
	display: flex;
  justify-content: center;
  align-items: center;
}


#card-img{
    margin: 1rem 0;
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    box-sizing: border-box;
}

#card-img:hover{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 12px, rgba(0, 0, 0, 0.3) 0px 21px 39px -9px, rgba(0, 0, 0, 0.2) 0px -9px 0px inset;
}
