/* Font Setup */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: #ADBBDA; /* cream color */
    color: #3D52A0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Reusable Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #ADBBDA;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #3D52A0;
}

.section-text {
    color: #3b4154;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background: linear-gradient(45deg,#800080, #00FFFF ); /* Cyan to Purple gradient */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.logo {
    height: 50px;
    width: 80px;
    border-radius: 15px;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    
}

.brand-name {
    font-weight: bold;
    font-size: 1.25rem;
    color: #EDE8F5;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Shadow */
    border: 2px solid #FFA500; /* Orange border */
    padding: 0.2rem 0.5rem; /* Optional: Add some padding for better appearance */
}


.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bolder;
}

.nav-links a:hover {
    color: #ff0000;
}

.menu-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    position: relative; /* to anchor absolute children */
    padding-top: 6rem;
    padding-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #2e026d, #8e44ad, #ff5e99);
    overflow: hidden;
    color: white;
    min-height: 350px; /* 600 + 150 */
  }
  
  .hero-content {
    position: relative;
    z-index: 1; /* below product-count */
  }
  
  /* Stars */
  .star {
    position: absolute;
    width: 10px;
    height: 10px;
    background: transparent;
    animation: spin 3s linear infinite;
    opacity: 0.5;
    z-index: 0;
  }
  
  .star::before, .star::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 2px;
  }
  
  .star::before {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px;
  }
  
  .star::after {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
      opacity: 1;
    }
    50% {
      opacity: 0.6;
    }
    100% {
      transform: rotate(360deg);
      opacity: 1;
    }
  }
  
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #EDE8F5;
    background: #FFA500; /* Orange background */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text; /* Ensure it works across all browsers */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for the cut-out effect */
}


.hero p {
    font-size: 1.1rem;
    color: #8697C4;
    margin-bottom: 2rem;
}



/* Cards */
.search-container {
    position: relative; /* Set relative positioning to allow absolute positioning of child elements */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left */
    margin: 20px auto;
    padding: 0 20px; /* Add padding to keep distance from edges */
  }
  
  /* Styling the Search Bar */
  .search-bar {
    width: 100%;
    max-width: 350px;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 16px;
    text-align: center;
  
    margin: 0 auto; /* centers the search bar horizontally */
    display: block; /* makes margin auto work properly */
  }
  
  
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  

.card {
    background: #EDE8F5;
    border: 1px solid #8697C4;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.btn-card {
    margin-top: 1rem;
    display: inline-block;
    background: #3D52A0;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* About Section */
.light-bg {
    background-color: #ADBBDA;
}

/* Contact */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

/* CSS */
.footer-container {
    position: relative;
    width: 100%;
    height: 280px; /* Total height of the footer */
  }
  
  .footer-black {
    background-color: #000;
    width: 100%;
    height: 280px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    text-align: right;
  }
  
  .footer-colored-box {
    position: absolute;
    top: -25px; /* This gives the 25px overlap from top */
    bottom: 0;  /* Aligns with black footer at the bottom */
    height: 305px; /* 280 + 25px overlap */
    width: 50%; /* Reduced width from before */
    background: linear-gradient(45deg, #00FFFF, #800080);
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 2rem;
    box-sizing: border-box;
    color: white;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  
  
.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    margin: 0 0.75rem;
    color: #EDE8F5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #3D52A0;
}


.welcome h1 {
  font-size: 3rem;
  color: black; /* Default text color */
  padding: 0.8rem 2.5rem;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  overflow: hidden; /* Hide shine outside */
}

.welcome h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%; /* Start outside */
  width: 50%;
  height: 100%;
  background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 215, 0, 0.8) 50%,
      transparent 100%
  );
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -50%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

 .product-count {
  position: absolute; /* important */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #001f4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.5rem;
  left: 1400px;
  top: 300px;
  z-index: 20; /* on top of everything */
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.7); /* optional glow effect */
}

.circle-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  transform: rotate(-40deg);
  z-index: 11; /* on top of product count background */
}

.circle-bg {
  fill: none;
  stroke: transparent;
  stroke-width: 3.8;
}

.circle-fg {
  fill: none;
  stroke: lime;
  stroke-width: 3.8;
  stroke-dasharray: 56, 100;/* change product count meter here*/
}

.wave-separator {
  display: block;
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
}

  .portfolio{
    background-color: #ADBBDA; /* cream color */
    padding: 2rem;
    position: relative;
    z-index: 1;
  }
  