/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Push content below fixed top bar + navbar */
body {
  padding-top: 80px; /* top bar (80px) + navbar (60px) */
}

/* Top Bar */
.top-bar {
  background-color: #000;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  height: 80px; /* consistent fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar .logo {
  height: 55px; /* scales logo neatly */
  width: auto;
  display: block;
}

/* Hamburger Icon (inside top bar) */
.hamburger {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  z-index: 1102;
  display: none; /* visible only on mobile */
}

/* Desktop Navbar */
.desktop-nav {
  background-color: #f8d7da;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  position: fixed;
  top: 80px; /* directly below top bar */
  left: 0;
  width: 100%;
  z-index: 1000;
}


.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.desktop-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.desktop-nav a:hover {
  color: #ff4081;
}

/* Mobile Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background-color: #f8d7da;
  transition: 0.4s ease;
  z-index: 1200;
  padding-top: 80px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  padding: 15px 25px;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  display: block;
}

.mobile-menu a:hover {
  color: #ff4081;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .desktop-nav {
    display: none;
  }
}
/* Banner Section */
.banner {
  width: 100%;
  height: 400px; /* adjust as needed */
  background-image:url(../images/bann.png); /* placeholder */
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 0; /* below navbar */
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.0); 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.banner-overlay h1 {
  font-size: 48px;
  margin-bottom: 10px;
  margin-top:40px;
}

.banner-overlay p {
  font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .banner {
    height: 350px;
	
  }

  .banner-overlay h1 {
    font-size: 48px;
  }

  .banner-overlay p {
    font-size: 14px;
  }
}
/* Categories Section */
.categories {
  padding: 60px 20px;
  background-color: #fff0f3;
}

.categories .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on desktop */
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.category-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  font-size: 16px;
  white-space: nowrap;
}

/* Responsive: 2 per row on tablets/mobile */
@media (max-width: 1024px) {
  .categories .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-title {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* Project Highlight Section */
.project-highlight {
  width: 100%;
  background-color: #f8f0f5; /* light background, optional */
  padding: 80px 20px;
  text-align: center;
}

.project-highlight .highlight-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.project-highlight .highlight-content p {
  font-size: 18px;
  color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .project-highlight {
    padding: 60px 15px;
  }

  .project-highlight .highlight-content h2 {
    font-size: 28px;
  }

  .project-highlight .highlight-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .project-highlight .highlight-content h2 {
    font-size: 22px;
  }

  .project-highlight .highlight-content p {
    font-size: 14px;
  }
}


/* Featured Categories Section */
.featured-categories {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

/* Section title */
.featured-section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
}

.featured-categories {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.featured-section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s;
  width: 100%;
}

.featured-card img {
  width: 100%;
  height: 300px; /* fixed height */
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #000;
}

/* Responsive: 2 per row on tablet/mobile */
@media (max-width: 1024px) {
  .featured-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .featured-title {
    font-size: 14px;
  }
}


/* Zig-Zag Section */
.zigzag-section {
  padding: 60px 20px;
  background-color: #f9f5f8;
}

.zigzag-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.zigzag-block.reverse {
  flex-direction: row-reverse;
}

.zigzag-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

.zigzag-text {
  flex: 1;
}

.zigzag-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.zigzag-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .zigzag-block {
    flex-direction: column;
    text-align: center;
  }

  .zigzag-block.reverse {
    flex-direction: column;
  }

  .zigzag-img img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}


/** footer**/

.footer-dark {
  background-color: #0a1f44;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.footer-top-links {
  text-align: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top-links a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-top-links a:hover {
  text-decoration: underline;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column form {
  display: flex;
}

.footer-column form input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 3px 0 0 3px;
}

.footer-column form button {
  background: #ffcc00;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}

.footer-column form button:hover {
  background: #e6b800;
}

.social-icons a {
  color: #ffffff;
  margin-right: 10px;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
}
/**footer end**/


/**rings page code**/
/* Inner Banner */
.inner-banner {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 50px; /* adjust to push below navbar */
  overflow: hidden;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px; /* Prevent text touching edges on small screens */
}

.banner-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.banner-text p {
  font-size: 18px;
  line-height: 1.5;
}

/* ? Responsive Adjustments */
@media (max-width: 992px) {
  .inner-banner {
    height: 320px;
    margin-top: 40px;
  }
  .banner-text h1 {
    font-size: 30px;
  }
  .banner-text p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .inner-banner {
    height: 260px;
    margin-top: 35px;
  }
  .banner-text h1 {
    font-size: 24px;
  }
  .banner-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .inner-banner {
    height: 220px;
    margin-top: 0px;
  }
  .banner-text h1 {
    font-size: 20px;
  }
  .banner-text p {
    font-size: 13px;
  }
}


/* Product Grid */
.product-grid {
  padding: 60px 20px;
  background-color: #fff0f3;
}

.product-grid .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row desktop */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .product-grid .container {
    grid-template-columns: repeat(2, 1fr); /* 2 per row tablet */
  }
}

@media (max-width: 600px) {
  .product-grid .container {
    grid-template-columns: 1fr; /* 1 per row mobile */
  }
}


.product-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
  color: #000;
}

.product-card p {
  font-size: 16px;
  color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid .container {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 600px) {
  .product-grid .container {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }

  .banner-text h1 {
    font-size: 24px;
  }

  .banner-text p {
    font-size: 14px;
  }
}
.order-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.order-btn:hover {
  background-color: #333;
}

/* Popular Products */
.popular-products {
  text-align: center;
  padding: 60px 5%;
  background-color: #fff;
}

.popular-products h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.popular-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.popular-card:hover {
  transform: scale(1.03);
}

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.order-now {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.order-now:hover {
  background-color: #333;
}

/* View All Button */
.view-all-container {
  margin-top: 50px;
  text-align: center;
}

.view-all-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background-color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popular-products h2 {
    font-size: 26px;
  }

  .popular-card img {
    height: 280px;
  }

  .view-all-btn {
    padding: 8px 25px;
    font-size: 15px;
  }
}
/* Contact Section */
.contact-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Map */
.contact-map {
  flex: 1 1 50%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Form */
.contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
  margin-bottom: 25px;
  font-size: 28px;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
}

.contact-form button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map,
  .contact-form {
    flex: 1 1 100%;
  }

  .contact-map {
    height: 300px;
  }
}


