/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ================= RESET ================= */
html{

    scroll-behavior:smooth;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{
    background:#f8f9fb;
    color:#333;
}

/* ================= NAVBAR ================= */

header{
    position:sticky;
    top:0;
    z-index:1000;
}

nav{
    width:100%;
    height:90px;
    background:#2f2f2f;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 80px;

    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

nav img{
    width:90px;
    height:auto;
}

nav img:hover{
    transform:scale(1.05);
}

nav ul{
    display:flex;
    gap:45px;
    list-style:none;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    position:relative;
    transition:.3s;
}
/* Active Navigation */

nav ul li a.active{

    color:#F7941D;

}

nav ul li a.active::after{

    width:100%;

}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#F7941D;
    transition:.3s;
}

nav ul li a:hover{
    color:#F7941D;
}

nav ul li a:hover::after{
    width:100%;
}

nav button{
    background:#F7941D;
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:50px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

nav button:hover{
    background:#ff8800;
    transform:translateY(-3px);
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:70px 8%;
    background:linear-gradient(135deg,#ffffff,#f3f5f7);
    overflow:hidden;
    position:relative;
}

/* Left Side */

.hero-text{
    width:50%;
}

.hero-text h1{
    font-size:68px;
    line-height:82px;
    font-weight:700;
    color:#2f2f2f;
}

.hero-text span{
    color:#F7941D;
}

.hero-text p{
    margin-top:25px;
    font-size:18px;
    color:#666;
    line-height:34px;
    max-width:600px;
}

/* Buttons */
/* Buttons */

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    background:#F7941D;
    color:#ffffff;
    text-decoration:none;
    border-radius:50px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    line-height:1;
    transition:0.3s ease;
}

.hero-btn:hover{
    background:#e67e00;
    color:#ffffff;
}

/* Product Links */

.product-content a{
    color:#F7941D;
    font-weight:600;
    text-decoration:none;
}

.product-content a:hover{
    color:#d97706;
}

/* Keep the Request a Quote button white */

.product-content .hero-btn{
    color:#ffffff !important;
}


.btn1{
    background:#F7941D;
    color:#fff;
    border:none;
    padding:17px 38px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 12px 30px rgba(247,148,29,.35);
    text-decoration: none;
}

.btn1:hover{
    background:#ff8800;
    transform:translateY(-5px);
}

.btn2{
    background:#fff;
    color:#333;
    border:2px solid #F7941D;
    padding:17px 38px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn2:hover{
    background:#F7941D;
    color:#fff;
}

/* Right Side */

.hero-image{
    width:45%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* Orange Background Circle */

.hero-image::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#F7941D;
    opacity:.12;
    border-radius:50%;
    bottom:-60px;
    right:30px;
    z-index:0;
}

/* Product Image */

.hero-image img{
    width:100%;
    max-width:540px;
    border-radius:20px;
    position:relative;
    z-index:2;
    box-shadow:0 30px 60px rgba(0,0,0,.18);
    transition:.4s;
}

.hero-image img:hover{
    transform:translateY(-10px);
}

/* ================= TRUST SECTION ================= */

.trust{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    padding:80px 8%;
    background:#fff;
}

.trust-box{
    width:240px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.trust-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.trust-box h2{

    font-size:48px;

    font-weight:700;

    color:#F7941D;

    margin-bottom:12px;

}

.trust-box p{

    font-size:18px;

    color:#666;

    font-weight:500;

    line-height:28px;

}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

nav{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

    nav ul{
        display:none;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:50px 20px;
    }

    .hero-text{
        width:100%;
    }

    .hero-text h1{
        font-size:48px;
        line-height:60px;
    }

    .hero-text p{
        max-width:100%;
    }

    .hero-image{
        width:100%;
        margin-top:50px;
    }

    .hero-image::before{
        width:300px;
        height:300px;
        right:50%;
        transform:translateX(50%);
    }

    .hero-image img{
        max-width:380px;
    }

    .hero-btn{
        justify-content:center;
        flex-wrap:wrap;
    }

    .trust{
        flex-direction:column;
    }

   .trust-box{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:0.35s ease;

    cursor:pointer;

}
.trust-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}
}
/* ================= ABOUT SECTION ================= */

.about{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    padding:120px 8%;
    background:#fff;
}

.about-image{
    width:45%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:520px;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}


.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content{
    width:52%;
}

.section-title{
    color:#F7941D;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:46px;
    margin:18px 0 25px;
    color:#2d2d2d;
    line-height:58px;
}

.about-content p{
    font-size:18px;
    color:#666;
    line-height:34px;
    margin-bottom:35px;
}

.about-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:40px;
}

.about-item{
    font-size:17px;
    color:#444;
    font-weight:500;
}

.about-btn{
    display:inline-block;
    padding:18px 40px;
    background:#F7941D;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.about-btn:hover{
    transform:translateY(-5px);
    background:#ff8800;
}
/* ================= PRODUCTS ================= */
/*================ PRODUCTS ================*/

.products{
    padding:120px 8%;
    background:#f8f9fb;
    scroll-margin-top:100px;
}

/* Heading */

.products-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.products-heading .section-tag{
    display:block;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    color:#F7941D;
    text-transform:uppercase;
    margin-bottom:14px;
}

.products-heading h2{
    font-family:'Poppins',sans-serif;
    font-size:52px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.products-heading p{
    font-family:'Poppins',sans-serif;
    font-size:17px;
    color:#666;
    line-height:30px;
    max-width:720px;
    margin:auto;
}

/* Product Grid */

.products-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:45px;
}

/* Card */

.product-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s ease;
}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

/* Image */

.product-card img{
    width:350px;
    height:300px;
    object-fit:contain;
    display:block;
    margin:25px auto;
}

.product-card:hover img{

    transform:scale(1.05);

}

/* Product Content */

.product-info{

    padding:32px;

}

.product-category{

    display:inline-block;
    font-family:'Poppins',sans-serif;
    font-size:12px;
    font-weight:600;
    color:#F7941D;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;

}

.product-info h3{

    font-family:'Poppins',sans-serif;
    font-size:30px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
    line-height:1.3;

}

.product-info p{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:400;
    color:#666;
    line-height:28px;
    margin-bottom:22px;

}

.product-info a{

    display:inline-block;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;
    color:#F7941D;
    text-decoration:none;
    transition:.3s;

}

.product-info a:hover{

    color:#d97706;
    transform:translateX(5px);

}

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card img{

    width:380px;

    height:280px;

    object-fit:contain;

    display:block;

    margin:20px auto;

}

.product-content{

    padding:0 45px 35px;

}

.product-content span{

    color:#F7941D;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.product-content h3{

    font-size:26px;

    font-weight:700;

    color:#1F2937;

    margin:12px 0 18px;

}

.product-content p{

    font-size:18px;

    line-height:34px;

    color:#666;

    margin-bottom:28px;

}

.product-content a{

    color:#F7941D;

    font-weight:600;

    text-decoration:none;

}

.product-content a:hover{

    color:#d97706;

}

/* Responsive */

@media(max-width:992px){

.products-container{

grid-template-columns:1fr;

}

.products-heading h2{

font-size:40px;

}

}

@media(max-width:576px){

.products{

padding:80px 6%;

}

.products-heading h2{

font-size:32px;

}

.product-card img{

height:240px;

}

.product-info{

padding:24px;

}

}
/* ================= INDUSTRIES SECTION ================= */

/* ================= INDUSTRIES SECTION ================= */

.industries{

    padding:100px 8%;
    background:#fff;

}

.industry-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

}

/* ================= INDUSTRY CARD ================= */

.industry-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:260px;

}

/* Industry Icon */

.industry-icon{

    width:70px;

    height:70px;

    background:#FFF4E8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.35s;

}

.industry-icon i{

    font-size:30px;

    color:#F7941D;

}

/* Heading */

.industry-card h3{

    font-size:30px;

    font-weight:700;

    color:#222;

    margin-bottom:18px;

}

/* Paragraph */

.industry-card p{

    font-size:17px;

    color:#666;

    line-height:30px;

}

/* Hover Effect */

.industry-card:hover{

    background:#F7941D;

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(247,148,29,.30);

}

.industry-card:hover h3,

.industry-card:hover p{

    color:#fff;

}

.industry-card:hover .industry-icon{

    background:#fff;

}

.industry-card:hover .industry-icon i{

    color:#F7941D;

}

   

.industry-card:hover{

    transform:translateY(-10px);

    background:#F7941D;

    box-shadow:0 20px 45px rgba(247,148,29,.35);

}

.industry-card h3{

    font-size:30px;
    font-weight:700;
    color:#222;

    margin-bottom:18px;

    display:block;

}

.industry-card:hover h3{

    color:#fff;

}
/* ================= INDUSTRIES SECTION ================= */

/* ================= INDUSTRIES SECTION ================= */

.industries{

    padding:100px 8%;
    background:#ffffff;

}

/* Heading */

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-tag{

    color:#F7941D;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

}

.section-heading h2{

    font-size:42px;
    color:#222;
    margin:15px 0;

}

.section-heading p{

    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:30px;

}

/* Grid */

.industry-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

/* Card */

.industry-card{

    background:#fff;

padding:30px;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s ease;

    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:220px;

    cursor:pointer;

    border-top:4px solid transparent;

}

/* Hover */

.industry-card:hover{

    transform:translateY(-10px);

    border-top:4px solid #F7941D;

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

/* Title */

.industry-card h3{

    font-size:30px;

    font-weight:700;

    color:#222;

    margin-bottom:18px;

    display:block;

}

/* Description */

.industry-card p{

    font-size:17px;

    color:#666;

    line-height:30px;

    display:block;

}

/* Mobile */

@media(max-width:991px){

    .industry-grid{

        grid-template-columns:1fr;

    }

}

/* ================= WHY CHOOSE ================= */

.why-choose{

    padding:100px 8%;

    background:#f8f9fb;

}

.why-choose .section-heading{

    text-align:center;

    margin-bottom:70px;

}

.why-choose .section-tag{

    color:#F7941D;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.why-choose .section-heading h2{

    font-size:46px;

    color:#222;

    margin:15px 0;

}

.why-choose .section-heading p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:32px;

    color:#666;

}
/* ================= WHY CHOOSE CARDS ================= */

.why-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.why-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    border-top:5px solid transparent;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:all .35s ease;

    cursor:pointer;

}

.why-card:hover{

    transform:translateY(-10px);

    border-top:5px solid #F7941D;

    box-shadow:0 22px 50px rgba(0,0,0,.15);

}

.why-card h3{

    font-size:28px;

    color:#222;

    margin-bottom:18px;

    font-weight:700;

}

.why-card p{

    color:#666;

    font-size:17px;

    line-height:30px;

}

/* Icon */

.why-icon{

    width:70px;
    height:70px;

    background:#FFF4E8;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    transition:.35s;

}

.why-icon i{

    font-size:30px;

    color:#F7941D;

}

.why-card:hover .why-icon{

    background:#F7941D;

    transform:rotate(-10deg) scale(1.08);

}

.why-card:hover .why-icon i{

    color:#ffffff;

}
/* Mobile */

@media(max-width:991px){

    .why-grid{

        grid-template-columns:1fr;

    }

}

/* ================= CONTACT SECTION ================= */

/* Contact Info Box */

.info-box{

    display:flex;
    align-items:flex-start;
    gap:20px;

    margin-top:30px;

}

/* Icon */

.info-icon{

    width:55px;
    height:55px;

    background:#FFF4E8;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

    transition:.35s;

}

.info-icon i{

    color:#F7941D;

    font-size:22px;

}

/* Text */

.info-text h4{

    font-size:20px;

    margin-bottom:8px;

    color:#222;

}

.info-text p{

    color:#666;

    line-height:28px;

}

/* Hover Effect */

.info-box:hover .info-icon{

    background:#F7941D;

    transform:rotate(-10deg);

}

.info-box:hover .info-icon i{

    color:#fff;

}

/* ================= CONTACT SECTION ================= */

.contact{

    padding:100px 8%;

    background:#f8f9fc;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

    margin-top:60px;

}

.contact-info h3,
.contact-form h3{

    font-size:32px;

    margin-bottom:20px;

    color:#222;

}

.contact-info>p{

    color:#666;

    line-height:30px;

    margin-bottom:35px;

}

/* Info Box */

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:28px;

    align-items:flex-start;

}

.info-icon{

    width:55px;

    height:55px;

    background:#FFF4E8;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.info-icon i{

    font-size:22px;

    color:#F7941D;

}

.info-text h4{

    margin-bottom:8px;

    color:#222;

}

.info-text p{

    color:#666;

    line-height:28px;

}

/* Form */

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    font-family:inherit;

    outline:none;

}

.contact-form textarea{

    resize:none;

}

.contact-btn{

    background:#F7941D;

    color:#fff;

    border:none;

    padding:16px;

    border-radius:10px;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

.contact-btn:hover{

    background:#E67E00;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(247,148,29,.35);

}
.contact-form input:focus,
.contact-form textarea:focus{

    border:1px solid #F7941D;

    box-shadow:0 0 0 4px rgba(247,148,29,.15);

}

/* Mobile */

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

}
/* ================= FOOTER ================= */

.footer{

    background:#1F2937;

    color:#fff;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-col h2{

    font-size:30px;

    margin-bottom:20px;

    color:#fff;

}

.footer-col h3{

    font-size:22px;

    margin-bottom:20px;

    color:#fff;

}

.footer-col p{

    color:#cfcfcf;

    line-height:30px;

    margin-bottom:12px;

}

.footer-col ul{

    list-style:none;

    padding:0;

}

.footer-col ul li{

    margin-bottom:15px;

    color:#cfcfcf;

}

.footer-col ul li a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#F7941D;

    padding-left:6px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#bdbdbd;

    font-size:15px;

}

/* Responsive */

@media(max-width:900px){

.footer-container{

grid-template-columns:1fr;

}

}



/* ================= HERO BUTTONS ================= */
/* ================= HERO BUTTONS ================= */

.hero-buttons{
    display: flex;
    gap: 25px;
    margin-top: 40px;
    align-items: center;   /* Vertical alignment */
}

.hero-btn,
.hero-btn-outline{

    display:flex;
    justify-content:center;
    align-items:center;

    width:220px;
    height:60px;

    padding:0;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;
    font-weight:600;

    box-sizing:border-box;
}

/* Hover Effect */

.hero-btn:hover,
.hero-btn-outline:hover{

    background:#F7941D;

    color:#fff;

    transform:translateY(-4px);

}
/* ================= PRODUCT PAGE ================= */

/* PRODUCT PAGE */

.product-page{

    max-width:1400px;
    margin:120px auto;
    padding:40px 80px;

}

/* Image + Content */

.product-container{

    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:70px;

}

/* LEFT IMAGE */

.product-image{

    flex:1;

}

.product-image img{

    width:100%;
    max-width:500px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

/* RIGHT CONTENT */

.product-content{

    flex:1.2;

}

.product-content h1{

    font-size:55px;
    margin:10px 0 20px;
    color:#222;

}

.product-content h2{

    color:#F7941D;
    margin:35px 0 15px;
    font-size:30px;

}

.product-content p{

    font-size:18px;
    line-height:1.8;
    color:#555;

}

.product-content ul{

    padding-left:20px;

}

.product-content ul li{

    margin-bottom:12px;
    font-size:17px;
    color:#444;

}

.section-tag{

    color:#F7941D;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;

}

/* TABLE */

.product-content table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;

}

.product-content table th{

    background:#F7941D;
    color:#fff;
    padding:15px;

}

.product-content table td{

    border:1px solid #ddd;
    padding:15px;

}

/* BUTTON */

.hero-btn{

    display:inline-block;
    margin-top:35px;
    padding:15px 35px;
    background:#F7941D;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;

}

.hero-btn:hover{

    background:#E67E00;

}

/* Footer Contact Alignment */

.footer-contact{
    margin-top:20px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.contact-item i{
    width:20px;
    text-align:center;
    color:#F7941D;
    font-size:18px;
}

.contact-item span,
.contact-item a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
}

.contact-item a:hover{
    color:#F7941D;
}

@media(max-width:992px){
    .products-container{
        grid-template-columns:1fr;
    }
}

/* ==========================
   PRODUCT DETAILS PAGE
========================== */

body{
    font-family:'Poppins',sans-serif;
    background:#f7f8fa;
    color:#333;
    margin:0;
    padding:0;
}

/* Main Container */

.product-container{
    max-width:1200px;
    margin:120px auto 80px;
    padding:0 40px;
}

/* Image */

.product-image{
    width:280px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
    margin-bottom:35px;
}

.product-image img{
    width:100%;
    display:block;
}

/* Small Orange Heading */

.section-tag{
    display:inline-block;
    color:#F7941D;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

/* Product Name */

.product-details h1{
    font-size:50px;
    font-weight:700;
    color:#1F2937;
    margin-bottom:20px;
    line-height:1.2;
}

/* Description */

.product-details p{
    font-size:17px;
    line-height:30px;
    color:#666;
    margin-bottom:35px;
}

/* Orange Headings */

.product-details h2{
    font-size:32px;
    color:#F7941D;
    margin-top:40px;
    margin-bottom:20px;
    font-weight:700;
}

/* Bullet List */

.product-details ul{
    padding-left:25px;
    margin-bottom:35px;
}

.product-details ul li{
    font-size:17px;
    color:#555;
    line-height:34px;
}

/* Table */

.product-details table{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
    margin-bottom:40px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Table Header */

.product-details table th{
    background:#F7941D;
    color:#fff;
    padding:16px;
    font-size:17px;
    font-weight:600;
    text-align:left;
}

/* Table Data */

.product-details table td{
    padding:15px 18px;
    border-bottom:1px solid #eee;
    color:#555;
    font-size:16px;
}

.product-details table tr:nth-child(even){
    background:#fafafa;
}

.product-details table tr:hover{
    background:#fff7ef;
}

/* Advantages */

.product-details ul li::marker{
    color:#F7941D;
}

/* Responsive */

@media(max-width:768px){

.product-container{
    padding:20px;
}

.product-image{
    width:100%;
}

.product-details h1{
    font-size:36px;
}

.product-details h2{
    font-size:26px;
}

}

/* Product Footer */

.product-footer{
.product-footer{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
}

.quote-btn{
    display:inline-block;
    background:#F7941D;
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border-radius:50px;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;
    transition:.3s ease;
    width:auto;
}

.quote-btn:hover{
    background:#e67e00;
    transform:translateY(-3px);
}

.back-btn{
    text-decoration:none;
    color:#1F2937;
    font-family:'Poppins',sans-serif;
    font-weight:500;
}

.back-btn:hover{
    color:#F7941D;
}



/* Large images for first 4 products */

.large-product-img{
    width: 400px !important;
    height: 340px !important;
    object-fit: contain;
    display: block;
    margin: 25px auto;
}

/* Large Product Images */

.product-img-large{

    width: 380px !important;

    height: 260px !important;

    object-fit: contain;

    display: block;

    margin: 20px auto;
}