/* Facilities Section (ported from style.css) */
.facilities-section {
	padding: 100px 0;
	background: #f8f9fa;
}

.facilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.facility-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.facility-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.facility-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.facility-card:hover .facility-image {
	transform: scale(1.05);
}

.facility-content {
	padding: 30px;
}

.facility-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
	text-align: center;
}

.facility-content p {
	color: #666;
	line-height: 1.8;
	text-align: center;
}
 *{
	margin:0;
	padding:0;
	font-family: 'Kaushan Script', cursive;
font-family: 'Poppins', sans-serif;
 }

body{
	font-family: arial;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	overflow-x: hidden;
}

html {
	overflow-x: hidden;
}
 .header{
  min-height:100vh;
  width:100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/banner.jpg);
  background-position: center;
  background-size:cover;
  position:relative;
  overflow:hidden;
 }
 .text-box img{
	width:0.8%;
	top:50%;
	left:50%;
 }
@media(max-width:700px){
	.text-box img{
	width:2%;
	top:50%;
	left:50%;
 }

 }
 nav{
	 display:flex;
	 padding:2% 6%;
	 justify-content:space-between;
	 align-items:center;
	 width:100%;
	 box-sizing:border-box;
 }
 nav img{
	 width:150px;
	 
 }
 .nav-links{
	 flex:1;
	 text-align:right;
	 
 }
 .nav-links ul li{
	list-style:none;
	display:inline-block;
	padding:8px 12px;
	position:relative;
	
	 
 }
 .nav-links ul li a{
	color:#fff;
	text-decoration:none;
	font-size:13px;
	
}
 .nav-links ul li::after{
	 content:'';
	 width:0%;
	 height:2px;
	 background:#ca0069cc;
	 display:block;
	 margin:auto;
	 transition:0.5s;
 }
  .nav-links ul li:hover::after{
	  width:100%;
  } 
 .text-box{
	 width:90%;
	 max-width:600px;
	 color:#fff;
	 position:absolute;
	 top:50%;
	 left:50%;
	 transform:translate(-50%,-50%);
	 text-align:center;
	 padding:20px;
	 box-sizing:border-box;
	 display:flex;
	 flex-direction:column;
	 align-items:center;
	 justify-content:center;
	 margin:0 auto;
 }
 .text-box h1{
	 font-size:62px;
	 text-align:center;
	 margin:0 auto;
	 width:100%;
 }
.text-box p{
	margin:10px auto 40px auto;
	font-size:14px;
	color:#fff;
	text-align:center;
	display:block;
	width:100%;
	max-width:500px;
	line-height:1.6;
}
.stm{
	display:block;
	text-decoration:none;
	color:#fff;
	border:1px solid #fff;
	padding:12px 34px;
	font-size:13px;
	background:transparent;
	position:relative;
	cursor:pointer;
	text-align:center;
	margin:20px auto 0 auto;
	width:fit-content;
}
.stm:hover{
	border:1px solid #ca0069cc;
	background:#ca0069cc;
	transition:1s;
	
}
nav .fa {
	display: none;
}



@media(max-width:700px){
	.text-box h1{
	 font-size:20px;
	 text-align:center;
	 margin:0 auto;
 }
 .text-box {
	 width:95%;
	 padding:15px;
	 text-align:center;
 }
 .text-box p {
	 text-align:center;
	 margin:10px auto 30px auto;
	 max-width:90%;
 }
 .stm {
	 margin:15px auto 0 auto;
 }
 .nav-links ul li{
	  display:block;
  }
 .nav-links {
	 position:fixed;
	 background:#ca0069cc;
	 height:100vh;
	 width:200px;
	 top:0;
	 right:-200px;
	 text-align:left;
	 z-index:2; 
	 transition:0.5s;
 }
nav .fa {
	display:block;
	color:#fff;
	margin:10px;
	font-size:22px;
	cursor:pointer;
	}
.nav-links ul{
		padding:30px;
	}
}

/* Additional responsive fixes */
@media(max-width:1200px){
	.text-box {
		width:85%;
		max-width:500px;
		text-align:center;
	}
}

@media(max-width:900px){
	.text-box {
		width:90%;
		max-width:450px;
		text-align:center;
	}
}
/*Service*/
.service{
	width:80%;
	max-width:1200px;
	margin:auto;
	text-align:center;
	padding-top:100px;
	box-sizing:border-box;
}

h1{
	font-size:36px;
	font-weight:600px;

}
p{
	color:#777;
	font-size:14px;
	font-weight:300;
	line-height:22px;
	padding:10px
}
.row {
	margin-top:5%;
	display:flex;
	justify-content:center;
	gap:15px;
	flex-wrap:nowrap;
}
.course-col{
	flex-basis:31%;
	background:#fff3f3;
	border-radius:10px;
	margin-bottom:5%;
	padding:20px 12px;
	box-sizing:border-box;
	transition:0.5s;
}
h3{
	text-align:center;
	font-weight:600;
	margin:10px 0;
}
.course-col:hover{
	box-shadow:0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width:900px){
	.studio-col{
		flex-basis:45%;
		min-height: 250px;
	}
}

@media(max-width:700px){
	.row{
		flex-direction:column;
		gap:15px;
	}
	.studio-col {
		flex-basis:100%;
		margin: 0 5px 20px 5px;
		min-height: 200px;
	}
}
/*studio*/
.studio{
	width:80%;
	max-width:1200px;
	margin:auto;
	text-align:center;
	padding-top:50px;
	box-sizing:border-box;
}
.studio-col{
	flex-basis:30%;
	border-radius:15px;
	margin:0 5px 30px 5px;
	position:relative;
	overflow:hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	min-height: 300px;
	background: #f0f0f0;
}
.studio-col img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
	display:block;
	position:absolute;
	top:0;
	left:0;
}
.layer{
	position:absolute;
	inset:0;
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	padding:28px;
	background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0) 100%);
	opacity:0;
	transition: opacity 0.35s ease;
}

.facilities-col:hover .layer{
	opacity:1;
}

.studio-col:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(202, 0, 105, 0.3);
}

.layer h3{
	color:#fff;
	font-size:20px;
	font-weight:700;
	margin:0 0 10px 0;
	text-align:left;
	transform: translateY(10px);
	opacity:0;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.layer h4 {
	width: 100%;
	font-weight: 400;
	color: #fff;
	font-size: 14px;
	text-align: left;
	margin: 0;
	transform: translateY(10px);
	opacity: 0;
	line-height: 1.6;
	padding: 0;
	transition: transform 0.4s ease 60ms, opacity 0.4s ease 60ms;
}

.facilities-col:hover .layer h3,
.facilities-col:hover .layer h4{
	transform: translateY(0);
	opacity: 1;
}

/* Additional hover improvements */
.facilities-col:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	transform: translateY(-5px);
	transition: all 0.3s ease;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
	.facilities-col:active { box-shadow: 0 8px 25px rgba(0,0,0,0.15); transform: translateY(-2px); }
	.layer { opacity: 1; }
	.layer h3, .layer h4 { transform: translateY(0); opacity: 1; }
}

@media(max-width:700px){
	.facilities-col{ min-height:320px; }
}

/* Enhanced Animation Styles */
.text-box h1 {
	animation: fadeInUp 1s ease-out;
}

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

/* Pulse animation for buttons */
.stm {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

/* Floating animation for logo */
nav img {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Enhanced hover effects with Bootstrap integration */
.course-col:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Smooth transitions for all interactive elements */
* {
	transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #ca0069cc;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #a0005a;
}

.facilities{
	width:80%;
	max-width:1200px;
	margin:auto;
	text-align:center;
	padding-top:100px;
	box-sizing:border-box;
}
.facilities-col{
	flex-basis:31%;
	border-radius:18px;
	margin-bottom:5%;
	text-align:left;
	position:relative;
	overflow:hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	border: 1px solid rgba(202,0,105,0.12);
	min-height:400px;
}
.facilities-col img{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:18px;
	display:block;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.facilities-col:hover{
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 20px 50px rgba(202,0,105,0.25);
}

.facilities-col:hover img{
	transform: scale(1.08);
	filter: brightness(0.8) saturate(1.1);
}
.facilities-col p{
	padding:0;
	
}
.facilities-col h3{
	margin-top:16px;
	margin-bottom:15px;
	text-align:center;
	
}
.reviews{
	width:80%;
	max-width:1200px;
	margin:auto;
	padding-top:100px;
	text-align:center;
	box-sizing:border-box;
}
.reviews-col{
	flex-basis:29%;
	border-radius:10px;
	margin-bottom:5%;
	text-align:left;
	background:#fff3f3;
	padding:25px;
	cursor:pointer;
	display:flex;
	
}
.reviews-col img{
	height:40px;
	margin-left:5px;
	margin-right:30px;
	border-radius:50%;
}
.reviews-col p{
	padding:0;
	
}
.reviews-col h3{
	margin-top:15px;
	text-align:left;
}
.reviews-col .fa{
	color:#f44336;
}
@media(max-width:700px){
	.reviews-col img{
	
	margin-left:0px;
	margin-right:15px;

}
}
/*cta*/
.call {
  margin: 100px auto;
  width: 80%;
  max-width: 1200px;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("images/banner2.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
  box-sizing: border-box;
}
.call h1{
	color:#fff;
	margin-bottom:40px;
	padding:0px;
}
@media(max-width:700px){
	.call h1{
	font-size:24px;
}
}
/*footer*/
.footer{
	width:100%;
	background:#333;
	color:#fff;
	text-align:center;
	padding:50px 0;
}
.footer h4{
	margin-bottom:25px;
	margin-top:20px;
	font-weight:600;
	font-size:1.5rem;
}
.social-icons{
	display:flex;
	justify-content:center;
	gap:20px;
	margin-bottom:30px;
}
.social-icons a{ color:#f44336; font-size:1.5rem; transition:all 0.3s ease; }
.social-icons a:hover{ color:#ca0069; transform:translateY(-3px); }
.footer p{ color:#ccc; margin-bottom:10px; }
.last{
	color:#ff44336;
}
.last .fa{
	color:#ff44336;
}
/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.review-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-stars {
    color: #f44336;
    font-size: 1.2rem;
}

/*ABout us*/
.sub-header{
	height:50vh;
	width:100%;
	background-image:linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/aboutcover.jpg);
	background-position:center;
	background-size:cover;
	text-align:center;
	color:#fff;
}
.sub-header h1{
	margin-top:100px;
}
.about-us{
	width:80%;
	margin:auto;
	padding-top:80px;
	padding-bottom:50px;
}
.about-col{
	flex-basis:48%;
	padding:30px 2px;
	
	
}
.about-col img{
	width:100%;
	
}
.about-col h1{
	padding-top:0;
	
}
.about-col p{
	padding:15px 0 25px;
	
}
.red-btn{
	border:1px solid #ca0069cc;
	background:transparent;
	color:#ca0069cc;
}
.red-btn:hover{
	color:#fff;
	
}
/* Contact Page Intro Paragraph - Mobile Responsive */
.sub-header p {
    max-width: 800px;
    margin: 10px auto 0 auto;
    line-height: 1.8;
    padding: 0 16px;
    text-align: center;
    color: white;
    font-size: 16px;
}

/* Mobile responsive adjustments for contact intro paragraph */
@media (max-width: 768px) {
    .sub-header p {
        max-width: 90%;
        padding: 0 20px;
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .sub-header p {
        max-width: 95%;
        padding: 0 15px;
        font-size: 14px;
        line-height: 1.5;
        margin: 15px auto 0 auto;
    }
}

@media (max-width: 360px) {
    .sub-header p {
        max-width: 98%;
        padding: 0 10px;
        font-size: 13px;
        line-height: 1.4;
    }
}

/*locatoinb*/
 .location{
	 width:80%;
	 margin:auto;
	 padding:80px 0;
	 
}
.location iframe{
	 width:100%;

	
}
.con-us{
	width:80%;
	margin:auto;
}
.con-col{
	flex-basis:48%;
	margin-bottom:30px;
	
}
.con-col div{
	display:flex;
	align-items:center;
	margin-bottom:40px;
}
.con-col div .fa{
	font-size:28px;
	color:#ca0069cc;
	margin:10px;
	margin-right:30px;
}
.cont-col div p{
	padding:0;
}
.con-col div h5{
	font-size:20px;
	margin-bottom:5px;
	color:#555;
	font-weight:400;	
}
.con-col input, .con-col textarea{
	width:100%;
	padding:15px;
	margin-bottom:17px;
	outline:none;
	border:1px solid #ccc; 
	box-sizing:border-box;
}
/* ========== Contact page enhancements ========== */
.location{
	width:85%;
	max-width:1200px;
	margin:70px auto 30px auto;
	padding:0 12px;
}
.location iframe{
	width:100%;
	height:420px;
	border:0;
	border-radius:14px;
	box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.con-us{
	width:85%;
	max-width:1200px;
	margin:50px auto 90px auto;
	padding:0 12px;
}
.con-us .row{
	display:grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap:36px;
	align-items:start;
	margin-top:0;
}

.con-col{
	background:#fff;
	border:1px solid #eee;
	border-radius:16px;
	padding:36px;
	box-shadow:0 12px 34px rgba(0,0,0,0.1);
}

.con-col div{
	display:flex;
	align-items:flex-start;
	gap:18px;
	padding:22px 0;
	border-bottom:1px solid #f0f0f0;
}
.con-col div:last-child{ border-bottom:none; }

.con-col div .fa{
	width:44px;
	height:44px;
	border-radius:50%;
	background:#ca00691a;
	color:#ca0069cc;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
	flex-shrink:0;
}

.con-col h5{ margin:0 0 6px 0; font-weight:600; color:#333; font-size:18px; line-height:1.4; }
.con-col p{ margin:0; color:#666; line-height:1.8; word-break: break-word; }
.con-col span{ display:flex; flex-direction:column; min-width:0; }

.con-col form input,
.con-col form textarea{
	border:1px solid #ddd;
	border-radius:10px;
	background:#fff;
	padding:16px 18px;
	font-size:14px;
	margin-bottom:16px;
}
.con-col form input:focus,
.con-col form textarea:focus{
	border-color:#ca0069cc;
	box-shadow:0 0 0 3px rgba(202,0,105,0.12);
}

.con-col form .stm.red-btn{
	background:#ca0069cc;
	border:1px solid #ca0069cc;
	color:#fff;
	padding:12px 20px;
	border-radius:8px;
	transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
}
.con-col form .stm.red-btn:hover{
	background:transparent;
	color:#ca0069cc;
	transform: translateY(-2px);
}

/* Privacy note styling */
.privacy-note {
	margin-top: 10px;
	color: #666;
	font-size: 13px;
	line-height: 1.4;
}

@media (max-width: 480px) {
	.privacy-note {
		font-size: 12px;
		margin-top: 8px;
	}
}

@media (max-width: 360px) {
	.privacy-note {
		font-size: 11px;
		margin-top: 6px;
	}
}

/* ========== Contact Page Mobile Responsive Fixes ========== */

/* Tablet and small desktop */
@media (max-width: 900px) {
	.location { 
		width: 92%; 
		margin: 60px auto 30px auto;
	}
	.con-us { 
		width: 92%; 
		margin: 40px auto 80px auto;
	}
	.con-us .row { 
		grid-template-columns: 1fr; 
		gap: 28px; 
	}
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
	.location { 
		width: 85%; 
		margin: 50px auto 25px auto;
		padding: 0 25px;
	}
	.location iframe { 
		height: 350px; 
		border-radius: 12px;
	}
	.con-us { 
		width: 85%; 
		margin: 35px auto 70px auto;
		padding: 0 25px;
	}
	.con-us .row { 
		gap: 25px; 
	}
	.con-col { 
		padding: 25px; 
		border-radius: 12px; 
		box-shadow: 0 8px 20px rgba(0,0,0,0.08);
	}
	.con-col div { 
		gap: 15px; 
		padding: 18px 0; 
	}
	.con-col div .fa { 
		width: 38px; 
		height: 38px; 
		font-size: 15px; 
	}
	.con-col h5 { 
		font-size: 16px; 
	}
	.con-col p { 
		font-size: 14px; 
	}
	.con-col form input, 
	.con-col form textarea { 
		padding: 14px 16px; 
		font-size: 14px; 
		margin-bottom: 16px; 
	}
	.con-col form .stm.red-btn { 
		width: 100%; 
		padding: 12px 16px; 
		font-size: 14px;
	}
}

/* Mobile portrait */
@media (max-width: 480px) {
	.location { 
		width: 90%; 
		margin: 40px auto 20px auto; 
		padding: 0 20px; 
	}
	.location iframe { 
		height: 280px; 
		border-radius: 10px;
	}
	.con-us { 
		width: 90%; 
		margin: 30px auto 60px auto; 
		padding: 0 20px; 
	}
	.con-us .row { 
		gap: 20px; 
	}
	.con-col { 
		padding: 20px; 
		border-radius: 10px;
	}
	.con-col div { 
		gap: 12px; 
		padding: 15px 0; 
	}
	.con-col div .fa { 
		width: 35px; 
		height: 35px; 
		font-size: 14px; 
	}
	.con-col h5 { 
		font-size: 15px; 
	}
	.con-col p { 
		font-size: 13px; 
	}
	.con-col form input, 
	.con-col form textarea { 
		padding: 12px 14px; 
		font-size: 13px; 
		margin-bottom: 14px; 
	}
	.con-col form .stm.red-btn { 
		padding: 10px 14px; 
		font-size: 13px;
	}
}

/* Very small mobile devices */
@media (max-width: 360px) {
	.location { 
		width: 95%; 
		margin: 35px auto 15px auto; 
		padding: 0 15px; 
	}
	.location iframe { 
		height: 240px; 
		border-radius: 8px;
	}
	.con-us { 
		width: 95%; 
		margin: 25px auto 50px auto; 
		padding: 0 15px; 
	}
	.con-col { 
		padding: 18px; 
		border-radius: 8px;
	}
	.con-col div { 
		gap: 10px; 
		padding: 12px 0; 
	}
	.con-col div .fa { 
		width: 32px; 
		height: 32px; 
		font-size: 13px; 
	}
	.con-col h5 { 
		font-size: 14px; 
	}
	.con-col p { 
		font-size: 12px; 
	}
	.con-col form input, 
	.con-col form textarea { 
		padding: 10px 12px; 
		font-size: 12px; 
		margin-bottom: 12px; 
	}
	.con-col form .stm.red-btn { 
		padding: 8px 12px; 
		font-size: 12px;
	}
}



/* ========== Store Page Styles ========== */

/* Floating User Icon */
.floating-user {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	cursor: pointer;
}

.floating-user #userIcon {
	width: 60px;
	height: 60px;
	background: #ca0069;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 4px 15px rgba(202, 0, 105, 0.3);
	transition: all 0.3s ease;
}

.floating-user #userIcon:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(202, 0, 105, 0.4);
}

.user-dropdown {
	position: absolute;
	top: 60px;
	right: 0;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	min-width: 250px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.user-dropdown.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.user-info {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 15px;
}

.user-avatar i {
	font-size: 40px;
	color: #ca0069;
}

.user-details h4 {
	margin: 0 0 5px 0;
	color: #333;
	font-size: 16px;
}

.user-details p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.user-actions {
	padding: 10px 0;
}

.user-btn {
	width: 100%;
	padding: 12px 20px;
	border: none;
	background: none;
	color: #333;
	text-align: left;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.user-btn:hover {
	background: #f8f9fa;
}

.user-btn i {
	width: 16px;
	text-align: center;
}

/* Store Categories */
.store-categories {
	background: #f8f9fa;
	padding: 40px 0;
}

.category-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.category-tab {
	padding: 12px 24px;
	border: 2px solid #ca0069;
	background: transparent;
	color: #ca0069;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
}

.category-tab:hover,
.category-tab.active {
	background: #ca0069;
	color: white;
	transform: translateY(-2px);
}

/* Store Products */
.store-products {
	padding: 60px 0;
	background: white;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.product-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(202, 0, 105, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
	opacity: 1;
}

.quick-view-btn {
	background: white;
	color: #ca0069;
	border: none;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.quick-view-btn:hover {
	background: #ca0069;
	color: white;
	transform: scale(1.05);
}

.product-info {
	padding: 20px;
}

.product-info h3 {
	margin: 0 0 10px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
}

.product-info p {
	margin: 0 0 15px 0;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

.product-price {
	font-size: 20px;
	font-weight: 700;
	color: #ca0069;
	margin-bottom: 15px;
}

.add-to-cart-btn {
	width: 100%;
	background: #ca0069;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
	background: #a0004a;
	transform: translateY(-2px);
}

/* Shopping Cart */
.shopping-cart {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: white;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

.shopping-cart.show {
	right: 0;
}

.cart-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart-header h3 {
	margin: 0;
	color: #333;
}

.close-cart {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #666;
}

.cart-items {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
}

.cart-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.item-info h4 {
	margin: 0 0 5px 0;
	font-size: 14px;
	color: #333;
}

.item-info p {
	margin: 0;
	font-size: 12px;
	color: #666;
}

.item-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.item-actions button {
	width: 30px;
	height: 30px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-actions .remove-btn {
	background: #ff4444;
	color: white;
	border-color: #ff4444;
}

.cart-footer {
	padding: 20px;
	border-top: 1px solid #eee;
}

.cart-total {
	margin-bottom: 15px;
	font-size: 18px;
	color: #333;
}

.checkout-btn {
	width: 100%;
	background: #ca0069;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.checkout-btn:hover {
	background: #a0004a;
}

/* Cart Icon */
.cart-icon {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #ca0069;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(202, 0, 105, 0.3);
	transition: all 0.3s ease;
	z-index: 999;
}

.cart-icon:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(202, 0, 105, 0.4);
}

.cart-count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff4444;
	color: white;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
}

/* Modals */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: white;
	border-radius: 15px;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
	color: #333;
}

.close-modal {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #666;
}

.modal-body {
	padding: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #333;
	font-weight: 600;
}

.form-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #ca0069;
	box-shadow: 0 0 0 3px rgba(202, 0, 105, 0.1);
}

.submit-btn {
	width: 100%;
	background: #ca0069;
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #a0004a;
}

.modal-switch {
	text-align: center;
	margin-top: 20px;
	color: #666;
}

.modal-switch a {
	color: #ca0069;
	text-decoration: none;
	font-weight: 600;
}

.modal-switch a:hover {
	text-decoration: underline;
}

/* Quick View Modal */
.quick-view-content {
	max-width: 800px;
	width: 95%;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.quick-view-content::-webkit-scrollbar {
	display: none;
}

.quick-view-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}

.quick-view-image {
	position: relative;
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
}

/* Image Slider */
.image-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-btn:hover {
	background: rgba(202, 0, 105, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.prev-btn {
	left: 10px;
}

.next-btn {
	right: 10px;
}

.slider-dots {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid white;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: white;
}

.slider-dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.quick-view-details h3 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 24px;
	font-weight: 600;
}

.quick-view-price {
	font-size: 28px;
	font-weight: 700;
	color: #ca0069;
	margin-bottom: 20px;
}

.quick-view-details p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 25px;
	font-size: 16px;
}

.quick-view-features {
	margin-bottom: 25px;
}

.quick-view-features h4 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
}

.quick-view-features ul {
	margin: 0;
	padding-left: 20px;
	color: #666;
}

.quick-view-features li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.quick-view-actions {
	border-top: 1px solid #eee;
	padding-top: 25px;
}

.quantity-selector {
	margin-bottom: 20px;
}

.quantity-selector label {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-weight: 600;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.quantity-controls button {
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.quantity-controls button:hover {
	background: #ca0069;
	color: white;
	border-color: #ca0069;
}

.quantity-controls input {
	width: 60px;
	height: 40px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
}

.quick-view-actions .add-to-cart-btn {
	width: 100%;
	background: #ca0069;
	color: white;
	border: none;
	padding: 15px 20px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
}

.quick-view-actions .add-to-cart-btn:hover {
	background: #a0004a;
	transform: translateY(-2px);
}

/* Profile Modal */
.profile-info {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
}

.profile-avatar i {
	font-size: 60px;
	color: #ca0069;
}

.profile-details h3 {
	margin: 0 0 10px 0;
	color: #333;
}

.profile-details p {
	margin: 0 0 5px 0;
	color: #666;
}

.profile-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.action-btn {
	padding: 12px 20px;
	background: #f8f9fa;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.action-btn:hover {
	background: #ca0069;
	color: white;
	border-color: #ca0069;
}

/* Notifications */
.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 15px 20px;
	border-radius: 8px;
	color: white;
	font-weight: 600;
	z-index: 3000;
	animation: notificationSlideIn 0.3s ease;
}

.notification.success {
	background: #28a745;
}

.notification.error {
	background: #dc3545;
}

.notification.info {
	background: #17a2b8;
}

@keyframes notificationSlideIn {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.floating-user {
		top: auto;
		bottom: 100px;
		right: 30px;
	}
	
	.floating-user #userIcon {
		width: 60px;
		height: 60px;
		font-size: 24px;
		border: 3px solid #2196F3;
		box-shadow: 0 4px 15px rgba(202, 0, 105, 0.3), 0 0 0 2px rgba(33, 150, 243, 0.3);
		transition: all 0.3s ease;
	}
	
	.floating-user #userIcon:hover {
		border-color: #1976D2;
		box-shadow: 0 6px 20px rgba(202, 0, 105, 0.4), 0 0 0 3px rgba(25, 118, 210, 0.4);
	}
	
	.cart-icon {
		border: 3px solid #2196F3;
		box-shadow: 0 4px 15px rgba(202, 0, 105, 0.3), 0 0 0 2px rgba(33, 150, 243, 0.3);
		transition: all 0.3s ease;
	}
	
	.cart-icon:hover {
		border-color: #1976D2;
		box-shadow: 0 6px 20px rgba(202, 0, 105, 0.4), 0 0 0 3px rgba(25, 118, 210, 0.4);
	}
	
	.user-dropdown {
		min-width: 200px;
		right: -10px;
		bottom: 60px;
		top: auto;
	}
	
	.category-tabs {
		display: flex;
		justify-content: flex-start;
		padding: 0 20px;
		gap: 15px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		flex-wrap: nowrap;
	}
	
	.category-tabs::-webkit-scrollbar {
		display: none;
	}
	
	.category-tab {
		padding: 10px 20px;
		font-size: 14px;
		white-space: nowrap;
		flex-shrink: 0;
		min-width: fit-content;
	}
	
	.products-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}
	
	.shopping-cart {
		width: 100%;
		right: -100%;
	}
	
	.cart-icon {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	
	.modal-content {
		width: 95%;
		margin: 20px;
	}
	
	.quick-view-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.quick-view-image {
		height: 250px;
	}
	
	.slider-btn {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}
	
	.slider-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.floating-user {
		bottom: 90px;
		right: 20px;
	}
	
	.floating-user #userIcon {
		width: 60px;
		height: 60px;
		font-size: 24px;
		border: 3px solid #2196F3;
		box-shadow: 0 4px 15px rgba(202, 0, 105, 0.3), 0 0 0 2px rgba(33, 150, 243, 0.3);
		transition: all 0.3s ease;
	}
	
	.floating-user #userIcon:hover {
		border-color: #1976D2;
		box-shadow: 0 6px 20px rgba(202, 0, 105, 0.4), 0 0 0 3px rgba(25, 118, 210, 0.4);
	}
	
	.cart-icon {
		border: 3px solid #2196F3;
		box-shadow: 0 4px 15px rgba(202, 0, 105, 0.3), 0 0 0 2px rgba(33, 150, 243, 0.3);
		transition: all 0.3s ease;
	}
	
	.cart-icon:hover {
		border-color: #1976D2;
		box-shadow: 0 6px 20px rgba(202, 0, 105, 0.4), 0 0 0 3px rgba(25, 118, 210, 0.4);
	}
	
	.user-dropdown {
		min-width: 180px;
		right: -5px;
		bottom: 50px;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.product-image {
		height: 200px;
	}
	
	.category-tabs {
		display: flex;
		justify-content: flex-start;
		padding: 0 15px;
		gap: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		flex-wrap: nowrap;
	}
	
	.category-tabs::-webkit-scrollbar {
		display: none;
	}
	
	.category-tab {
		padding: 8px 16px;
		font-size: 13px;
		white-space: nowrap;
		flex-shrink: 0;
		min-width: fit-content;
	}
	
	.quick-view-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.quick-view-image {
		height: 200px;
	}
	
	.quick-view-details h3 {
		font-size: 20px;
	}
	
	.quick-view-price {
		font-size: 24px;
	}
	
	.quick-view-details p {
		font-size: 14px;
	}
	
	.quick-view-image {
		height: 200px;
	}
	
	.slider-btn {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}
	
	.slider-dot {
		width: 8px;
		height: 8px;
	}
}

/* ========== Promotional Banner Styles ========== */

#promotionalBanner.promotional-banner {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.7) !important;
	z-index: 9999 !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	animation: promoFadeIn 0.3s ease;
	pointer-events: none;
}

#promotionalBanner.promotional-banner.show {
	display: flex !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.7) !important;
	z-index: 9999 !important;
	align-items: center !important;
	justify-content: center !important;
	animation: promoFadeIn 0.3s ease;
	pointer-events: auto;
}

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

#promotionalBanner .promo-modal {
	background: white !important;
	border-radius: 8px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
	max-width: 300px !important;
	width: 70% !important;
	max-height: 60vh !important;
	overflow-y: auto !important;
	animation: promoSlideIn 0.4s ease;
}

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

.promo-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 8px 12px;
	border-bottom: 1px solid #eee;
	background: #f8f9fa;
	position: relative;
}

.promo-header .promo-logo {
	width: 100%;
	display: flex;
	justify-content: center;
}

.promo-header .promo-close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
}

.promo-logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.promo-logo img {
	width: 100%;
	height: auto;
	max-height: 100px;
	object-fit: cover;
	border-radius: 6px;
}

.promo-banner-image {
	width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-text h2 {
	margin: 0;
	color: #333;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.logo-text p {
	margin: 0;
	color: #666;
	font-size: 12px;
	font-weight: 500;
}

.promo-close {
	width: 35px;
	height: 35px;
	background: #dc3545;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: all 0.3s ease;
}

.promo-close:hover {
	background: #c82333;
	transform: scale(1.1);
}

.promo-banner {
	background: #ca0069;
	color: white;
	text-align: center;
	padding: 15px;
}

.promo-banner h1 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
}

.promo-content {
	padding: 10px;
}

.promo-greeting {
	margin-bottom: 10px;
}

.promo-greeting p {
	margin: 0;
	font-size: 14px;
	color: #333;
}

.promo-message {
	margin-bottom: 15px;
}

.promo-message p {
	margin: 0 0 8px 0;
	color: #555;
	line-height: 1.4;
	font-size: 12px;
}

.promo-message ul {
	margin: 5px 0;
	padding-left: 15px;
	color: #555;
}

.promo-message li {
	margin-bottom: 4px;
	font-size: 11px;
	line-height: 1.3;
}

.promo-offer-box {
	background: #f8f9fa;
	border: 2px solid #ca0069;
	border-radius: 6px;
	padding: 10px;
	margin-bottom: 15px;
	text-align: center;
}

.offer-highlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	margin-bottom: 8px;
}

.discount-amount {
	background: #ca0069;
	color: white;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}

.offer-text {
	color: #333;
	font-size: 12px;
	font-weight: 600;
}

.validity-info p {
	margin: 3px 0;
	font-size: 10px;
	color: #666;
}

.promo-contact {
	margin-bottom: 15px;
	padding: 8px;
	background: #f8f9fa;
	border-radius: 6px;
}

.promo-contact > p {
	margin: 0 0 8px 0;
	font-size: 11px;
	color: #333;
}

.contact-details p {
	margin: 4px 0;
	font-size: 10px;
	color: #555;
	display: flex;
	align-items: center;
	gap: 6px;
}

.contact-details i {
	color: #ca0069;
	width: 12px;
}

.promo-actions {
	display: flex;
	gap: 10px;
	margin-bottom: 0;
	padding: 10px;
	justify-content: center;
	align-items: center;
}

.promo-btn {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-btn.primary {
	background: #28a745;
	color: white;
}

.promo-btn.primary:hover {
	background: #218838;
	transform: translateY(-2px);
}

.promo-btn.secondary {
	background: #007bff;
	color: white;
}

.promo-btn.secondary:hover {
	background: #0056b3;
	transform: translateY(-2px);
}

.promo-btn.close {
	background: #dc3545;
	color: white;
}

.promo-btn.close:hover {
	background: #c82333;
	transform: translateY(-2px);
}

.promo-actions-external {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10000;
}

.promo-footer {
	text-align: center;
	border-top: 1px solid #eee;
	padding-top: 8px;
}

.promo-footer p {
	margin: 3px 0;
	font-size: 10px;
	color: #666;
}

/* Mobile Responsive for Promotional Banner */
@media (max-width: 768px) {
	.promo-modal {
		max-width: 280px;
		width: 85%;
		margin: 15px;
	}
	
	.promo-header {
		padding: 6px 10px;
	}
	
	.promo-logo {
		gap: 8px;
	}
	
	.promo-logo img {
		width: 100%;
		height: auto;
		max-height: 80px;
	}
	
	.promo-banner-image {
		max-height: 100px;
	}
	
	.logo-text h2 {
		font-size: 18px;
	}
	
	.logo-text p {
		font-size: 11px;
	}
	
	.promo-banner h1 {
		font-size: 20px;
	}
	
	.promo-content {
		padding: 20px;
	}
	
	.promo-actions {
		flex-direction: column;
		gap: 10px;
	}
	
	.promo-btn {
		padding: 10px 16px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.promo-modal {
		max-width: 260px;
		width: 90%;
		margin: 8px;
	}
	
	.promo-header {
		padding: 5px 8px;
	}
	
	.promo-logo img {
		width: 100%;
		height: auto;
		max-height: 70px;
	}
	
	.promo-banner-image {
		max-height: 90px;
	}
	
	.logo-text h2 {
		font-size: 16px;
	}
	
	.promo-banner h1 {
		font-size: 18px;
		padding: 12px;
	}
	
	.promo-content {
		padding: 15px;
	}
	
	.promo-greeting p {
		font-size: 14px;
	}
	
	.promo-message p {
		font-size: 13px;
	}
	
	.promo-message li {
		font-size: 13px;
	}
	
	.discount-amount {
		font-size: 20px;
		padding: 8px 16px;
	}
	
	.offer-text {
		font-size: 14px;
	}
	
	.validity-info p {
		font-size: 12px;
	}
	
	.contact-details p {
		font-size: 13px;
	}
	
	.promo-btn {
		padding: 8px 12px;
		font-size: 12px;
	}
	
	.promo-footer p {
		font-size: 12px;
	}
}

/*store*/
.store {
  text-align: center;
  /* Optional: set a background color */
  background-color: #f5f5f5;
  padding: 50px 0;
}


.store-col{
	 width:90%;
	 color:#fff;
	 position:absolute;
	 top:60%;
	 left:50%;
	 transform:translate(-50%,-50%);
	 text-align:center;
 }
 color:#ca0069cc;
/* Services and Booking (services.html) */

/* Services Section */
#services.section{
	padding:80px 0;
	background:#f8f9fa;
}

#services .section-header{
	text-align:center;
	max-width:900px;
	margin:0 auto 40px auto;
	background:#fff;
	border:1px solid #eee;
	border-radius:12px;
	padding:20px 24px;
	box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

#services .section-header h2{
	font-size:36px;
	font-weight:700;
	color:#333;
	margin-bottom:8px;
}

#services .section-header p{
	color:#666;
	font-size:15px;
	line-height:1.8;
}

.services-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
	gap:24px;
	width:90%;
	max-width:1200px;
	margin:0 auto;
}

.service-card{
	background:#fff;
	border:1px solid #eee;
	border-radius:14px;
	padding:28px 22px;
	text-align:center;
	box-shadow:0 6px 20px rgba(0,0,0,0.06);
	transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover{
	transform:translateY(-8px);
	box-shadow:0 14px 36px rgba(0,0,0,0.12);
}

.service-icon{
	width:70px;
	height:70px;
	margin:0 auto 16px auto;
	border-radius:50%;
	background:#ca00691a;
	display:flex;
	align-items:center;
	justify-content:center;
}

.service-icon i{
	font-size:28px;
	color:#ca0069cc;
}

.service-card h3{
	font-size:20px;
	font-weight:600;
	margin:10px 0 10px 0;
	color:#333;
}

.service-card p{
	color:#666;
	font-size:14px;
	line-height:1.8;
	margin-bottom:14px;
}

.service-features{
	list-style:none;
	text-align:left;
	margin:0 auto 16px auto;
	padding:0;
	max-width:320px;
}

.service-features li{
	position:relative;
	padding-left:22px;
	margin:8px 0;
	color:#444;
	font-size:14px;
}

.service-features li:before{
	content:"\2713";
	position:absolute;
	left:0;
	color:#ca0069cc;
	font-weight:700;
}

.service-btn{
	display:inline-block;
	padding:10px 18px;
	border-radius:6px;
	background:#ca0069cc;
	color:#fff;
	border:1px solid #ca0069cc;
	text-decoration:none;
	font-size:13px;
	font-weight:600;
	cursor:pointer;
	transition:background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.service-btn:hover{
	background:transparent;
	color:#ca0069cc;
	transform:translateY(-2px);
}

/* Booking Section */
#booking.section{
	padding:80px 0;
	background:#fff;
}

.booking-container{
	width:90%;
	max-width:1200px;
	margin:0 auto;
	display:grid;
	grid-template-columns:1.2fr 0.8fr;
	gap:32px;
	align-items:start;
}

.booking-content{
	background:#fff;
	border:1px solid #eee;
	border-radius:12px;
	padding:22px;
	box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.booking-content h2{
	font-size:30px;
	font-weight:700;
	margin-bottom:8px;
	color:#333;
}

.booking-content p{
	color:#666;
	margin-bottom:18px;
}

.booking-form{
	background:transparent;
	border:none;
	border-radius:0;
	padding:0;
	box-shadow:none;
}

.booking-form .form-group{ 
	margin-bottom:14px; 
}

.booking-form input,
.booking-form select,
.booking-form textarea{
	width:100%;
	padding:12px 14px;
	border:1px solid #ddd;
	border-radius:8px;
	font-size:14px;
	outline:none;
	background:#fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
	border-color:#ca0069cc;
	box-shadow:0 0 0 3px rgba(202,0,105,0.12);
}

.submit-btn{
	display:inline-block;
	padding:12px 18px;
	border-radius:8px;
	background:#ca0069cc;
	color:#fff;
	border:1px solid #ca0069cc;
	font-weight:600;
	cursor:pointer;
	transition:background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover{
	background:transparent;
	color:#ca0069cc;
	transform:translateY(-2px);
}

.booking-info h3{
	font-size:22px;
	font-weight:600;
	margin-bottom:12px;
}

.booking-info{
	background:#fff;
	border:1px solid #eee;
	border-radius:12px;
	padding:22px;
	box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.info-item{
	display:flex;
	gap:12px;
	align-items:center;
	padding:12px 0;
	border-bottom:1px solid #eee;
}

.info-item:last-child{
	border-bottom:none;
}

.info-item i{
	width:44px;
	height:44px;
	border-radius:50%;
	background:#ca00691a;
	color:#ca0069cc;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
}

.info-item h4{
	margin:0 0 4px 0;
	font-size:16px;
	color:#333;
}

.info-item p{
	margin:0;
	color:#666;
	font-size:14px;
}

@media(max-width:900px){
	.booking-container{
		grid-template-columns:1fr;
	}
	#services.section{
		padding:60px 0;
	}
	#booking.section{
		padding:60px 0;
	}
}

/* Scroll-to-top button */
#scrollTop{
	position: fixed;
	left: 18px;
	bottom: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	background: #ca0069;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(202,0,105,0.35);
	z-index: 999;
	transition: all 0.3s ease;
}

#scrollTop:hover{
	transform: translateY(-2px);
	background: #a0005a;
}

/* Mobile responsive scroll button */
@media (max-width: 768px) {
	#scrollTop {
		left: 15px;
		bottom: 15px;
		width: 32px;
		height: 32px;
	}
}

@media (max-width: 480px) {
	#scrollTop {
		left: 12px;
		bottom: 12px;
		width: 28px;
		height: 28px;
	}
}

/* ===== Shared styles from index (hero, navbar, services, why-choose) ===== */

/* Navbar (index) */
.navbar{
	display:flex;
	padding:2% 6%;
	justify-content:space-between;
	align-items:center;
	width:100%;
	position:relative;
	z-index:10;
}

.navbar-menu{
	display:flex;
	list-style:none;
	gap:30px;
}

.navbar-menu li a{
	color:#fff;
	text-decoration:none;
	font-size:14px;
	font-weight:500;
	text-transform:uppercase;
	letter-spacing:1px;
	position:relative;
}

.navbar-menu li a::after{
	content:'';
	position:absolute;
	bottom:-5px;
	left:0;
	width:0;
	height:2px;
	background:#ca0069;
	transition:width 0.3s ease;
}

.navbar-menu li a:hover::after{ width:100%; }
.navbar-menu li a:hover{ color:#ca0069; }

.mobile-menu-toggle{ display:none !important; color:#fff; font-size:24px; cursor:pointer; }
@media (min-width: 769px){ .mobile-menu-toggle{ display:none !important; } }
@media (max-width: 768px){
	.navbar-menu{
		position:fixed; top:0; right:-100%; width:300px; height:100vh; background:#ca0069;
		flex-direction:column; justify-content:center; align-items:center; transition:right 0.3s ease; z-index:1000;
	}
	.navbar-menu.active{ right:0; }
	.mobile-menu-toggle{ display:block !important; z-index:1001; }
}

/* Header/Hero (index) */
.header{ min-height:100vh; width:100%; background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/banner.jpg); background-position:center; background-size:cover; position:relative; display:flex; flex-direction:column; }
.navbar-logo{ width:200px; height:auto; animation: float 3s ease-in-out infinite; }
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
.hero-content{ flex:1; display:flex; align-items:center; justify-content:center; text-align:center; padding:20px; }
.hero-text{ max-width:800px; width:100%; color:#fff; }
.hero-title{ font-size:4rem; font-weight:800; margin-bottom:20px; text-align:center; animation: fadeInUp 1s ease-out; }
.hero-subtitle{ font-size:1.2rem; margin-bottom:30px; text-align:center; line-height:1.8; max-width:600px; margin-left:auto; margin-right:auto; }
.hero-certificate{ display:flex; align-items:center; justify-content:center; gap:15px; margin:30px 0; flex-wrap:wrap; }
.hero-certificate img{ width:40px; height:auto; }
.hero-certificate-text{ font-size:1rem; font-weight:500; }
.hero-button{ display:inline-block; padding:15px 40px; background:transparent; color:#fff; border:2px solid #fff; text-decoration:none; font-size:16px; font-weight:600; text-transform:uppercase; letter-spacing:1px; transition:all 0.3s ease; margin-top:20px; }
.hero-button:hover{ background:#ca0069; border-color:#ca0069; transform:translateY(-2px); box-shadow:0 10px 25px rgba(202,0,105,0.3); }
@keyframes fadeInUp{ from{ opacity:0; transform:translateY(30px);} to{ opacity:1; transform:translateY(0);} }

/* Call to Action Section (index CTA) */
.cta-section{
	margin:100px auto;
	max-width:1200px;
	width:92%;
	background-image:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("images/banner2.jpg");
	background-position:center;
	background-size:cover;
	border-radius:15px;
	text-align:center;
	padding:80px 40px;
	color:#fff;
}
.cta-title{
	font-size:2.5rem;
	font-weight:700;
	margin-bottom:30px;
}
.cta-button{
	display:inline-block;
	padding:15px 40px;
	background:#ca0069;
	color:#fff;
	border:2px solid #ca0069;
	text-decoration:none;
	font-size:16px;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:1px;
	transition:all 0.3s ease;
	border-radius:5px;
}
.cta-button:hover{
	background:transparent;
	color:#ca0069;
	transform:translateY(-2px);
	box-shadow:0 10px 25px rgba(202,0,105,0.3);
}
@media(max-width:768px){
	.cta-section{ width:94%; padding:70px 28px; }
	.cta-title{ font-size:2rem; }
}

/* Services (index enhancements) */
.services-section{ padding:100px 0; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); }
.container{ max-width:1200px; margin:0 auto; padding:0 20px; }
.section-title{ text-align:center; font-size:2.5rem; font-weight:700; margin-bottom:20px; color:#333; }
.section-subtitle{ text-align:center; font-size:1.1rem; color:#666; max-width:800px; margin:0 auto 60px auto; line-height:1.8; }
.services-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap:30px; margin-top:50px; }
.service-card{ position:relative; background:#fff; padding:36px 28px; border-radius:16px; text-align:center; box-shadow:0 8px 26px rgba(0,0,0,0.08); border:1px solid #f0f0f0; transform:translateY(0) scale(1); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; overflow:hidden; }
.service-card::before{ content:""; position:absolute; inset:0; background: radial-gradient(1200px 120px at var(--mx, -10%) var(--my, -10%), rgba(202,0,105,0.08), transparent 40%); pointer-events:none; opacity:0; transition:opacity 0.35s ease; }
.service-card:hover::before{ opacity:1; }
.service-card:hover{ transform:translateY(-8px) scale(1.01); box-shadow:0 18px 50px rgba(202,0,105,0.18); border-color: rgba(202,0,105,0.25); }
.service-card h3{ font-size:1.5rem; font-weight:700; margin-bottom:14px; color:#1f1f1f; position:relative; display:inline-block; }
.service-card h3::after{ content:""; position:absolute; left:50%; bottom:-6px; width:0; height:3px; background: linear-gradient(90deg, #ca0069, #ff5fa5); border-radius:2px; transform:translateX(-50%); transition: width 0.35s ease; }
.service-card:hover h3::after{ width:60%; }
.service-card p{ color:#575757; line-height:1.85; font-size:1rem; }

/* Why Choose Us (index enhancements) */
.why-choose-section{ padding:100px 0; background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%); }
.features-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap:30px; margin-top:50px; }
.feature-card{ position:relative; border-radius:18px; overflow:hidden; box-shadow:0 8px 30px rgba(0,0,0,0.12); transition: transform 0.35s ease, box-shadow 0.35s ease; min-height:460px; border:1px solid rgba(202,0,105,0.12); }
.feature-card:hover{ transform: translateY(-6px) scale(1.01); box-shadow:0 20px 50px rgba(202,0,105,0.25); }
.feature-image{ width:100%; height:100%; object-fit:cover; position:absolute; top:0; left:0; transform:scale(1); filter: brightness(0.95) saturate(1.05); transition: transform 0.6s ease, filter 0.6s ease; }
.feature-card:hover .feature-image{ transform:scale(1.08); filter: brightness(0.8) saturate(1.1); }
.feature-overlay{ position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0) 100%); opacity:0; transition: opacity 0.35s ease; }
.feature-card:hover .feature-overlay{ opacity:1; }
.feature-overlay h3{ color:#fff; font-size:1.6rem; font-weight:700; margin:0 0 10px 0; text-align:left; transform:translateY(10px); opacity:0; transition: transform 0.35s ease, opacity 0.35s ease; }
.feature-overlay p{ color:#fff; font-size:1rem; line-height:1.7; margin:0; text-align:left; transform:translateY(10px); opacity:0; transition: transform 0.4s ease 60ms, opacity 0.4s ease 60ms; }
.feature-card:hover .feature-overlay h3, .feature-card:hover .feature-overlay p{ transform:translateY(0); opacity:1; }
@media (hover:none) and (pointer:coarse){ .feature-overlay{ opacity:1; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);} .feature-overlay h3, .feature-overlay p{ transform:translateY(0); opacity:1; }}


.booking-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.booking-content {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.booking-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.booking-content p {
    color: #666;
    margin-bottom: 18px;
}

.booking-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.booking-form .form-group{ 
    margin-bottom: 14px; 
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color: #ca0069cc;
    box-shadow: 0 0 0 3px rgba(202,0,105,0.12);
}

.submit-btn{
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    background: #ca0069cc;
    color: #fff;
    border: 1px solid #ca0069cc;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover{
    background: transparent;
    color: #ca0069cc;
    transform: translateY(-2px);
}

.booking-info {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.booking-info h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-item{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child{
    border-bottom: none;
}

.info-item i{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ca00691a;
    color: #ca0069cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item h4{
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #333;
}

.info-item p{
    margin: 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 900px){
    .booking-container{
        grid-template-columns: 1fr;
    }
    #booking.section{
        padding: 60px 0;
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ca0069;
    color: #fff;
    border: 2px solid #ca0069;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover {
    background: transparent;
    color: #ca0069;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(202, 0, 105, 0.3);
}
