/*  */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0f2c;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10, 15, 44, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffd700;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* ✅ CLEAN BACKGROUND (NO IMAGE) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10,15,44,0.8)),
    url("store.jpeg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* HERO TEXT */
.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffd700;
}

.hero-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #ddd;
}

/* BUTTONS */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
  transition: 0.3s;
}

.primary-btn {
  background: #ffd700;
  color: #000;
}

.secondary-btn {
  border: 1px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: scale(1.05);
}

/* HERO IMAGE (OWNERS FLOAT) */
.hero-images {
  position: absolute;
  right: 80px;
  top: 120px;
}

.owner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffd700;
  position: absolute;
}

.owner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner1 {
  top: 0;
  right: 0;
}

.owner2 {
  top: 100px;
  right: 80px;
}

/* SHAPES */
.shape1, .shape2 {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.shape1 {
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.2);
  top: -50px;
  right: -50px;
}

.shape2 {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  bottom: -40px;
  right: 50px;
}

/* SECTION TITLES */
.title {
  text-align: center;
  margin: 60px 0 20px;
}

.title h2 {
  font-size: 32px;
  color: #ffd700;
}

/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  padding: 40px 60px;
}

/* PRODUCT CARD */
.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

/* ABOUT */
.about {
  display: flex;
  gap: 40px;
  padding: 40px 60px;
  align-items: center;
}

.about img {
  width: 400px;
  border-radius: 15px;
}

.about p {
  color: #ccc;
  line-height: 1.7;
}

/* FOOTER (auto style) */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  margin-top: 50px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  nav {
    flex-direction: column;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-images {
    display: none;
  }

  .about {
    flex-direction: column;
  }
}


/* NAVBAR FIXED */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(10, 15, 44, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* LOGO FIX */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.logo span b {
  color: #ffd700;
}

/* MENU */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin: 0 12px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* HOVER LINE */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffd700;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
nav ul li a.active {
  color: #ffd700;
}

/* WHATSAPP BUTTON */
.whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
}

.whatsapp:hover {
  transform: scale(1.05);
}








/* FLOATING WHATSAPP ICON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}


/* ===== MAIN FOOTER ===== */
.designer-footer {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    color: #ddd;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

/* GRID LAYOUT */
.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* BOX */
.footer-box h3 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

/* UNDERLINE */
.footer-box h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ff4d6d;
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 10px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #ff4d6d;
    margin-right: 10px;
    font-size: 24px;
}

/* ABOUT */
.footer-about {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

/* LINKS */
.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
    color: #bbb;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-box ul li a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

/* LINK HOVER */
.footer-box ul li:hover,
.footer-box ul li a:hover {
    color: #ff4d6d;
    padding-left: 8px;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-item i {
    margin-right: 10px;
    color: #ff4d6d;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255,77,109,0.2);
}

/* HOVER EFFECT */
.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* BRAND COLORS */
.social-icons a:nth-child(1):hover { background: #1877f2; }
.social-icons a:nth-child(2):hover { background: #e4405f; }
.social-icons a:nth-child(3):hover { background: #1da1f2; }
.social-icons a:nth-child(4):hover { background: #0077b5; }

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .designer-footer {
        text-align: center;
    }

    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }
}



/* TEAM SECTION */
.team-section {
  padding: 60px;
  text-align: center;
  background: #0a0f2c;
}

.team-section h2 {
  font-size: 32px;
  color: #ffd700;
}

.team-sub {
  color: #ccc;
  margin-bottom: 40px;
}

/* CONTAINER */
.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.team-card {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 15px;
  width: 280px;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXT */
.team-card h3 {
  margin-top: 15px;
  color: #fff;
}

.team-card .role {
  color: #ffd700;
  font-size: 14px;
  margin: 5px 0;
}

.team-card p {
  font-size: 14px;
  color: #ccc;
}

/* HOVER EFFECT */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}










