/**
Theme Name: Aura Metal
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aura-metal
Template: astra
*/


.my-nav a::after {
    width: 32% !important;
    left: 50%;
    transform: translateX(100%)  !important;  
}
@media (max-width: 1024px) {
  .my-nav ul li {
     margin: 5px;
  }
  .my-nav ul li a {
      border-radius: 8px !important;
	  border-top-left-radius: 8px !important;
	  border-top-right-radius: 8px !important;
	  border-bottom-left-radius: 8px !important;
	  border-bottom-right-radius: 8px !important;
  }
}

#n2-ss-2 .n2-ss-slider,
#n2-ss-2 .n2-ss-slide {
    height: calc(100dvh - 81px) !important;
    min-height: calc(100dvh - 81px) !important;
}

#n2-ss-2 {
    overflow: hidden !important;
}
#n2-ss-2 .n2-ss-slide-background-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.btn-lift, 
.btn-lift a, 
.btn-lift div {
  display: inline-block !important;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out !important;
}
.btn-lift:hover {
  transform: translateY(-2px) !important;
}
.btn-lift:hover a, 
.btn-lift:hover .n2-ow {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.line-above h1, 
.line-above.n2-ss-layer h1 {
    position: relative !important;
    padding-top: 30px !important;
    overflow: visible !important;
}
.line-above h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0; 
    height: 4px;
    background-color: #c9a227;
    display: block !important;
}
@keyframes lineGrow {
    from { width: 0; }
    to { width: 100px; }
}
.n2-ss-slide-active .line-above h1::before {
    animation: lineGrow 1s ease forwards !important;
}
.n2-ss-slide-active .hero-fade {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroFadeUp 1.2s ease-out forwards;
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-links-list li {
    position: relative;
    cursor: pointer;
    padding-right: 25px;
	line-height: 20px !important;
}
.footer-links-list li::after {
    content: "\279c";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-100%) translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    line-height: 20px !important;
    color: #c9a227;
}
.footer-links-list li span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.footer-links-list li:hover span {
    transform: translateX(20px);
}
.footer-links-list li:hover::after {
    opacity: 1;
    transform: translateY(-100%) translateX(0); 
}

.gold-expand .elementor-divider-separator {
  border: none !important;
  background: none !important;
  height: 4px;
  width: 100%;
  display: block;
  background-image: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgb(201,162,39),
    rgba(0,0,0,0)
  ) !important;
  transform: scaleX(0);
  transform-origin: center;
  animation: goldLineExpand 1.2s ease-out forwards;
  animation-delay: 0.8s;
}
@keyframes goldLineExpand {
  to {
    transform: scaleX(1);
  }
}

/*====== Home Page Product Card ======*/
.product-card {
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
	border: none !important;
}
/* Bottom border animation */
.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 5;
    background: linear-gradient(
        90deg,
        rgb(30, 58, 95),
        rgb(201, 162, 39)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.product-card:hover::after {
    transform: scaleX(1);
}
.image-zoom{
    position: relative;
    z-index: 1;
}
/* Image zoom */
.image-zoom img {
    transition: transform 0.5s ease !important;
}
.product-card:hover .image-zoom img {
    transform: scale(1.08) !important;
}


/* Button slide up */
.hover-btn {
    position: absolute !important;
    bottom: -60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    transition: bottom 0.4s ease !important;
    z-index: 2 !important;
}

.product-card:hover .hover-btn {
    bottom: 20px !important;
}
.image-wrapper{
    position: relative;
    overflow: hidden;
}
.image-wrapper::after{
    content:"";
     position: absolute !important;
    bottom: -100% !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
    to top, 
    rgba(12, 93, 173, 0.8) 0%, 
    rgba(12, 93, 173, 0) 50%, 
    transparent 100%
  ) !important;
    transition: bottom 0.4s ease !important;
    pointer-events:none; /* VERY IMPORTANT */
/* 	 z-index:2; */
}
.product-card:hover .image-wrapper::after{
    bottom:0 !important;
}



/*====== About Us / Related Product card ======*/
.hover-card .hover-image {
  transition: transform 0.5s ease !important;
}
.hover-card:hover .hover-image {
  transform: scale(1.15) !important;
}
.hover-card:hover .product-title a {
    color: #c9a227 !important; 
}
/*====== Inquiry Form label number ======*/
/* Reset counter on form */
.numbered-form .elementor-form {
  counter-reset: field-counter;
}

/* Increase counter */
.numbered-form .elementor-field-group {
  counter-increment: field-counter;
}

/* Do not count submit button */
.numbered-form .elementor-field-type-submit {
  counter-increment: none;
}

/* Add number before label */
.numbered-form .elementor-field-label::before {
  content: counter(field-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 600;
  background-color: #f3f0e6;
  color: #c7a120;
  border-radius: 50%;
}
/* Custom Application List Styling */
.product-application-list {
    list-style: none; 
    padding: 0;
    margin: 15px 0;
}
.product-application-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #4B5563; 
    line-height: 1.5;
}
.product-application-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    color: #c9a227; 
    font-size: 12px;
    font-weight: bold;
}

/*====== Product Page ======*/
.footer-contact a {
    color: inherit !important;          
    text-decoration !important;   
}
.custom-main-img .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image img {
    height: 500px !important; 
    width: 100% !important;
    object-fit: cover !important; 
	opacity: 1 !important;
}
.custom-main-img .flex-viewport {
    height: 500px !important;
}
.custom-main-img ol.flex-control-thumbs li {
    height: 80px !important; 
    width: 80px !important; 
    object-fit: cover !important;
}
.custom-main-img ol.flex-control-thumbs li img {
	padding: 2px !important;
}
.custom-main-img ol.flex-control-thumbs {
    height: auto !important;
    display: flex !important;
}
.elementor-select-wrapper .select-caret-down-wrapper svg{
	display: none !important;
}

