:root {
    --solar-green: #13223c;
    --solar-dark: #1f2933;
    --solar-light: #f4faf7;
}

.custom-language-dropdown select {
    padding: 5px 30px 5px 10px;
    font-size: 12px;
    border: 1px solid #e6522e;
    border-radius: 4px;
    cursor: pointer;
    background: #e6522e;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 9999;
    color: #fff;
    line-height: 19px;
    text-transform: uppercase;
}

/* Optional: Add custom arrow */
.custom-language-dropdown {
    position: relative;
    display: inline-block;
    padding: 10px 2px;
}

.custom-language-dropdown::after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
}




strong{
    font-weight: 700;
    color: #000;
}
.home-mv {
    text-transform: uppercase;
    letter-spacing: 1px !important;
}

.feature-two__single:hover .white-icon {
    opacity: 1;
}

.csr-heading {
    font-size: 40px !important;
}

.home-m-icon {
    width: 80px;
    display: flex;
}

.home-icon-hover {
    position: relative;
}

.home-icon-hover .white-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.bdr-btm.center {
    width: 80px;
    height: 3px;
    /* background-color: #de302a; */
    margin: 0 auto;
}
.certificate-inner-sec{
    background-color: #fff;
    padding: 1rem 2rem;
    border-radius: 15px;

}
.certti-inner-btn {
    background-color: #13223c;
    padding: 10px 0px;
    /* width: 65%; */
    margin-top: 1rem;
    border-radius: 10px;
}
.certi-inner-heading h4{
font-weight: 700;
}

.certti-inner-btn a{
 color: #fff;
 font-size: 16px;
}

/* about page */
.dir-msg {
    background-color: #f7f7f7;
    padding: 3rem 5rem;

}

.mvv-bg {
    background-image: url(../images/firestone/about-bg-mvv.jpg);
    margin: 120px 0px;
}

.dir-msg p {
    color: #000;
    margin-top: 1rem;
}

/* Certificate Card */
.certi-border {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.certi-border:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #f5f5f5;
}

/* Flex Alignment */
.certi-border .d-flex {
    align-items: center;
    gap: 15px;
}

/* Certificate Logo */
.sustain-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/* Certificate Title */
.certi-border h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.contact-sec-icon i {
    color: #e6522e;
    margin-right: 10px;
}

/* csr page */
.rotate-img {
    display: block;
    max-width: 100%;
    height: auto;
    animation: rotate 10s linear infinite;
}

/* Feature box base */
.feature-hover {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e6f3ec;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Soft glow layer */
.feature-hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Hover effect */
.feature-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px rgb(0 0 0 / 24%);
    /* border-color: var(--solar-green); */
}

/* Glow appear */
.feature-hover:hover::before {
    opacity: 1;
}

/* Title color change */
.feature-hover:hover .service-details__benefit-title {
    color: var(--solar-green);
}

/* List animation */
.feature-hover:hover .inner-details-list li {
    color: #1f2933;
}

/* Check icon animation */
.inner-details-list li::before {
    transition: transform 0.4s ease, color 0.4s ease;
}

.feature-hover:hover .inner-details-list li::before {
    transform: scale(1.3) rotate(10deg);
    color: var(--solar-green);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.firestone-sus-section {
    background: #f8f9fa;
}

.firestone-sus-title {
    font-size: 2rem;
}

.firestone-sus-subtitle {
    color: #6c757d;
}

.firestone-sus-tabs {
    gap: 10px;
}

.firestone-sus-tab-btn {
    border: none;
    background: transparent;
    font-weight: 600;
    padding: 12px 24px;
    color: #555;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 22px;
}

.firestone-sus-tab-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #dc3545;
    transition: 0.3s;
    transform: translateX(-50%);
}

.firestone-sus-tab-btn.active {
    color: #dc3545;
}

.firestone-sus-tab-btn.active::after {
    width: 100%;
}

.firestone-sus-pane {
    display: none;
}

.firestone-sus-pane.active {
    display: block;
}

.firestone-sus-card {
    border-radius: 10px;
}

.firestone-sus-card-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.firestone-sus-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.inner-details-list li strong {
    font-weight: 800;
    color: var(--austry-black);
    font-size: 18px;
}

/* sgements inner */
/* Solar theme colors */

/* Container */
.services-details__right {
    background: linear-gradient(180deg, #ffffff, #f5f5f5);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
}

/* Image zoom hover */
.img-zoom {
    overflow: hidden;
    border-radius: 12px;
}

.img-zoom img {
    width: 100%;
    transition: transform 0.8s ease;
}

.img-zoom:hover img {
    /* transform: scale(1.08); */
}

/* Title */
.solar-title {
    color: var(--solar-dark);
    font-weight: 700;
    position: relative;
}

.solar-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--solar-green);
    display: block;
    margin-top: 6px;
}

/* Button */
.solar-btn {
    background: linear-gradient(135deg, var(--solar-green), #13223c);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgb(19 34 60 / 35%)
}

.solar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgb(19 34 60 / 35%)
}

/* Feature list */
.inner-details-list {
    list-style: none;
    padding-left: 0;
}

.inner-details-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.inner-details-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--solar-green);
    font-weight: bold;
}

/* Scroll animation base */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .2s;
}

.delay-2 {
    transition-delay: .4s;
}

/* dealer form */
/* =========================
           Dealer Form Styling
        ========================== */
.dealer-form {
    background: linear-gradient(135deg, #f8f9fa, #eef2f6);
    padding: 60px 15px;
}

.dealer-form .card {
    border-radius: 12px;
    overflow: hidden;
}

.dealer-form .card-header {
    /* background: linear-gradient(135deg, #0d6efd, #084298); */
    border: none;
}

.dealer-form .card-header h4 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dealer-form h6 {
    font-weight: 600;
    border-left: 4px solid #13223c;
    padding-left: 10px;
}

.dealer-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.dealer-form .form-control,
.dealer-form .form-select {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.card-body h6 {
    color: #13223c !important;
}

.dealer-form .form-control:focus,
.dealer-form .form-select:focus {
    border-color: #13223c;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.dealer-form textarea {
    resize: none;
}

.dealer-form .btn-primary {
    border-radius: 30px;
    padding: 10px 35px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dealer-form .btn-primary:hover {
    background-color: #084298;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* whats app icon */
.whatsapp-bottom {
    position: fixed !important;
    right: 12px;
    bottom: 105px;
    z-index: 999;
    text-align: end;
}

.wp-size img {
    width: 45px;
}
/* solar new design */
.solar-sec {
    /* background: #f7f7f7; */
}

.solar-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #333;
}

.solar-subtitle {
    font-size: 20px;
    color: #555;
}

.solar-subtitle strong {
    color: #000;
}

.solar-spec-title {
    font-weight: 600;
    color: #333;
}

.solar-table th {
    background: #f1f1f1;
    font-weight: 600;
}

.solar-table td {
    background: #fafafa;
}

.solar-btn {
    background: #e53935;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
}

.solar-btn:hover {
    background: #c62828;
    color: #fff;
}
.floating {
    transform: translatey(0px);
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating_land {
    position: relative;
    background: url(../images/firestone/certi-1.jpg) center center no-repeat;
    background-size: contain;
    padding-top: 50px;
    padding-bottom: 50px;
}

@-webkit-keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}









.animation_container {
    position: relative;
    min-height: 100px;
}
.moving_cloud img{
    width: 200px;
}
.moving_cloud {
    position: relative;
    right: 0px;
    top: 0%;
    animation: clouds 40s ease-out 0s infinite normal none;
    z-index: 999999;
}

@keyframes clouds {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}

@keyframes cloudsreverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(2000px);
    }
}

@keyframes birdflight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2000px);
    }
}

@keyframes birdflightreverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(2000px);
    }
}

.pyro-img img {
    width: 300px !important; 
    margin: auto;
}

.pyro-bg-sec{

    background-image: url(../images/firestone/pyro-bg-sec.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
.solar-sec-bg-text {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
    background-image: url(../images/firestone/texture.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*  why choose us  css*/
.firestone-choose-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

.firestone-choose-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Left Tabs */
.firestone-choose-tabs {
    position: relative;
}

.firestone-choose-tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fafafa;
    font-weight: 600;
    font-size: 18px;
    color: #444;
    transition: all 0.3s ease;
    cursor: pointer;
}

.firestone-choose-tab-btn span {
    width: 35px;
    height: 35px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: 0.3s;
}

.firestone-choose-tab-btn:hover {
    background: #fff;
    transform: translateX(5px);
}

.firestone-choose-tab-btn.active {
    background: var(--austry-base);
    color: #fff;
    border-color: var(--austry-base);
}

.firestone-choose-tab-btn.active span {
    background: #fff;
    color: var(--austry-base);
}

/* Right Content */
.firestone-choose-pane {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.firestone-choose-pane.active {
    display: block;
}

.firestone-choose-content-card {
    padding: 30px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
}
.firestone-choose-content-card-icon img {
    width: 100px;
    padding: 1rem;
    border-radius: 15px;
    background: #f396804a;
    border: 1px solid #f1f1f1;
    margin-bottom: 1rem;
    margin-right: 1rem;
}
.firestone-choose-content-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.firestone-choose-content-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.firestone-choose-content-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(15px);}
    to { opacity: 1; transform: translateY(0);}
}
/* infra css */
.fire-infra {
    background: #f8f9fa;
}

.fire-infra-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d3557;
}

.fire-infra-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
}

.fire-infra-heading {
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 20px;
    border-left: 4px solid #d62828;
    padding-left: 12px;
}

.fire-infra-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.fire-infra-card:hover {
    transform: translateY(-5px);
}

.fire-infra-box {
    background: #ffffff;
    padding: 30px;
    border-left: 4px solid #d62828;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.fire-infra-anodizing {
    background: #1d3557;
    color: #fff;
    padding: 50px 30px;
    border-radius: 10px;
}

.fire-infra-list {
    list-style: none;
    padding-left: 0;
}

.fire-infra-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.fire-infra-list li::before {
    content: "•";
    color: #d62828;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.firestone-product {
    background-color: #f5f5f5;
    /* color: #fff; */
}

.firestone-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 1px;
}

.firestone-divider {
    width: 80px;
    height: 4px;
    background: #ff6a00;
    margin: 15px auto 0;
    border-radius: 5px;
}

.firestone-box {
    background: #ffffff;
    color: #333;
    padding: 45px;
    border-radius: 15px;
    position: relative;
    transition: 0.4s ease;
    border-left: 6px solid #ff6a00;
}

.firestone-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.firestone-box h3 {
    font-weight: 700;
    margin: 10px 0 20px;
    color: #0f2027;
}

.firestone-box p {
    font-size: 15px;
    line-height: 1.7;
}

.firestone-tag {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.firestone-image img {
    /* height: 260px; */
    border-radius: 12px;
    background: linear-gradient(45deg, #e3e3e3, #f8f8f8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #888;
    /* border: 2px dashed #ddd; */
    transition: 0.4s ease;
}

.firestone-box:hover .firestone-image {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: none;
      border-radius: 12px;
    background-color: transparent;
}
/* manufacturing css */
  .fire-manufacturing {
            font-family: 'Montserrat', sans-serif;
            color: #13223c;
            line-height: 1.8;
            background-color: #ffffff;
        }

        /* Hero / Introduction */
        .intro-header {
            background-color: #13223c;
            color: #ffffff;
            padding: 100px 0 60px 0;
            border-bottom: 5px solid #e6522e;
        }

        .intro-header h1 {
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 30px;
        }

        .intro-text {
            font-size: 1.15rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 900px;
        }

        /* Section Styling */
        .section-heading {
            color: #13223c;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .section-heading::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background-color: #e6522e;
        }

        /* Infrastructure Grid */
        .infra-card {
            border: 1px solid #e0e1dd;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .infra-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-color: #e6522e;;
        }

        .infra-title {
            color: #e6522e;;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: block;
        }

        /* Facility Content */
        .facility-box {
            background-color: #f8f9fa;
            padding: 50px 0;
            margin: 40px 0;
        }

        .content-block {
            margin-bottom: 30px;
            text-align: justify;
        }

        /* Benefit Ribbons */
        .benefit-item {
            padding: 15px;
            background: #ffffff;
            border-left: 4px solid #e6522e;
            margin-bottom: 15px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.02);
        }

        /* Fabrication Grid */
        .fab-list {
            list-style: none;
            padding: 0;
        }

        .fab-list li {
            padding: 10px 0;
            border-bottom: 1px solid var #e0e1dd;
            /* display: flex; */
            /* align-items: flex-start; */
        }

        .fab-list li::before {
            content: "•";
            color: #e6522e;;
            font-weight: bold;
            font-size: 1.5rem;
            line-height: 1;
            margin-right: 15px;
        }

/* gallery section */
/* 3D perspective */
.gallery-row {
  perspective: 1200px;
}

/* Initial state (all items look like coming from center) */
.animate-item {
  opacity: 0;
  transform: 
    scale(0.2) 
    translateY(100px) 
    translateZ(-600px) 
    rotateX(30deg) 
    rotateY(30deg);

  animation: galleryReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Keyframe animation */
@keyframes galleryReveal {
  0% {
    opacity: 0;
    transform: 
      scale(0.2) 
      translateY(120px) 
      translateZ(-600px) 
      rotateX(30deg) 
      rotateY(30deg);
  }

  60% {
    opacity: 1;
    transform: 
      scale(1.05) 
      translateY(-10px) 
      translateZ(50px) 
      rotateX(-5deg) 
      rotateY(-5deg);
  }

  100% {
    opacity: 1;
    transform: 
      scale(1) 
      translateY(0) 
      translateZ(0) 
      rotateX(0deg) 
      rotateY(0deg);
  }
}

/* Stagger effect (one by one animation) */
.animate-item:nth-child(1) { animation-delay: 0.1s; }
.animate-item:nth-child(2) { animation-delay: 0.2s; }
.animate-item:nth-child(3) { animation-delay: 0.3s; }
.animate-item:nth-child(4) { animation-delay: 0.4s; }
.animate-item:nth-child(5) { animation-delay: 0.5s; }
.animate-item:nth-child(6) { animation-delay: 0.6s; }
.animate-item:nth-child(7) { animation-delay: 0.7s; }
.animate-item:nth-child(8) { animation-delay: 0.8s; }
.animate-item:nth-child(9) { animation-delay: 0.9s; }
.animate-item:nth-child(10){ animation-delay: 1s; }

/* Card style */
.gallery-card {
  overflow: hidden;
  border-radius: 15px;
  transform-style: preserve-3d;
}

/* Image hover 3D */
.gallery-card img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1) rotateY(6deg) rotateX(6deg);
}

/* Divider */
.divider {
  width: 80px;
  height: 3px;
  background: #e6522e;
}





.firestone-gallery .gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.firestone-gallery .tab-btn {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
}

.firestone-gallery .tab-btn.active,
.firestone-gallery .tab-btn:hover {
  background: #000;
  color: #fff;
}

.firestone-gallery .tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.firestone-gallery .tab-content.active {
  display: block;
}

.gallery-card {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card.large {
  height: 300px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

.gallery-item {
  transition: all 0.5s ease;
}

.gallery-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  display: none; /* ✅ FIXED */
}



/* alloys css */
/* ================= ROOT ================= */
.alloys-firestone *{box-sizing:border-box;margin:0;padding:0}
.alloys-firestone{font-family:Arial,sans-serif;background:#f0f2f5;padding:30px 20px}

/* ================= HEADER ================= */
.alloys-firestone .title{text-align:center;font-size:24px;font-weight:700;color:#1a1a2e}
.alloys-firestone .sub{text-align:center;font-size:12px;color:#778899;margin-bottom:20px}

/* ================= TABS ================= */
.alloys-firestone .tabs{display:flex;justify-content:center;border-bottom:2px solid #ddd;margin-bottom:20px}
.alloys-firestone .tab{
  padding:10px 20px;
  cursor:pointer;
  font-weight:600;
  border-bottom:3px solid transparent;
}
.alloys-firestone .tab.active{
  color:#1F5FA6;
  border-bottom:3px solid #1F5FA6;
}

/* ================= CARDS ================= */
.alloys-firestone .cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

.alloys-firestone .card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  cursor:pointer;
  transition:.3s;
}
.alloys-firestone .card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.alloys-firestone .card-top{
  height:130px;
  background:linear-gradient(135deg,#8fa3ad,#c4d0d6);
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:10px;
}
.alloys-firestone .card-top h3{
  color:#fff;
  font-size:18px;
}

.alloys-firestone .card-body{
  padding:12px;
}

.alloys-firestone .tag{
  display:inline-block;
  background:#1F5FA6;
  color:#fff;
  padding:3px 6px;
  font-size:10px;
  border-radius:5px;
  margin:2px;
}

.alloys-firestone .btn{
  margin-top:10px;
  display:block;
  text-align:center;
  border:1px solid #1F5FA6;
  padding:6px;
  font-size:11px;
  font-weight:bold;
  color:#1F5FA6;
  cursor:pointer;
}
.alloys-firestone .btn:hover{
  background:#1F5FA6;
  color:#fff;
}

/* ================= MODAL ================= */
.alloys-firestone .modal-bg{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
}
.alloys-firestone .modal{
  background:#fff;
  padding:20px;
  width:90%;
  max-width:500px;
  border-radius:10px;
}

.footer-widget__logo img{
    width: 80% !important;
}
.csr-tabs-quality{
    display: flex;
    justify-content: center;
}
/* GLOBAL */
.manufacturing-capabilities { font-family: 'Segoe UI', sans-serif; }
.manufacturing-capabilities section { padding: 80px 0; }

/* HERO */
.mc-hero {
    background: linear-gradient(120deg,#0c1015,#e6522e);
    color:#fff;
    text-align:center;
    padding:100px 0;
}
.mc-hero h1 { animation: float 4s ease-in-out infinite; }
@keyframes float {
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-10px)}
}

/* TITLE */
.mc-title {
    font-weight:700;
    margin-bottom:20px;
    position:relative;
}
.mc-title::after {
    content:"";
    width:60px;height:3px;
    background:#e6522e;
    position:absolute;
    bottom:-8px;left:0;
    transition:.4s;
}
.mc-title:hover::after { width:120px; }

/* CARD */
.mc-card {
    position:relative;
    border-radius:16px;
    padding:25px;
    background:#fff;
    overflow:hidden;
    transition:.4s;
}
.mc-card::before {
    content:"";
    position:absolute;
    inset:-2px;
    background:linear-gradient(120deg,#e6522e,#0c1015,#e6522e);
    background-size:300%;
    animation:borderRotate 6s linear infinite;
    z-index:-1;
}
.mc-card::after {
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:14px;
    z-index:-1;
}
@keyframes borderRotate {
    0%{background-position:0%}
    100%{background-position:300%}
}
.mc-card:hover {
  transform: translateY(0px) scale(1.02);
    box-shadow: 0 1px 3px #e6522e;
}

/* SHINE */
.shine {
    position:absolute;
    top:0;left:-100%;
    width:60%;height:100%;
    background:rgba(255,255,255,0.2);
    transform:skewX(-20deg);
}
.mc-card:hover .shine { animation:shineMove 1s forwards; }
@keyframes shineMove { 100%{left:150%} }

/* IMAGE */
.mc-gallery { background:#f8f9fb; }
.mc-img-card { position:relative; overflow:hidden; border-radius:16px; }
.mc-img-card img {
    width:100%; height:auto;
}
.mc-img-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.8),transparent);
    display:flex; align-items:flex-end;
    padding:20px; color:#fff;
    opacity:0; transition:.4s;
}
.mc-img-card:hover img { transform:scale(1.1); }
.mc-img-card:hover .mc-img-overlay { opacity:1; }

/* HIGHLIGHTS */
.mc-highlight {
    background:#fff;
    padding:14px 20px 14px 40px;
    border-radius:10px;
    margin-bottom:12px;
    position:relative;
}
.mc-highlight::before {
    content:"";
    width:10px;height:10px;
    background:#e6522e;
    border-radius:50%;
    position:absolute;
    left:15px; top:50%;
    transform:translateY(-50%);
    animation:pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100%{transform:translateY(-50%) scale(1)}
    50%{transform:translateY(-50%) scale(1.4)}
}

/* FOOTER */
.mc-footer {
    background:#0c1015;
    color:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
}
.fs-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fs-table tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.fs-table tr:last-child {
    border-bottom: none;
}

.fs-table tr:hover {
    background: #f9fafb;
}

.fs-table td {
    padding: 14px 18px;
    font-size: 14px;
    color: #333;
}

.fs-table td:first-child {
    font-weight: 600;
    color: #111827;
    width: 50%;
}

.fs-table td:last-child {
    text-align: right;
    color: #16a34a; /* subtle highlight */
    font-weight: 500;
}

/* ===== SHOT-FIRE SECTION ===== */
.shot-fire {
    padding: 60px 0;
}

/* Flow */
.shot-fire .flow-box {
    background: #f8f9fa;
    border-left: 4px solid #ff5722;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.shot-fire .flow-arrow {
    text-align: center;
    font-size: 20px;
    margin: 5px 0;
}

.shot-fire .flow-success {
    color: green;
    font-weight: bold;
}

/* Table */
.shot-fire .custom-table th {
    background: #ff5722;
    color: #fff;
    text-align: center;
}

.shot-fire .custom-table td {
    vertical-align: middle;
}

.shot-fire .reject {
    color: red;
    font-weight: 600;
}

.shot-fire .accept {
    color: green;
    font-weight: 600;
}






@media (max-width: 991px) {
    .firestone-box {
        padding: 20px 10px;
    }
    .firestone-image {
        height: 200px;
    }
}
@media (max-width: 768px) {
    .dealer-form {
        padding: 40px 10px;
    }

    .dealer-form .card-body {
        padding: 25px 20px;
    }

    .dealer-form h4 {
        font-size: 20px;
    }
}
/* Responsive Adjustments */
@media (max-width: 767px) {

    .certi-border {
        padding: 15px;
    }

    .sustain-logo {
        width: 45px;
    }
    .contact-info {
    position: relative;
    display: block;
    padding: 50px 0 30px !important;
    z-index: 3;
}
.page-header-bg{
    background-size: cover;
}
.page-header__inner {
    position: relative;
    display: block;
    padding: 80px 0 80px !important;
    z-index: 15;
}
.footer-widget__logo img{
    width: 90% !important;
}
.firestone-sus-tab-btn {
    border: none;
    background: transparent;
    font-weight: 600;
    padding: 12px 24px;
    color: #555;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 15px;
}
.csr-tabs-quality{
    display: block;
    justify-content: center;
    width: 100% !important;
    
}
.csr-heading {
    font-size: 30px !important;
}
.why-choose-one__points li .text p{
    font-size: 20px;
    line-height: 22px;
}

.page-header__inner h2 {
    font-size: 40px !important;
    color: var(--austry-white);
    line-height: 42px !important;
    margin-bottom: 6px;
    font-weight: 600 !important;
    letter-spacing: 0px;
}


.solar-main-title{
    font-size: 30px !important;
    margin-bottom: 1rem;
}
.feature-hover{
    padding: 20px 20px !important;
}
.moving_cloud img{
    width: 100px;
}
.services-details__right{
    padding: 15px;
}

.dir-msg {
    background-color: #f7f7f7;
    padding: 2rem 1rem;
}
.firestone-choose-wrapper{
    padding: 15px;
}
.firestone-choose-tab-btn{
    font-size: 16px;
}
.arrow-btn {
     position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 25px;
    width: 50px;
    display: none;
    height: 50px;
}


}