html{
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

* {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

body{
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	background: #1a4d3a;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 100%);
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.4), inset 0 0 50px rgba(255, 255, 255, 0.3);
    animation: float 12s infinite ease-in-out, pulse 2.5s infinite ease-in-out, rotate 25s infinite linear;
    filter: blur(1px);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 75%;
    animation-delay: 1.5s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 45%;
    animation-delay: 3s;
}

.circle-4 {
    width: 380px;
    height: 380px;
    top: 65%;
    left: 10%;
    animation-delay: 4.5s;
}

.circle-5 {
    width: 420px;
    height: 420px;
    top: 10%;
    left: 85%;
    animation-delay: 6s;
}

.circle-6 {
    width: 350px;
    height: 350px;
    top: 80%;
    left: 60%;
    animation-delay: 7.5s;
}

.circle-7 {
    width: 480px;
    height: 480px;
    top: 40%;
    left: -8%;
    animation-delay: 9s;
}

.circle-8 {
    width: 360px;
    height: 360px;
    top: -5%;
    left: 55%;
    animation-delay: 10.5s;
}

.circle-9 {
    width: 440px;
    height: 440px;
    top: 75%;
    left: 90%;
    animation-delay: 12s;
}

.circle-10 {
    width: 390px;
    height: 390px;
    top: 30%;
    left: 25%;
    animation-delay: 13.5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(150px, -120px) scale(1.3);
    }
    50% {
        transform: translate(-120px, 150px) scale(0.7);
    }
    75% {
        transform: translate(180px, 80px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        box-shadow: 0 0 60px rgba(255, 255, 255, 0.3), inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 100px rgba(255, 255, 255, 0.6), inset 0 0 60px rgba(255, 255, 255, 0.4);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.comming-soon{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	min-height: 100%;
	background: -webkit-linear-gradient(left,#1a4d3a,#1a3a5c);
	padding: 40px 0 20px 0;
	display: flex;
	align-items: flex-start;
}

.coming-soon-box{
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 3;
	padding-bottom: 40px;
}

.logo{
	text-align: center;
}

.logo img{
	max-width: 25%;
	height: auto;
}

.logo h1{
	color: #fff;
	font-size: 52px;
	font-weight: 600;
}

.logo p{
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 300;
}

.main-content{
	padding: 40px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.page-title{
	font-size: 48px;
	color: #fff;
	font-weight: 600;
	margin: 30px 0;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stores-title{
	font-size: 36px;
	color: #fff;
	font-weight: 600;
	margin: 50px 0 30px 0;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stores-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin: 40px 0;
}

.store-item{
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 25px;
	width: 100%;
	max-width: 350px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: default;
}

.store-item:hover{
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@media (hover: none) {
	.store-item:hover{
		transform: none;
	}
}

.store-info{
	margin-bottom: 20px;
}

.store-name{
	font-size: 28px;
	color: #fff;
	font-weight: 600;
	margin: 0 0 15px 0;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.store-address{
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
	margin: 10px 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.store-address i{
	margin-right: 8px;
	color: #fff;
	font-size: 18px;
}

.store-email{
	font-size: 16px;
	color: #fff;
	margin: 15px 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.store-email i{
	margin-right: 8px;
	color: #fff;
	font-size: 18px;
}

.store-email a{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	transition: border-color 0.3s ease, opacity 0.3s ease;
	word-break: break-word;
	display: inline-block;
	padding: 2px 0;
}

.store-email a:hover{
	border-bottom-color: #fff;
	opacity: 0.9;
}

.store-email a:active{
	opacity: 0.8;
}

.store-phone{
	font-size: 16px;
	color: #fff;
	margin: 10px 0 0 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.store-phone i{
	margin-right: 8px;
	color: #fff;
	font-size: 18px;
}

.store-phone a{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	transition: border-color 0.3s ease, opacity 0.3s ease;
	padding-bottom: 2px;
}

.store-phone a:hover{
	border-bottom-color: #fff;
	opacity: 0.9;
}

.store-map{
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-map iframe{
	border-radius: 10px;
	display: block;
}

.soas-footer{
	margin-top: 60px;
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.soas-link{
	display: inline-flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: #fff;
	transition: opacity 0.3s ease;
	padding: 15px 25px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	backdrop-filter: blur(10px);
}

.soas-link:hover{
	opacity: 0.9;
	background: rgba(255, 255, 255, 0.15);
}

.soas-logo{
	max-height: 60px;
	width: auto;
	display: block;
}

.soas-text{
	font-size: 16px;
	color: #fff;
	margin: 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	line-height: 1.5;
}

.social-link{
	text-align: center;
}

.social-link a{
	display: inline-block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #fff;
	color: #fff;
	font-size: 18px;
	padding-top: 8px;
	margin: 0 4px;
	transition: all 0.4s linear;
}

.social-link a:hover{
	background: #fff;
	color: #3dab87;
}

.newsletter{
	max-width: 746px;
	margin: 40px auto 0;
}

.newsletter p{
	color: #fff;
	font-size: 16px;
	line-height: 1.5em;
	letter-spacing: 0.02em;
}

.newsletter-form{
	background: rgba(255,255,255,0.1);
}

.new-text{
	height: 50px;
	border: none;
	display: inline-block;
	width: 72%;
	background: none;
	box-shadow: none;
	outline: 0;
	padding: 0 20px;
	font-size: 16px;
	color: #fff;
}

.new-text::-webkit-input-placeholder {
	color: #fff;
}

.new-text::-moz-placeholder {
	color: #fff;
}

.new-text:-ms-input-placeholder{
	color: #fff;
}

.new-text:-moz-placeholder {
	color: #fff;
}

.new-btn{
	height: 50px;
	border: none;
	display: inline-block;
	margin-left: -5px;
	width: 28%;
	background: rgba(255,255,255,0.3);
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-weight: 600;
	outline: 0;
	transition: all 0.3s linear;
}

.new-btn .fa{
	margin-right: 10px;
}

.new-btn:hover{
	background: rgba(255,255,255,0.5);
}

.newsletter-form{
	margin-top: 30px;
}

/****************************************
		Responsive Media Query
****************************************/

@media only screen and (max-width:981px){
	.page-title{
		font-size: 36px;
	}
	
	.stores-title{
		font-size: 28px;
	}
	
	.store-item{
		max-width: 100%;
	}
	
	.circle-1, .circle-2, .circle-3, .circle-4, .circle-5, .circle-6, .circle-7, .circle-8, .circle-9, .circle-10 {
		width: 250px !important;
		height: 250px !important;
	}
}

@media only screen and (max-width:568px){
	.page-title{
		font-size: 28px;
		margin: 20px 0;
		padding: 0 15px;
	}
	
	.stores-title{
		font-size: 24px;
		margin: 30px 0 20px 0;
		padding: 0 15px;
	}
	
	.store-name{
		font-size: 22px;
	}
	
	.store-address, .store-email{
		font-size: 14px;
	}
	
	.stores-container{
		gap: 20px;
		padding: 0 15px;
	}
	
	.store-item{
		padding: 20px;
	}
	
	.store-map{
		margin-top: 15px;
	}
	
	.store-map iframe{
		height: 180px;
	}
	
	.soas-footer{
		padding: 20px 15px;
		margin-top: 40px;
	}
	
	.soas-link{
		flex-direction: column;
		gap: 10px;
		padding: 15px;
	}
	
	.soas-text{
		font-size: 14px;
		text-align: center;
	}
	
	.main-content{
		padding: 20px 0;
	}
	
	.comming-soon {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		min-height: 100%;
		background: -webkit-linear-gradient(top,#1a4d3a,#1a3a5c);
		padding: 20px 0;
	}
	
	.circle-1, .circle-2, .circle-3, .circle-4, .circle-5, .circle-6, .circle-7, .circle-8, .circle-9, .circle-10 {
		width: 180px !important;
		height: 180px !important;
	}
	
	.logo img{
		max-width: 35%;
	}
}

@media only screen and (max-width:480px){
	.logo h1{
		font-size: 30px;
	}
	
	.logo p{
		font-size: 10px;
	}
	
	.coming-text{
		padding: 20px 0 30px;
	}
	
	.newsletter p{
		font-size: 12px;
	}
	
	.coming-text h2 {
		font-size: 32px;
	}
	
	.new-text{
		height: 40px;
	}
	
	.new-btn{
		height: 40px;
	}
}

@media only screen and (max-width:360px){
	.page-title{
		font-size: 24px;
	}
	
	.stores-title{
		font-size: 20px;
	}
	
	.store-name{
		font-size: 20px;
	}
	
	.store-address, .store-email{
		font-size: 13px;
	}
	
	.logo img{
		max-width: 40%;
	}
	
	.scroll-to-top {
		bottom: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	.scroll-to-top i {
		line-height: 36px;
	}
}

.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
	transform: translateY(-2px);
}

.scroll-to-top i {
	line-height: 46px;
}

@media only screen and (max-width:768px){
	.scroll-to-top {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	
	.scroll-to-top i {
		line-height: 41px;
	}
}