/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* WhatsApp Icon Styles */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon i {
  color: white;
  font-size: 30px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile responsiveness for WhatsApp icon */
@media (max-width: 768px) {
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-icon i {
    font-size: 24px;
  }
}

body {
  font-family: Arial, sans-serif;
}

header.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.company-info h1 {
  font-size: 25px;
  margin: 0;
  color: #000;
 font-family: 'Times New Roman', Times, serif;
}

.sub-text {
  font-size: 12px;
  color: #888;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
}

.main-nav a:hover {
  color: #007BFF;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.category-bar {
  background-color: #162544;
  padding: 10px 20px;
}

.dropbtn {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 10px 15px;
  }

  /* Menu icon on left */
  .menu-toggle {
    order: 1;
    display: block;
  }

  /* Logo centered */
  .logo {
    order: 2;
    position: center;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
  }

  /* Right side text or icons */
  .right-text {
    order: 3;
    margin-left: auto;
  }

  /* Main nav hidden by default */
  .main-nav {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .main-nav a {
    padding: 10px 0;
    border-top: 1px solid #eee;
  }

  /* Category bar adjustment */
  .category-bar {
    padding-left: 20px;
  }
}

/*slider section*/
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  position: relative; /* allow absolutely positioned background image */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* images will fill the area */
  height: 100%;
  overflow: hidden;
  flex-wrap: nowrap;
}

.slide-content {
  position: relative; /* sit above image and overlay */
  z-index: 5;
  color: white;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.slide-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #aaa;
}

.slide-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: white;
  color: black;
}

.slide-image {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  z-index: 1;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill entire slide area */
  display: block;
}

/* dark overlay for legibility */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 3;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-content {
    padding: 10px;
    flex: none;
    max-width: 100%;
  }

  .slide-image {
    padding: 10px;
    flex: none;
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*Popular Categories*/
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popular-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card entry animation with stagger */
.card-grid .card {
  opacity: 0;
  transform: scale(0.6);
  animation: zoomIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-origin: center;
}

.card-grid .card:nth-child(1) { animation-delay: 0.1s; }
.card-grid .card:nth-child(2) { animation-delay: 0.2s; }
.card-grid .card:nth-child(3) { animation-delay: 0.3s; }
.card-grid .card:nth-child(4) { animation-delay: 0.4s; }

/* Quick zoom on hover */
.card-grid .card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  z-index: 2;
}

/* Smooth zoom for card image */
.card-grid .card img {
  transition: transform 0.3s ease-out;
}

.card-grid .card:hover img {
  transform: scale(1.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 15px 10px;
  font-size: 18px;
  color: #333;
}

.shop-now-btn {
  display: inline-block;
  background-color: #162544;
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  margin: 0 15px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
  background-color: #0d1629;
}

/* About Us Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Us Section */
.about-section {
  padding: 80px 20px;
  background-color: #5b6f7b;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Animation classes */
.about-image {
  opacity: 0;
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about-content {
  opacity: 0;
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about-content h2 {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.tagline {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.5s;
}

.about-content p {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.7s;
  
}

.about-features {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.9s;
}

.about-cta {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.1s;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 20px;
}

.about-content h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 15px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.tagline {
  font-size: 18px;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
 
  margin-bottom: 25px;
  color: white;
}

.about-features {
  list-style: none;
  margin-bottom: 30px;
}

.about-features li {
  margin-bottom: 12px;
  color: white;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.about-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: #162544;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.about-cta:hover {
  background-color: #0d1629;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    max-height: 300px;
  }

  .about-content {
    padding: 0;
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-features {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 30px;
  }
}

/* Features Product */
.features-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  animation: fadeInUp 1s ease-in-out; /* Section load animation */
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  animation: fadeInGrid 1.2s ease-in-out;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px 20px 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: refreshPop 0.8s ease-in-out;
}

/* Hover bounce + spin */
.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Refresh icon */
.icon-wrap {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #777;
  transition: transform 0.6s ease;
  pointer-events: none;
}

/* Spin on hover */
.feature-card:hover .icon-wrap {
  animation: spin 1s linear infinite;
}

/* Keyframes */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Entry animations */
@keyframes refreshPop {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInGrid {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Shop Now button */
.shop-btn {
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  user-select: none;
}

.shop-btn:hover {
  background-color: #002244;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 40px 10px;
  }
}


  /* Refresh animation */
    @keyframes fadeSlideIn {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-refresh {
      animation: fadeSlideIn 1s ease-out;
    }
    

    /*footer*/
    .footer {
  background-color: #162544;
  border-top: 1px solid #e1e1e1;
  color: white;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
 
}

.footer-text {
  font-size: 14px;
  color: white;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: rgb(169, 153, 153);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #0077ff;
}

.footer-col p {
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
}




.footer-bottom {
  border-top: 1px solid #ddd;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: white;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
  }
  .footer-col h4 {
    font-size: 16px;
  }
  .footer-col p,
  .footer-col ul li a {
    font-size: 13px;
  }
}

.footer-col iframe {
  height: 250px;

}


/* about page */
.breadcrumb-section {
  background-color: #0e2a47; /* navy blue bar */
  color: #fff;
  padding: 12px 20px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 15px;
}

.breadcrumb-container a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb-container a:hover {
  text-decoration: underline;
  color: #e2e2e2;
}

.breadcrumb-container span {
  color: #fff;
  margin: 0 5px;
}

.breadcrumb-container .active {
  font-weight: 600;
  text-decoration: underline;
}

/* About Section */
.about-se {
  background-color: #5d6d7e; /* gray-blue background */
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 1.2s ease-in-out;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  animation: bounceIn 1.5s ease;
}

/* Refresh Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-se {
    padding: 70px 10px;
  }

  .about-title {
    font-size: 32px;
  }

  .breadcrumb-container {
    font-size: 14px;
  }
}
.about {
  width: 100%;
  overflow: hidden;
}

/* ====== Hero Section ====== */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  color: #fff;
  text-align: center;
  padding: 100px 20px 120px;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease-in-out;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeInUp 1.5s ease-in-out;
}

/* ====== Mission Section ====== */
.about-mission {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about-mission h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #4f46e5;
}

.about-mission p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  animation: fadeIn 1s ease-in-out;
}

/* ====== Team Section ====== */
.about-team {
  background: #f3f4f6;
  padding: 80px 20px;
  text-align: center;
}

.about-team h2 {
  font-size: 2.5rem;
  color: #4f46e5;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  color: #333;
  font-size: 1.3rem;
}

.team-member p {
  color: #777;
  font-size: 1rem;
}

/* ====== Counters Section ====== */
.about-stats {
  background: linear-gradient(135deg, #6d28d9, #4f46e5);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  font-size: 2.5rem;
  font-weight: bold;
  animation: zoomIn 1s ease;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ====== Animations ====== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }
  .about-mission h2, .about-team h2 { font-size: 2rem; }
}



       /* Main Contact Section */
    #contact-us {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: stretch;
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      border-radius: 20px;
      overflow: hidden;
      width: 90%;
      max-width: 1000px;
      animation: refreshAnim 1.5s ease-in-out;
      margin: 40px auto;
    }

    /* Left Side - Map */
    .map-container {
      flex: 1 1 50%;
      height: 300px; /* Medium map size */
      order: 1;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .map-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
    }

    .contact-item i {
      color: #162544;
      font-size: 18px;
      width: 22px;
      text-align: center;
    }

    /* Right Side - Contact Info */
    .contact-details {
      flex: 1 1 45%;
      padding: 40px;
      order: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-details h2 {
      margin-bottom: 20px;
      color: #111;
      font-size: 28px;
      font-weight: 700;
      text-align: left;
    }

    .contact-info {
      margin-bottom: 20px;
    }

    .contact-info p {
      margin-bottom: 10px;
      line-height: 1.6;
      font-size: 15px;
    }

    .contact-info a {
      color: #007bff;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      #contact-us {
        flex-direction: column;
        align-items: center;
      }

      .map-container, .contact-details {
        order: unset;
        flex: 1 1 100%;
        padding: 20px;
      }

      .map-container {
        height: 250px;
      }

      .contact-details h2 {
        text-align: center;
      }
    }

    /* Refresh Animation */
    @keyframes refreshAnim {
      0% { opacity: 0; transform: scale(0.9); }
      50% { opacity: 0.5; transform: scale(1.02); }
      100% { opacity: 1; transform: scale(1); }
    }

    /* Body Fade-in */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* privacy policy */
    /* Main Section */
    .policy-container {
      width: 90%;
      max-width: 1100px;
      margin: 60px auto;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
      padding: 40px;
      animation: fadeUp 1.5s ease;
    }

    .policy-container h2 {
      color: #004aad;
      margin-bottom: 15px;
      font-size: 1.8rem;
      border-left: 5px solid #0096ff;
      padding-left: 10px;
    }

    .policy-container p {
      margin-bottom: 20px;
      font-size: 1rem;
      color: #444;
    }

    /* Animation Keyframes */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
      .policy-container {
        padding: 25px;
      }
    }

      
    /* led light */
    
         .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        h1 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 2.5rem;
        }

        .subtitle {
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #f8f9fa;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e74c3c;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 2;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .card-description {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .card-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .card-old-price {
            text-decoration: line-through;
            color: #95a5a6;
            font-size: 1rem;
            margin-left: 5px;
        }

        .card-button {
            display: inline-block;
            background: #162544;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .card-button:hover {
            background: #0d1629;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 7, 11, 0.4);
        }


        

        /* Animation for card entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .card:nth-child(1) { animation-delay: 0.1s; }
        .card:nth-child(2) { animation-delay: 0.2s; }
        .card:nth-child(3) { animation-delay: 0.3s; }
        .card:nth-child(4) { animation-delay: 0.4s; }
        .card:nth-child(5) { animation-delay: 0.5s; }
        .card:nth-child(6) { animation-delay: 0.6s; }
        .card:nth-child(7) { animation-delay: 0.7s; }
        .card:nth-child(8) { animation-delay: 0.8s; }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cards-container {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            .card {
                max-width: 100%;
            }
        }

        /* back to top */
        /* Back to Top Button Styles */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 50%;
            background: #162544;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            transform: translateX(-50%);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #0d1629;
            transform: translate(-50%, -3px);
            box-shadow: 0 6px 15px rgba(1, 15, 24, 0.4);
        }

        .back-to-top:active {
            transform: translate(-50%, -1px);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                left: 50%;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }









        