* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, white);
}

/* TOP SLIDER STRIP */
.top-slider{
    width:100%;
    background:#00b894;
    overflow:hidden;
    white-space:nowrap;
}

.slide-track{
    display:inline-block;
    padding:10px 0;
    animation: slideText 15s linear infinite;
}

.slide-track span{
    margin:0 40px;
    color:white;
    font-weight:600;
    font-size:14px;
}

@keyframes slideText{
    0%{ transform: translateX(100%); }
    100%{ transform: translateX(-100%); }
}



/* NAVBAR */
.navbar {
    width: 100%;
    padding: 15px 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* Hover Underline Animation */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #00b894;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #00b894;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* SEARCH BOX */
.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box input {
    padding: 7px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: #00b894;
    box-shadow: 0 0 5px rgba(0, 184, 148, 0.3);
}

.search-box button {
    padding: 7px 14px;
    border-radius: 20px;
    border: none;
    background: #00b894;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.search-box button:hover {
    background: #019875;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .search-box {
        display: none;
    }
}


/* NAVBAR CENTER */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

nav ul li {
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

/* STORE NAME CENTER (PAGE MIDDLE) */
#storeName {
    height: calc(20vh - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
    letter-spacing: 3px;
    background: linear-gradient(to right, #11998e, #38ef7d);
    margin: 0;
}




.cards{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
padding: 40px;
max-width: 1200px;
margin: auto;
}


.card{
background: linear-gradient(145deg, #ffffff, #f0f0f0);
border-radius: 20px;
box-shadow: 0 15px 35px rgba(0,0,0,0.2);
overflow: hidden;
transition: transform 0.4s, box-shadow 0.4s;
}
.card:hover{
transform: translateY(-15px) scale(1.05);
box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}


.card-img img{
width: 100%;
height: 180px;
object-fit: cover;
transition: transform 0.5s;
}


.card:hover .card-img img{
transform: scale(1.1);
}


.card-content{
padding: 20px;
text-align: center;
}
.card-content h2{
color: #333;
margin-bottom: 10px;
}


.card-content p{
color: #555;
font-size: 14px;
margin-bottom: 15px;
}


.like-btn{
padding: 10px 25px;
border: none;
border-radius: 25px;
background: linear-gradient(135deg, #667eea, #764ba2);
color: #fff;
cursor: pointer;
font-size: 14px;
transition: transform 0.3s;
}

.like-btn:hover{
transform: scale(1.1);
}


.like-count{
margin-top: 10px;
color: #444;
}

footer {
        /* Dark background */
  color: #141010;                /* White text */
  text-align: center;         /* Center text */
  padding: 15px 0;            /* Vertical padding */
  font-size: 14px;            /* Text size */
  margin-top: 30px;           /* Space above footer */
}




.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 250px;
    border-radius: 50%;
}

.about-text h1 {
    margin-bottom: 20px;
    font-size: 32px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.about-text button {
    padding: 10px 25px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.about-text button:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}
 /* contact US */



/* Main Section */
.contact-section {
    padding: 60px 10%;
}

.contact-container {
    display: flex;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Contact Info */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 15px;
    color: #555;
}

/* Contact Form */
.contact-form {
    flex: 1;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #0056b3;
}

#formMessage {
    margin-top: 10px;
    font-weight: bold;
}

/* Map */
.map {
    margin-top: 40px;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
 /* Services page CSS */


/* HERO SECTION */
.services-hero {
    text-align: center;
    padding: 80px 20px 40px;
}

.services-hero h1 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* SERVICES GRID */
.services-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* SERVICE CARD */
.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Glow Effect */
.service-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0,255,200,0.4), transparent);
    top: -40px;
    right: -40px;
    border-radius: 50%;
}

/* CARD TEXT */
.service-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: linear-gradient(45deg, #00f5a0, #00d9f5);
    color: #000;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 200, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }
}


/* product list */
.container{
    max-width:800px;
    margin:auto;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.form{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.form input{
    padding:8px;
    flex:1;
}

.form button{
    padding:8px 15px;
    background:#00b894;
    color:white;
    border:none;
    cursor:pointer;
}

table{
    width:100%;
    border-collapse:collapse;
}

th, td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
}

th{
    background:#00b894;
    color:white;
}

button.remove{
    background:red;
    color:white;
    border:none;
    padding:5px 10px;
    cursor:pointer;
}