/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 22px;
    color: #d4af37;
    font-weight: 700;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-col p, .footer-col a {
    color: #bbb;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #d4af37;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 15px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .quality-container {
        flex-direction: column;
    }

    .quality-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

}

/* Floating Whatsapp and Email icons */
.floating-icons {
    position: fixed;
    top: 60%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Specific icon colors */
.floating-icons a.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-icons a.email {
    background: linear-gradient(135deg, #0072c6, #004c8c);
}

/* Hover effects */
.floating-icons a:hover {
    transform: scale(1.15) translateX(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 
                0 0 20px rgba(255, 255, 255, 0.1);
    filter: brightness(1.1);
}

/* Icon rotation on hover */
.floating-icons a i {
    transition: transform 0.3s ease;
}

.floating-icons a:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Glow effect on hover */
.floating-icons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-icons a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Tooltip */
.floating-icons a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.floating-icons a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Page load entrance animation */
@keyframes slideInBounce {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-icons a {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInBounce 0.6s ease-out forwards;
}

.floating-icons a:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-icons a:nth-child(2) {
    animation-delay: 0.2s;
}

/* Click effect */
.floating-icons a:active {
    transform: scale(1.05) translateX(-5px);
    transition: all 0.1s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-icons {
        right: 15px;
    }
    
    .floating-icons a:hover {
        transform: scale(1.1) translateX(-5px);
    }
}

/* --------------- G translate -------------------- */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#google_element {
    position: fixed;
    top: 45%;
    right: -120px; /* Initially hidden, only part visible */
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
}

#google_element:hover {
    right: 0; /* Slide out fully on hover */
}

/* Style the Google Translate widget */
.goog-te-combo {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    min-width: 150px;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
}

.goog-te-gadget-simple {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

/* --------------- Scroll to Top ----------------------- */

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#scrollToTopBtn:hover {
  background: #555;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------------------------------ */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Images/Bg/product\ 3.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.breadcrumb li:after {
    content: '/';
    position: absolute;
    right: -15px;
    color: #d4af37;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Product Styles */

/* Product button (view detail) */

.view-detail-btn {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 5px 10px;
  margin: 5px 0;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.view-detail-btn:hover {
  background-color: #e0e0e0;
}


.product-description {
  margin-top: 10px;
}

/* ----------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.page-header {
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  background: #444;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.metal-section {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

.metal-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

/*
.brass { background: linear-gradient(to right, #f9e79f, #f1c40f2a); }
.copper { background: linear-gradient(to right, #f5cba7ef, #d354004c); }
.aluminum { background: linear-gradient(to right, #ecf0f1, #95a5a62a); }
.zinc { background: linear-gradient(to right, #d6dbdf, #5665732a); }

.galvanized { background: linear-gradient(to right, #e8eaf6, #5c6bc02a); }
.anthracite { background: linear-gradient(to right, #779cadb2, #2e3b4451); }
.vanadium { background: linear-gradient(to right, #c7e4f9, #1976d23d); }
.chromium { background: linear-gradient(to right, #b8c6db, #667eea2a); }
.bronze { background: linear-gradient(to right, #d4a574, #8b451366); }
.ocean { background: linear-gradient(to right, #79dff6cc, #28bef088); }
.lavender { background: linear-gradient(to right, #a29bfe, #6c5ce799); }
.royal { background: linear-gradient(to right, #bd82d5cb, #8d44ad8f); }
.burgundy { background: linear-gradient(to right, #a4508bc1, #5f27cd2a); }
*/

.light-yellowish {
    background: linear-gradient(to right, #fff9e6, #fff3cc);
}

.light-blueish {
    background: linear-gradient(to right, #e1f3fb, #ccebff);
}

.light-bronze {
    background: linear-gradient(to right, #f5e6cc, #e6d1a8);
}

.light-silver {
    background: linear-gradient(to right, #e9e9e9, #e6e6e6);
}


.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 2rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-width: 20%;
  max-width: 40%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

.product-card h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.product-card button {
  padding: 0.4rem 0.8rem;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #0056b3;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
}

/* button */

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  color: #333;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.9;
  overflow: hidden;
  padding: 0;
}

.arrow-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.hover-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245,200,66,0.8) 0%, rgba(245,200,66,0) 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #f5c842;
  box-shadow: 
    0 10px 30px rgba(245, 200, 66, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.scroll-btn:hover .hover-effect {
  opacity: 1;
}

.scroll-btn:hover .arrow-icon {
  transform: scale(1.2);
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow: 
    0 5px 15px rgba(245, 200, 66, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.7) inset;
}

.scroll-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid rgba(245, 200, 66, 0.3);
  opacity: 0;
  transition: all 0.4s ease;
}

.scroll-btn:hover::before {
  opacity: 1;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
}

.scroll-btn.left {
  left: 2rem;
  animation: floatLeft 3s ease-in-out infinite;
}

.scroll-btn.right {
  right: 2rem;
  animation: floatRight 3s ease-in-out infinite;
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-5px); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(5px); }
}

/* Pulse effect when carousel loads */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(245, 200, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
}

.carousel-container:hover .scroll-btn {
  animation: pulse 2s ease-out;
}

.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }

@media (max-width: 768px) {
  .product-card {
    min-width: 70%;
    max-width: 70%;
  }
}
