body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Sticky Nav */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.96);
    z-index: 1000; border-bottom: 1px solid #222;
    padding: 1rem 0; transition: 0.3s;
}
.navbar.scrolled { background: rgba(0,0,0,0.98); box-shadow: 0 5px 20px #1119; }

.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem;
}

.logo img { height: 80px; }

.nav-menu {
    display: flex; gap: 2.2rem; list-style: none;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.09rem;
    position: relative;
    padding: 0.3rem 0.6rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    border-radius: 8px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #F46E61;
    background: rgba(244,110,97,0.10);
}

.nav-menu a::after {
    content: '';
    position: absolute; left: 50%; bottom: -6px; width: 0;
    height: 2px; background: #F46E61;
    transition: width 0.3s; transform: translateX(-50%);
    border-radius: 1px;
}
.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 80%;
}

.mobile-menu-btn {
    display: none; background: none; border: none; color: #fff;
    font-size: 1.7rem; cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }

    .nav-menu {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(15,15,15,0.97);
        padding: 1.5rem 0 2rem 0;
        box-shadow: 0 6px 22px #0005;
        align-items: center; /* <--- Center menu items */
        z-index: 1100;
    }
    .nav-menu.active { display: flex; }

    .nav-menu a {
        font-size: 1.14rem;
        margin: 0.4rem 0;
        width: 100%;
        text-align: center;
       
        border-radius: 7px;
        background: transparent;
        transition: background 0.2s, color 0.2s;
    }
    .nav-menu a:hover, .nav-menu a.active {
        background: rgba(244,110,97,0.14);
        color: #F46E61;
    }
    .nav-menu a::after, .nav-menu a:hover::after, .nav-menu a.active::after {
        display: none;
    }
}

/* Hero Section */
.hero { text-align: center; padding: 6rem 0 3rem; background: linear-gradient(135deg,#1a1a1a 0%,#222 100%); border-radius: 18px; position: relative; margin-bottom: 2.5rem;   }
@media (min-width: 768px) {
  .hero {
    margin-top: 150px;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-top: 80px;
  }
}



.hero-image {
    width: 200px; height: 200px; margin: 0 auto 2rem;
    background: linear-gradient(135deg,#F46E61,#F7931E); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; box-shadow: 0 18px 40px #F46E6133;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto 1.7rem; }
.cta-button {
    display: inline-block; background: linear-gradient(45deg,#F46E61,#F7931E); color: #fff;
    padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1.1rem;
    border: none; cursor: pointer; transition: 0.3s;
}
.cta-button:hover { box-shadow: 0 10px 30px #F46E6130; }




/* Featured Products Section Centered */
.section-header {
    text-align: center;
    margin: 0 auto 2rem auto;
}

/* Products Grid Centered, Full-width khatam */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem auto;
    max-width: 1200px;
    width: 100%;
}

/* Product Card Styling */
.product-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    transition: 0.3s;
}
.product-card:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: #FF6B6B;
    box-shadow: 0 12px 30px #FF6B6B30;
}

/* Slider Container & Image */
.product-slider-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 240px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
}
.product-slider img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background: #181818;
    border-radius: 10px;
    display: none;
    transition: opacity 0.3s;
}
.product-slider img:first-child {
    display: block;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #FF6B6B;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0.88;
    transition: background 0.2s;
}
.slider-arrow.left { left: 8px; }
.slider-arrow.right { right: 8px; }
.slider-arrow:hover { background: #FF6B6B; color: #fff; }
/* Slider Arrow Styling */
.slider-arrow {
    position: absolute;
    /* Place arrows below image (bottom: 18px, e.g.) */
    bottom: 16px;
    top: auto;        /* override previous top */
    transform: none;  /* reset translateY */
    background: #222;
    color: #FF6B6B;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.92;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 12px #0004;
    padding: 0;
}

/* Arrows positioning: left & right sides below the image */
.slider-arrow.left { left: 25%; right: auto; }
.slider-arrow.right { right: 25%; left: auto; }

/* Center arrow on hover & keep circle perfect */
.slider-arrow:hover {
    background: #FF6B6B;
    color: #fff;
}

/* Make sure arrow icon is vertically and horizontally centered always */
.slider-arrow > * {
    margin: 0 auto;
    line-height: 1;
    font-family: inherit;
    font-size: inherit;
}


/* Dots */
.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-dot.active {
    background: #FF6B6B;
    transform: scale(1.2);
}

/* Price & Button Colors */
.price { font-size: 1.4rem; color: #FF6B6B; margin-bottom: 1rem; }
.product-card .old-price,
.product-card span[style*="line-through"] {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
}
.cta-button {
    background: #FF6B6B !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    margin-top: 1rem;
    transition: background 0.25s, box-shadow 0.2s;
    box-shadow: 0 4px 24px #ff6b6b40;
    display: inline-block;
}
.cta-button:hover {
    background: #fff !important;
    color: #FF6B6B !important;
    border: 1px solid #FF6B6B;
}

/* Featured Products Section Centered */
.section-header {
    text-align: center;
    margin: 0 auto 2rem auto;
}

/* Products Grid Centered, Full-width khatam */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem auto;
    max-width: 1200px;
    width: 100%;
}

/* Product Card Styling */
.product-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    transition: 0.3s;
}
.product-card:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: #FF6B6B;
    box-shadow: 0 12px 30px #FF6B6B30;
}

/* Slider Container & Image */
.product-slider-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 240px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
}
.product-slider img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    background: #181818;
    border-radius: 10px;
    display: none;
    transition: opacity 0.3s;
}
.product-slider img:first-child {
    display: block;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #FF6B6B;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0.88;
    transition: background 0.2s;
}
.slider-arrow.left { left: 8px; }
.slider-arrow.right { right: 8px; }
.slider-arrow:hover { background: #FF6B6B; color: #fff; }

/* Dots */
.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-dot.active {
    background: #FF6B6B;
    transform: scale(1.2);
}

/* Price & Button Colors */
.price { font-size: 1.4rem; color: #FF6B6B; margin-bottom: 1rem; }
.product-card .old-price,
.product-card span[style*="line-through"] {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
}
.cta-button {
    background: #FF6B6B !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    margin-top: 1rem;
    transition: background 0.25s, box-shadow 0.2s;
    box-shadow: 0 4px 24px #ff6b6b40;
    display: inline-block;
}
.cta-button:hover {
    background: #fff !important;
    color: #FF6B6B !important;
    border: 1px solid #FF6B6B;
}



/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin: 2.5rem 0 0 0;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: 16px;
    padding: 2.3rem 1.3rem 2.1rem 1.3rem;
    text-align: center;
    border: 1.5px solid #222;
    transition: 0.32s;
    box-shadow: 0 2px 16px #1a1a1a22;
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.feature-card:hover {
    border-color: #FF6B6B;
    box-shadow: 0 12px 32px #FF6B6B28;
    transform: translateY(-7px) scale(1.017);
}

.feature-icon {
    font-size: 3.1rem;
    margin-bottom: 1.05rem;
    color: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.33rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.6rem 0;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 1.07rem;
    color: #ffe0df;
    line-height: 1.7;
    margin: 0;
}
.features-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}


/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #222 0%, #1a1a1a 100%);
  border-radius: 18px;
  margin: 3rem 0;
  padding: 2.8rem 1rem 2.6rem 1rem;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 2.2rem;
  align-items: stretch;
}

.testimonial-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 16px;
  padding: 2.2rem 1.4rem 2rem 1.4rem;
  border: 1.5px solid #222;
  box-shadow: 0 2px 16px #1a1a1a22;
  transition: 0.3s;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.testimonial-card:hover {
  border-color: #FF6B6B;
  box-shadow: 0 12px 32px #FF6B6B22;
  transform: translateY(-7px) scale(1.016);
}
.testimonial-card p {
  color: white;
  font-size: 1.11rem;
  text-align: center;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.testimonial-card strong {
  color: #fff;
  font-size: 1.06rem;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-align: center;
}
.testimonial-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 16px;
  padding: 2.2rem 1.4rem 2rem 1.4rem;
  border: 1.5px solid #222;
  box-shadow: 0 2px 16px #1a1a1a22;
  transition: 0.3s;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Remove justify-content: space-between; */
  /* Use this instead: */
  justify-content: flex-start;
  position: relative;
}

.testimonial-card strong {
  color: #ff6b6b;
  font-size: 1.06rem;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-align: center;
  margin-top: 1.1rem;    /* Or smaller, adjust as you like */
  margin-bottom: 0;      /* Remove bottom margin if any */
  display: block;
}
.testimonial-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border-radius: 16px;
  padding: 2.2rem 1.4rem 2rem 1.4rem;
  border: 1px solid #fff;   /* <-- White border always */
  box-shadow: 0 2px 16px #1a1a1a22;
  transition: 0.3s;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.testimonial-card:hover {
  border-color: #FF6B6B;
  box-shadow: 0 12px 32px #FF6B6B22;
  transform: translateY(-7px) scale(1.016);
}


/* Video Section */
.video-section {
  padding: 60px 20px;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  margin-bottom: 40px;
}

.videos-flex {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-container {
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 107, 107, 0.9);
  color: white;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.video-thumbnail:hover .play-btn {
  background: #FF6B6B;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.close:hover {
  color: #FF6B6B;
}

/* Responsive */
@media (max-width: 768px) {
  .videos-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .video-container {
    max-width: 100%;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
}

/* Contact */
.contact-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Your grid, keep as-is */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-card {
  background: linear-gradient(135deg,#1a1a1a 0%,#222 100%);
  border-radius: 16px;
  padding: 2rem 1.3rem;
  text-align: center;
  border: 1px solid #fff;           /* White border always */
  transition: 0.32s;
  box-shadow: 0 2px 16px #1a1a1a22;
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.contact-card:hover {
  border-color: #FF6B6B;
  box-shadow: 0 12px 32px #FF6B6B28;
  transform: translateY(-7px) scale(1.015);
}

/* Footer */
.footer { background:  rgba(0,0,0,0.96);; padding: 2.5rem 0 1rem; margin-top: 2rem; border-top: 1px solid #222; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 2rem; }
.footer-section h3 { color: #F46E61; margin-bottom: 1rem; }
.footer-section p, .footer-section a { color: #ccc; text-decoration: none; margin-bottom: 0.5rem; display: block; }
.footer-section a:hover { color: #F46E61; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 1rem; border-top: 1px solid #222; color: #888; font-size: 0.9rem; }


/* Preview Modal Styles */
.image-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.image-modal-overlay.active { display: flex; }
.image-modal-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #181818;
  padding: 1rem;
  box-shadow: 0 8px 48px #0008;
}
.image-modal-content img {
  max-width: 100%;
  max-height: 75vh;
  display: block;
  margin: auto;
  border-radius: 10px;
}
.image-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #FF6B6B;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.93;
  transition: background 0.2s;
  z-index: 2;
}
.image-modal-close:hover { background: #fff; color: #FF6B6B; }


.product-card {
    background: linear-gradient(135deg,#1a1a1a 0%,#222 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #fff;   /* White border always */
    position: relative;
    transition: 0.3s;
}
.product-card:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: #FF6B6B;
    box-shadow: 0 12px 30px #FF6B6B30;
}


.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border-radius: 16px;
    padding: 2.3rem 1.3rem 2.1rem 1.3rem;
    text-align: center;
    border: 1px solid #fff;   /* White border always */
    transition: 0.32s;
    box-shadow: 0 2px 16px #1a1a1a22;
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.feature-card:hover {
    border-color: #FF6B6B;
    box-shadow: 0 12px 32px #FF6B6B28;
    transform: translateY(-7px) scale(1.017);
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 20px !important;
  }
}
/* Responsive Header Nav */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
}

/* Responsive Gallery Section */
@media (max-width: 768px) {
  .slider-container {
    width: 100%;
    padding: 0 10px;
  }

  .slide img {
    height: 200px;
  }

  .nav-button {
    font-size: 18px;
    padding: 4px 8px;
    top: 40%;
  }

  .slide {
    min-width: 90%;
  }

  .slider-track {
    gap: 5px;
    padding: 10px 0;
  }
}

