/* ================= GLOBAL ================= */
/* ================= GOOGLE FONTS ================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Bodoni+Moda:wght@600;700&family=Cinzel:wght@500;600;700&family=Playfair+Display:wght@500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f3f3f3;
    color:#222;
}

/* ================= HEADER ================= */

.main-header{

    width:100%;
    height:110px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    position:fixed;
    top:0;
    left:0;

    z-index:9999;

    background:transparent;

    transition:all 0.4s ease;
}

.main-header.scrolled{

    background:#ffffff;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* LOGO AREA */

.logo-container{
    display:flex;
    align-items:center;
    gap:18px;
    flex-shrink:0;
}

/* LOGO */

.site-logo{
    width:70px;
    height:70px;
    object-fit:contain;
}

/* COMPANY NAME */

.company-name{
      font-size:34px;
    font-weight:800;
    white-space:nowrap;

    background:linear-gradient(
        90deg,
        #ff0000,
        #0047ab
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* NAVIGATION MENU */

.navbar{
    display:flex;
    align-items:center;
    gap:60px;
}

/* MENU LINKS */

.navbar a{
    text-decoration:none;

    font-family:'Intel', serif;

    font-size:20px;
    font-weight:700;
    margin-left:0;

    letter-spacing:1px;

    margin-left:0;; /* Extra spacing between items */

    background:linear-gradient(
        90deg,
        #ff0000,
        #0047ab
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    transition:0.3s;
}

/* HOVER */

.navbar a:hover{
    transform:translateY(-2px);
    opacity:0.8;
}
/* ================= VIDEO HERO ================= */

.hero-video{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#000;
}

.hero-bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transition:opacity .5s ease;
}

.hero-bg-video.loaded{
    opacity:1;
}

.hero-video-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.70)
    );
}


/* ================= HERO CONTENT ================= */

.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    width:100%;

    text-align:center;

    z-index:10;

    padding:0 40px;
}
/* MAIN HEADING */

.hero-content h1{

    font-family:'Cormorant Garamond', serif;

    font-size:75px;

    font-weight:700;

    color:#ffffff;

    line-height:1.1;

    margin-bottom:25px;

    text-align:center;

    text-shadow:
        0 4px 10px rgba(0,0,0,0.8),
        0 8px 25px rgba(0,0,0,0.6);

    animation:titleBreath 8s ease-in-out infinite;
}
/* TAGLINE */

.hero-content p{

    font-family:'Montserrat', sans-serif;

    font-size:25px;

    font-weight:500;

    color:#ffffff;

    max-width:1200px;

    margin:0 auto;

    line-height:1.7;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.8);

    opacity:0;

    animation:taglineFade 2s ease forwards;

    animation-delay:1s;
}

/* HEADING ANIMATION */

@keyframes slideCenter{

    0%{
        opacity:0;
        transform:translateX(-1000px);
    }

    100%{
        opacity:1;
        transform:translateX(0);
    }
}
/* ================= ANIMATION ================= */

@keyframes moveTagline{

    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }
}

@keyframes taglineFade{

    from{

        opacity:0;
    }

    to{

        opacity:1;
    }
}

@keyframes titleBreath{

    0%{
        transform:scale(0.95);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(0.95);
    }
}

/* ================= PRODUCTS HERO BANNER ================= */

.products-banner{

    width:100%;
    height:65vh;

    background-image:url('/images/products-banner.png');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}
.products-page .main-header{

    background:transparent;
}

/* ================= ABOUT PAGE HEADER ================= */

.about-page .main-header{
    background: transparent;
}

.about-page .main-header.scrolled{
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.products-page .main-header.scrolled{

    background:#ffffff;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* DARK OVERLAY */

.products-banner-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.45)
    );

    display:flex;
    justify-content:center;
    align-items:center;
}

/* TITLE */

.products-banner h1{

    color:#fff;

    font-size:60px;

    font-family:'Cormorant Garamond', serif;

    font-weight:700;

    letter-spacing:2px;

    text-shadow:
        0 5px 25px rgba(0,0,0,0.6);

    animation:slideBanner 2s ease;
}

/* ANIMATION */

@keyframes slideBanner{

    0%{

        opacity:0;

        transform:translateY(100px);
    }

    100%{

        opacity:1;

        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .products-banner{
        height:40vh;
    }

    .products-banner h1{
        font-size:42px;
        padding:0 20px;
    }
}

/* ================= PRODUCTS SECTION ================= */

.products-section{
    width:85%;
    margin:80px auto;
}

.products-section h2{
    font-size:40px;
    margin-bottom:50px;
    color:#1e2d3d;
}

/* GRID */

.division-grid{
    max-width:1700px;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* CARD */

.division-card{
    position:relative;
    overflow:hidden;
    height:420px;      /* increased from 320px */
    border-radius:28px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
    transition:all .4s ease;
}
/* Product Card Animation */

.division-card{
    opacity: 0;
    transform: translateY(80px) scale(.9);
    transition: all 0.8s ease;
}

.division-card.show{
    opacity:1;
    transform:translateY(0) scale(1);
}

.division-card:nth-child(1){
    transition-delay: .1s;
}

.division-card:nth-child(2){
    transition-delay: .2s;
}

.division-card:nth-child(3){
    transition-delay: .3s;
}

.division-card:nth-child(4){
    transition-delay: .4s;
}

.division-card:nth-child(5){
    transition-delay: .5s;
}

.division-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,71,171,0.25);
}
.division-card img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .6s ease;
}

.division-card:hover img{
    transform:scale(1.08);
}

.division-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;

    padding:30px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.40),
        transparent
    );
}

.division-overlay h3{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
}

.division-overlay button{
    background:#0f4db8;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.division-overlay button:hover{
    background:#fff;
    color:#0f4db8;
}

@media(max-width:768px){

    .division-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .division-card{
        height:300px;
    }

    .division-overlay h3{
        font-size:32px;
    }
}
/* ================= PRODUCT DETAILS ================= */

.product-details-container{
    width:90%;
    margin:50px auto;
}

.section-title{
    font-size:42px;
    margin-bottom:40px;
    color:#1e2d44;
}

.steel-type-card{
    display:grid;

    grid-template-columns:350px 1fr;

    gap:30px;

    align-items:center;

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    margin-bottom:40px;
}

.steel-type-card img{
    width:100%;
    height:250px;

    object-fit:cover;

    border-radius:15px;
}
.steel-content{
    flex:1;
}

.steel-content h3{
    font-size:32px;
    margin-bottom:15px;
    color:#004aad;
}

.steel-content p{
    line-height:1.9;
    font-size:16px;
    margin-bottom:20px;
}

.steel-table{
    width:100%;
    border-collapse:collapse;
}

.steel-table td{
    border:1px solid #ddd;
    padding:14px;
    text-align:left;
}

.steel-table th{
    background:#004aad;
    color:white;
    width:180px;
}

@media(max-width:768px){
    .steel-type-card{
        flex-direction:column;
    }

    .steel-type-card img{
        width:100%;
        height:250px;
    }
}

/* ================= PRODUCT DETAILS LAYOUT ================= */

.details-page{
    width:90%;
    margin:60px auto;

    display:flex;
    gap:40px;

    align-items:flex-start;
}

.details-content{
    flex:1;
}

.sidebar{
    width:280px;
    min-width:280px;

    position:sticky;
    top:120px;

    background:#f8f8f8;
    padding:20px;

    border-radius:12px;

    height:fit-content;
}


/* SIDEBAR TITLE */

.sidebar h3{
    margin-bottom:20px;

    color:#0047ab;

    font-size:24px;
}

/* LINKS */

.sidebar a{
    text-decoration:none;

    display:block;
}

/* ITEMS */

.sidebar-item{
    background:white;

    padding:18px;

    margin-bottom:12px;

    border-left:4px solid #0047ab;

    color:#222;

    font-weight:600;

    transition:0.3s;

    border-radius:4px;
}

/* HOVER */

.sidebar-item:hover{
    background:#0047ab;
    color:white;
}

/* INFO BOX */

.info-box{
    margin-top:30px;

    background:#f7c948;

    padding:20px;

    font-weight:bold;

    line-height:1.7;
}

/* ================= FOOTER ================= */
/* FOOTER CONTAINER */

.footer-container{
    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;
}

/* FOOTER TITLE */

.footer-column h4{
    margin-bottom:20px;

    color:#0047ab;
}

/* FOOTER TEXT */

.footer-column p{
    margin-bottom:15px;

    color:#333;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){

    .division-grid{
        grid-template-columns:1fr;
    }

    .details-page{
        flex-direction:column;
    }

    .details-content{
        width:100%;
    }

    .sidebar{
        width:100%;
    }

    .hero-content h1{
        font-size:48px;
        padding:0 20px;
    }

    .hero-content p{
        font-size:22px;
    }

    .hero-content-products h1{
        font-size:45px;

        text-align:center;

        padding:20px;
    }

    .products-section h2{
        font-size:45px;
    }

    .main-header{
        padding:20px;

        flex-direction:column;

        gap:20px;

        height:auto;
    }

    .navbar{
        flex-wrap:wrap;

        justify-content:center;

        gap:25px;
    }

    footer{
        padding:50px 20px;
    }

    .details-content h1{
        font-size:38px;
    }
}


/* ================= FOOTER ================= */

footer{
    background:white;

    padding:70px 80px;

    border-top:1px solid #ddd;
}

.footer-container{
    display:flex;

    justify-content:space-between;

    gap:50px;

    flex-wrap:wrap;
}

.footer-column h4{
    color:#0047ab;

    margin-bottom:25px;

    font-size:24px;
}

.footer-column p{
    margin-bottom:15px;

    color:#333;

    font-size:17px;
}

/* ================= CONTACT HERO ================= */

.contact-hero{
    width:100%;
    height:60vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.35)
    ),
    url('/images/contact-hero.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* HERO CONTENT */

.contact-overlay{
    width:100%;
    height:100%;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.contact-overlay h1{

    font-family:'Cormorant Garamond', serif;

    font-size:60px;

    font-weight:700;

    color:white;

    text-shadow:
        0 4px 15px rgba(0,0,0,0.5);

    animation:fadeUp 1.5s ease;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .contact-hero{
        height:320px;
        background-position:right center;
    }

}
/* ================= CONTACT SECTION ================= */

/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:120px 8%;
    background:#f7f7f7;
}

/* LAYOUT */

.contact-wrapper{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:start;
}

/* ADDRESS STYLE */

.contact-card{
    background:transparent;
    padding:0;
    box-shadow:none;
    border-radius:0;
    text-align:left;
    width:100%;
}

.contact-card p{
   font-size:30px;
    line-height:2;
    color:#333;
    font-family:'Cormorant Garamond', serif;
    font-weight:600;
}

.contact-card p.contact-info{
    font-family:'Montserrat', sans-serif !important;
    font-size:20px !important;
    font-weight:600 !important;
    color:#0047ab;
    letter-spacing:1px;
}


/* MAP */

.map-card iframe{
    width:100%;
    height:520px;
    border:none;
    border-radius:10px;
}

/* MOBILE */

@media(max-width:900px){

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-card h2{
        font-size:36px;
    }

    .contact-card p{
        font-size:18px;
        line-height:1.8;
    }

    .map-card iframe{
        height:400px;
    }
}

/* CONTACT FORM SECTION */

.form-section{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
}
.form-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form{
    margin:0 auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;

    padding:16px;

    margin-bottom:18px;

    border:none;

    border-radius:5px;

    font-size:16px;
}

.contact-form textarea{
    height:140px;

    resize:none;
}

.contact-form button{
    width:100%;

    padding:16px;

    background:#2d6cdf;

    color:white;

    border:none;

    border-radius:5px;

    font-size:18px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.contact-form button:hover{
    background:#0047ab;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-overlay h1{
        font-size:48px;
    }

    .enquiry-section h2{
        font-size:32px;
    }

    .contact-section,
    .enquiry-section,
    .form-section{
        padding:60px 20px;
    }

}
/* ================= ABOUT HERO ================= */

.about-hero{
    width:100%;
    height:60vh;

    background:url('/images/aboutus-banner4.png');
    background-size:cover;
    background-position:center;

    position:relative;
}
.about-overlay{
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    text-align:center;

    color:#fff;
}

.about-overlay h1{
    color:white;

    font-size:60px;

    font-family:'Cormorant Garamond', serif;

    font-weight:700;

    letter-spacing:2px;

    text-align:center;

    animation:slideBanner 3s ease;
}

/* ANIMATION */

@keyframes slideBanner{

    0%{

        opacity:0;

        transform:translateY(100px);
    }

    100%{

        opacity:1;

        transform:translateY(0);
    }
}

.about-overlay p{
    font-size:24px;
    color:#fff;
    
    animation:slideBanner 3s ease;
}
@keyframes slideBanner{

    0%{

        opacity:0;

        transform:translateY(100px);
    }

    100%{

        opacity:1;

        transform:translateY(0);
    }
}

/* ================= ABOUT US NEW DESIGN ================= */

.about-section{
    padding:80px 0;
}

.about-container{
    max-width:1400px;
    margin:auto;
}

.about-header{
    text-align:center;
    margin-bottom:70px;
}

.about-header h2{
    font-size:56px;
    font-weight:700;
    color:#1f2f46;
    margin-bottom:20px;
}

.about-header p{
    font-size:20px;
    max-width:900px;
    margin:auto;
    line-height:1.8;
}


.about-content{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:80px;
    align-items:center;
}
.about-text{
    max-width:none;
}

.about-text h3{
    font-size:42px;
    color:#0047ab;
    margin-bottom:25px;
}

.about-text p{
    font-size:20px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:800px;
    height:600px;
    object-fit:cover;

    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

@media(max-width:768px){

    .about-content{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-text h3{
        font-size:30px;
        text-align:center;
    }

    .about-text p{
        font-size:16px;
        line-height:1.8;
        text-align:left;
    }

    .about-image img{
        max-width:100%;
        height:auto;
    }
}
/* ================= EXPERIENCE SECTION ================= */

.experience-section{
    padding:100px 8%;
    background:#f3f3f3;
}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.experience-card{
    background:#fff;
    padding:50px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.experience-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,71,171,.15);
}

.experience-card h2{
    font-size:50px;
    color:#0047ab;
    margin-bottom:18px;
    font-weight:700;
}

.experience-card p{
    font-size:18px;
    color:#555;
    line-height:1.7;
    font-weight:500;
}

/* MOBILE */

@media(max-width:900px){

    .experience-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){

    .experience-grid{
        grid-template-columns:1fr;
    }
}

/* PRODUCT EXPERTISE */

.products-expertise{
    padding:100px 8%;
    background:#f8f9fc;
}

.products-expertise h2{
    text-align:center;
    font-size:48px;
    margin-bottom:20px;
    color:#1e2d3d;
}

.products-expertise > .about-container > p{
    text-align:center;
    color:#666;
    margin-bottom:60px;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.expertise-card{
    background:#fff;
    padding:35px;
    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    transition:0.4s;
}

.expertise-card:hover{
    transform:translateY(-10px);
}

.expertise-card h3{
    color:#0047ab;
    margin-bottom:15px;
    font-size:28px;
}

.expertise-card p{
    color:#555;
    line-height:1.8;
}

/* MISSION & VISION */

.mission-section{
    padding:100px 8%;
    background:#fff;
    text-align:center;
}

.mission-section h2{
    font-size:42px;
    color:#1e2d3d;
    margin-bottom:20px;
}

.mission-section p{
    max-width:1000px;
    margin:0 auto 60px;
    color:#666;
    line-height:2;
    font-size:18px;
}

.mission-box{
    opacity:0;
    transform:translateX(-120px);
    transition:all 1s ease;
}

.mission-box.show{
    opacity:1;
    transform:translateX(0);
}

.mission-box:nth-child(1){
    transition-delay:.1s;
}

.mission-box:nth-child(2){
    transition-delay:.3s;
}

.mission-box:nth-child(3){
    transition-delay:.5s;
}
/* MOBILE */

@media(max-width:900px){

    .about-content{
        grid-template-columns:1fr;
    }

    .about-highlights{
        grid-template-columns:1fr 1fr;
    }

    .about-header h2{
        font-size:36px;
    }

    .products-expertise h2{
        font-size:36px;
    }
}

@media(max-width:600px){

    .about-highlights{
        grid-template-columns:1fr;
    }

    .highlight-card{
        padding:25px;
    }
}



/* ================= MOBILE ================= */

@media(max-width:900px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .milestone-grid{
        grid-template-columns:1fr;
    }

    .about-overlay h1{
        font-size:42px;
    }

    .about-content,
    .about-nav-section{
        padding:40px 20px;
    }

}

/* ================= PRODUCT DETAILS PAGE FIX ================= */

.product-details-page .main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:transparent;
    transition:all 0.4s ease;
}

.product-details-page .main-header.scrolled{
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* Push content below fixed header */

.product-details-page .details-page{
    margin-top:140px;
}
/* PRODUCT DETAILS HERO */

.hero-section{
    height: 420px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content-products h1{
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
@keyframes floatTitle{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* Push details below hero */

.product-details-page .details-page{
    width:90%;
    margin:80px auto;

    display:flex;
    gap:40px;

    align-items:flex-start;
}
@media(max-width:768px){

    .hero-section{
        height:35vh;
    }

    .hero-content-products h1{
        font-size:40px;
    }

}

.stainless-steel-hero{
    background-image:url('/images/stainless-banner.png');
}
.carbon-steel-hero{
    background-image:url('/images/carbon-banner.png');
}
.aluminium-hero{
    background-image:url('/images/aluminium-banner.png');
    
}
.titanium-hero{
    background-image:url('/images/titanium-banner.png');
}
.copper-alloys-hero{
    background-image:url('/images/copper-banner.png');
}

.company-caption{
    width:100%;
    padding:90px 20px;
    background:#ffffff;
    text-align:center;
}

.company-caption h2{
    max-width:1200px;
    margin:auto;

    font-size:48px;
    line-height:1.5;
    font-weight:700;

    color:#1e2d3d;
}

@media(max-width:768px){

    .company-caption{
        padding:70px 20px;
    }

    .company-caption h2{
        font-size:32px;
        line-height:1.4;
    }
}
 /*products home page */

.products-section{
    width:85%;
    margin:80px auto;
}

.division-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.home-product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.3s ease;
    height:100%;
}

.home-product-card {
    opacity: 0;
    transform: translateY(80px) scale(.9);
    transition: all 0.8s ease;
}

.home-product-card.show {
    opacity: 1;
    transform:translateY(0) scale(1);
}

.home-product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.home-product-content{
    padding:25px;
}

.home-product-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.home-product-content p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:20px;
}
.view-btn{
    background:#0d4db8;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.view-btn:hover{
    background:#08398a;
}
@media(max-width:992px){
    .division-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .division-grid{
        grid-template-columns:1fr;
    }
}
.home-product-card:nth-child(1) {
    transition-delay: 0.1s;
}

.home-product-card:nth-child(2) {
    transition-delay: 0.2s;
}

.home-product-card:nth-child(3) {
    transition-delay: 0.3s;
}

.home-product-card:nth-child(4) {
    transition-delay: 0.4s;
}

.home-product-card:nth-child(5) {
    transition-delay: 0.5s;
}

.home-enquiry-section{
    padding: 80px 20px;
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    text-align: center;
    margin-top: 80px;
}

.home-enquiry-content{
    max-width: 800px;
    margin: auto;
}

.home-enquiry-content h2{
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.home-enquiry-content p{
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.enquiry-btn{
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #0f4db8;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.enquiry-btn:hover{
    background: #0f4db8;
    color: #fff;
    transform: translateY(-3px);
}

html{
    scroll-behavior:smooth;
}

.footer{
    background: #1a1a1a;
    color:#fff;
    padding:70px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

.footer-logo img{
    width:70px;
}

.footer-logo h3{
    font-size:34px;
    font-weight:700;
    color:#fff;
}

.company-info p{
    color:#bdbdbd;
    line-height:1.8;
    font-size:16px;
}

.footer-column h4{
    font-size:28px;
    margin-bottom:25px;
    color:#fff;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:15px;
    color:#cfcfcf;
}

.footer-column a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#0047ab;
}

.footer-column p{
    color:#cfcfcf;
    margin-bottom:15px;
    line-height:1.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#999;
}

/* ================= MOBILE FOOTER ================= */

@media(max-width:768px){

    .footer{
        padding:50px 25px 20px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-logo h3{
        font-size:28px;
    }

    .footer-column h4{
        font-size:24px;
        margin-bottom:15px;
    }

    .footer-column p,
    .footer-column li,
    .footer-column a{
        font-size:16px;
    }

    .footer-bottom{
        margin-top:30px;
    }
}

/* ================= MOBILE HEADER FIX ================= */

@media(max-width:768px){

    .main-header{
        padding:15px;
        height:auto;
    }

    .logo-container{
        gap:10px;
    }

    .site-logo{
        width:50px;
        height:50px;
    }

    .company-name{
        font-size:22px;
    }

    .navbar{
        gap:15px;
        flex-wrap:wrap;
    }

    .navbar a{
        font-size:14px;
    }

}

/* ================= MOBILE HERO FIX ================= */

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.7;
    }

}
/* ================= MOBILE CONTACT FIX ================= */

@media(max-width:768px){

    .contact-card h2{
        font-size:30px;
    }

    .contact-card p{
        font-size:16px;
        line-height:1.8;
    }

}
/* ================= MOBILE EXPERTISE FIX ================= */

@media(max-width:768px){

    .expertise-card h3{
        font-size:22px;
    }

    .expertise-card p{
        font-size:15px;
        line-height:1.7;
    }

}

/* products table wraper */
.table-wrapper{
    overflow-x:auto;
}

@media (max-width: 768px) {

    .steel-type-card{
        display:block !important;
        grid-template-columns:none !important;
        padding:15px;
    }

    .steel-type-card img{
        width:100%;
        height:220px;
        margin-bottom:15px;
    }

    .steel-content{
        width:100%;
    }

}

/* SERVER SUCCESS MESSEGE */
.success-message{
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 15px 30px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}