/* General Reset */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;

}

.text-green {
    color: #007638 !important;
}

/* 🔵 Top Bar */
.top-bar {
    background-color: #109706;
    font-size: 0.9rem;
}

.top-bar a:hover {
    color: #ffcc00;
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
}

/* ==========================
   🌿 Navbar Styling (PowerCast TechMetal pvt ltd)
========================== */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar-brand img {
    height: 70px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 18px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    font-size: 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #109706 !important;
    
}


/* 🔽 Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu .dropdown-item {
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f4f9f4;
    color: #109706;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    top: 0;
    left: 100%;
}
.nav-item.dropdown .dropdown-menu .dropdown-menu {
    display: none;
}
.dropdown-submenu:active{
    color: #109706;
}
/* Button Styling */
.btn-primary {
    background-color: #109706;
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #007638;
    transform: scale(1.05);
}

/* ========== Responsiveness ========== */
@media (max-width: 991px) {
    .navbar-nav {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .dropdown-menu .dropdown-item {
        padding: 10px 0;
        background: transparent;
        border: none;
    }

    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 45px;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 6px 18px;
        font-size: 0.9rem;
    }
}

/* 🔹 Fade-in animation for dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Show submenu on hover for desktop */
@media (min-width: 992px) {

    /* Desktop */
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

/* Submenu styling */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
}

/* Optional: show submenu on hover */
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* 🖼️ Hero Carousel Section */
#hero {
    position: relative;
    overflow: hidden;
}

#hero .carousel-item img {
    height: 75vh;
    object-fit: cover;
    filter: brightness(70%);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    /* max-width: 800px; */
}

.carousel-caption h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-top: 10px;
}

.carousel-caption .btn {
    background-color: #109706;
    border: none;
}

.carousel-caption .btn:hover {
    background-color: #003f82;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero .carousel-item img {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* 🏭 Investment Info Section */
#investment-info .section-title h2 {
    font-size: 1.9rem;
    color: #109706;
}

#investment-info .info-content {
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #007638;
    border-top: 4px solid #007638;
    text-align: justify;
}

#investment-info .info-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

#investment-info h5 {
    border-left: 4px solid #109706;
    padding-left: 10px;
    color: #007638 !important;
}

#investment-info img {
    max-height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#investment-info img:hover {
    transform: scale(1.03);
}

#investment-info hr {
    border-top: 1px solid #003f82;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #investment-info .row {
        flex-direction: column !important;
    }

    #investment-info .info-content {
        margin-bottom: 20px;
    }

    #investment-info img {
        max-height: 250px;
        width: 100%;
    }
}


/* ⚙️ Casting Features Section */
#casting-features {
    background-color: #f8f9fa;

}

.feature-card {
    background-color: #fff;
    transition: all 0.3s ease;
    border-left: 4px solid #109706;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h5 {
    font-size: 1.1rem;
}

.feature-card ul {
    list-style: disc;
    color: #555;
}


/* 🌟 Why Choose Us Parallax Section */
#why-choose-us {
    position: relative;
    overflow: hidden;
    color: #fff;
}

#why-choose-us .parallax-bg {
    background: url('images/parallax_home.jpg') center/cover no-repeat fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.6);
}

#why-choose-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

#why-choose-us .container {
    position: relative;
    z-index: 3;
}

#why-choose-us .choose-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
}

#why-choose-us .choose-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 130, 49, 0.99);
}

#why-choose-us .choose-card h5 {
    font-size: 1.2rem;
}

#why-choose-us .choose-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    #why-choose-us .choose-card {
        transform: translateY(-6px);
        background: rgba(0, 130, 49, 0.99);
    }
}

/* 🏭 Product Categories Section */
#product-categories {
    background-color: #f8f9fa;
}

#product-categories .product-card {
    background-color: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

#product-categories .product-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 180px;
    object-fit: cover;
}

#product-categories .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

#product-categories .product-card h5 {
    font-size: 1.1rem;
    color: #109706;
}

#product-categories .btn {
    background-color: #109706;
    border: none;
    transition: background 0.3s;
}

#product-categories .btn:hover {
    background-color: #003f82;
}

.industry-card,
.capability-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover,
.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.industry-card h5,
.capability-card h5 {
    color: #109706;
    font-size: 1.1rem;
}

.industry-card p,
.capability-card p {
    font-size: 0.95rem;
    color: #555;
}


/* Certifications Section */
#certifications {
    background-color: #f8f9fa;
}

.cert-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container h2 {

    color: #109706;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.cert-card h5 {
    color: #109706;
    font-size: 1.1rem;
}

.cert-card p {
    font-size: 0.95rem;
    color: #555;
}



/* Footer Styles */
.footer {
    background-color: #1b1b1b;
    color: #f5f5f5;
}

.footer a {
    color: #f5f5f5;
    transition: color 0.3s;
}

.footer a:hover {
    color: #109706;
    text-decoration: none;
}

.footer h5 {
    font-size: 1.1rem;
    color: #ffdd00;
}

.footer p,
.footer ul li {
    font-size: 0.95rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background-color: #111;
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: #ffdd00;
}


/* 🌿 Hero Banner */
#about-hero {
    background: linear-gradient(rgba(0, 118, 56, 0.55), rgba(0, 118, 56, 0.55)),
        url('images/about_banner.avif') center/cover no-repeat;
    height: 70vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#about-hero h1 {
    font-size: 2.8rem;
}

#about-hero p {
    max-width: 700px;
    margin: 0 auto;
}

/* 🎨 Theme Colors */
.text-green {
    color: #109706 !important;
}

.btn-green {
    background-color: #109706;
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.btn-green:hover {
    background-color: #007638;
    color: #fff;
}

/* 🏭 Intro Section */
#about-intro h2 {
    font-size: 1.9rem;
    line-height: 1.3;
}

#about-intro p {
    line-height: 1.7;
    font-size: 1rem;
}

#about-intro img {
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-left: 5px solid #109706;
    border-bottom: 5px solid #109706;
}

#about-intro img:hover {
    transform: scale(1.03);
}

/* 📱 Responsive Tweaks */
@media (max-width: 991px) {
    #about-hero {
        height: 60vh;
    }

    #about-hero h1 {
        font-size: 2.2rem;
    }

    #about-intro .row {
        text-align: center;
    }

    #about-intro img {
        max-height: 300px;
    }
}

/* ⚙️ What We Do Section */
#what-we-do {
    background: linear-gradient(135deg, #007638 0%, #109706 100%);
    color: #fff;
}

#what-we-do .section-title h2 {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    /* White outline */
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#what-we-do .section-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ffffff;
    margin: 12px auto 0;
    border-radius: 2px;
}


#what-we-do .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

#what-we-do .content-box {
    background: #ffffff;
    color: #333;
    line-height: 1.7;
    transition: all 0.3s ease;
}

#what-we-do .content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#what-we-do strong {
    color: #007638;
}

#what-we-do .quote-box {
    background: #f4fff6;
    border-left: 5px solid #109706;
    padding: 18px 20px;
    font-style: italic;
    color: #333;
    border-radius: 8px;
}

/* Image */
#what-we-do .image-box img {
    transition: transform 0.4s ease;
    max-height: 400px;
    object-fit: cover;
}

#what-we-do .image-box img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    #what-we-do {
        text-align: center;
    }

    #what-we-do .content-box {
        margin-bottom: 20px;
    }

    #what-we-do .image-box img {
        max-height: 300px;
    }

    #what-we-do .section-title h2 {
        font-size: 1.8rem;
    }
}


/* Wrapper for horizontal scrolling */
.industry-loop-wrapper {
    overflow: hidden;
    position: relative;
}

.industry-loop {
    display: flex;
    gap: 20px;
    animation: scroll-loop 40s linear infinite;
}

.industry-loop-card {
    flex: 0 0 250px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-loop-card i {
    margin-bottom: 10px;
}

/* Looping animation */
@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Optional responsive adjustments */
@media (max-width: 768px) {
    .industry-loop-card {
        flex: 0 0 200px;
    }
}

/* 🧱 Product Detail Card */
#product-detail .product-info-box {
    transition: transform 0.3s ease;
}

#product-detail .product-info-box:hover {
    transform: translateY(-5px);
}

#product-detail .product-image-box img {
    transition: transform 0.4s ease;
}

#product-detail .product-image-box img:hover {
    transform: scale(1.03);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    #product-detail .product-info-box {
        text-align: center;
    }

    #product-detail .btn {
        margin-top: 10px;
    }
}

/* 🧱 Product Description Section */
#product-description h2 {
    font-size: 2rem;
    color: #109706;
}

#product-description p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

#product-description ul li {
    padding: 6px 0;
    font-size: 1rem;
    color: #444;
}

#product-description .highlight-box {
    background: #f8f9fa;
    border-left: 5px solid #109706;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #product-description h2 {
        font-size: 1.7rem;
    }

    #product-description p,
    #product-description ul li {
        font-size: 0.95rem;
    }
}


/* 🧩 Product Gallery Section */
#product-gallery h2 {
    font-size: 2rem;
    color: #109706;
}

#product-gallery p {
    color: #666;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

/* Optional subtle overlay */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(16, 151, 6, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #product-gallery h2 {
        font-size: 1.7rem;
    }
}


.highlight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-card-horizontal {
    position: relative;
    border-left: 6px solid var(--primary-green);
    background: #f8f9fa;
    font-style: italic;
    transition: all 0.3s ease;
}

.highlight-card-horizontal:hover {
    background: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.highlight-card-horizontal p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

#metal-detail .section-title h2 {
    font-size: 2rem;
    color: #109706;
}

#metal-detail .highlight-box {
    border-left: 4px solid #109706;
}

#metal-detail h5 i {
    color: #109706;
}

#metal-detail img {
    transition: transform 0.4s ease;
}

#metal-detail img:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    #metal-detail .metal-img-box {
        margin-top: 30px;
    }
}


/* 🌿 Contact Section */
.text-green {
    color: #037333;
}

.bg-green {
    background-color: #037333;
}

/* Contact Info Icons */
.icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    font-size: 18px;
}

/* Form & Info Card */
.contact-form,
.contact-info {
    border-left: 5px solid #037333;
    transition: all 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Map Card */
.map-card {
    border-radius: 16px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .icon-box {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    /* background-color: #25d366; */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.careers-hero {
padding: 80px 0;
background: #fff;
}
.hero-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 40px;
}
.hero-text h1 {
font-size: 38px;
font-weight: 700;
color: #0A6E20;
}
.hero-text p {
font-size: 16px;
margin-top: 10px;
line-height: 1.6;
}
.hero-img img {
width: 100%;
max-width: 500px;
border-radius: 12px;
}
.job-cards-section {
padding: 70px 0;
background: #fff;
}
.job-cards-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}
.job-card {
background: #fff;
border-radius: 12px;
border: 1px solid #e6e6e6;
padding: 25px;
text-align: center;
transition: 0.3s;
}
.job-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.apply-btn {
display: inline-block;
margin-top: 15px;
padding: 10px 22px;
border-radius: 50px;
background: #0A6E20;
color: #fff;
font-size: 14px;
text-decoration: none;
transition: 0.3s;
}
.apply-btn:hover {
background: #064d15;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px;
    }
}

