/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size:16px;
    line-height:1.8;
    color:#444;
    background:#f8f9fa;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
    transition:0.3s;
}

ul{
    padding-left:20px;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url('../images/ss-440-round-bar-banner.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.hero-section h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:700;
}

.hero-section p{
    max-width:900px;
    margin:auto;
    font-size:18px;
}

/* =========================
   MAIN CONTENT
========================= */

section{
    padding:60px 0;
}

.content-section{
    background:#fff;
    margin-bottom:30px;
    border-radius:10px;
    padding:40px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

h1,h2,h3,h4{
    color:#1d3557;
    line-height:1.4;
}

h2{
    font-size:24px;
    margin-bottom:20px;
    position:relative;
}

h2:after{
    content:'';
    width:70px;
    height:4px;
    background:#d4af37;
    display:block;
    margin-top:10px;
}

h3{
    font-size:24px;
    margin:25px 0 15px;
}

p{
    margin-bottom:20px;
}

/* =========================
   TRUST POINTS
========================= */

.trust-points{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:40px;
}

.trust-box{
    background:#fff;
    text-align:center;
    padding:25px;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.trust-box h4{
    font-size:18px;
    margin-top:10px;
}

/* =========================
   TABLE DESIGN
========================= */

table{
    width:100%;
    border-collapse:collapse;
    margin-top:25px;
    background:#fff;
}

table th{
    background:#1d3557;
    color:#fff;
    padding:15px;
    text-align:left;
}

table td{
    padding:14px;
    border:1px solid #ddd;
}

table tr:nth-child(even){
    background:#f7f7f7;
}

/* =========================
   APPLICATION BOXES
========================= */

.application-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.application-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.application-box:hover{
    transform:translateY(-5px);
}

.application-box h3{
    color:#1d3557;
    margin-bottom:10px;
}

/* =========================
   COUNTRY EXPORT SECTION
========================= */

.country-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.country-box{
    background:#fff;
    padding:30px;
    border-left:5px solid #d4af37;
    border-radius:10px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

/* =========================
   FAQ SECTION
========================= */

.faq-item{
    background:#fff;
    padding:25px;
    margin-bottom:20px;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.faq-item h3{
    color:#1d3557;
    margin-bottom:10px;
    font-size:20px;
}

/* =========================
   RELATED PRODUCTS
========================= */

.related-products{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.related-products ul{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    list-style:none;
    padding:0;
}

.related-products li a{
    display:block;
    background:#1d3557;
    color:#fff;
    text-align:center;
    padding:15px;
    border-radius:6px;
}

.related-products li a:hover{
    background:#d4af37;
    color:#000;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    background:#1d3557;
    color:#fff;
    text-align:center;
    padding:70px 30px;
    border-radius:10px;
}

.cta-section h2{
    color:#fff;
}

.cta-section h2:after{
    background:#d4af37;
    margin:auto;
    margin-top:10px;
}

.cta-btn{
    display:inline-block;
    margin-top:20px;
    background:#d4af37;
    color:#000;
    padding:15px 35px;
    font-weight:600;
    border-radius:5px;
}

.cta-btn:hover{
    background:#fff;
}

/* =========================
   CONTACT BAR
========================= */

.contact-bar{
    background:#d4af37;
    padding:20px;
    text-align:center;
    font-size:18px;
    font-weight:600;
}

.contact-bar a{
    color:#000;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#111;
    color:#ccc;
    padding:40px 0;
    text-align:center;
}

.footer p{
    margin-bottom:0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:992px){

.trust-points{
    grid-template-columns:repeat(2,1fr);
}

.application-grid{
    grid-template-columns:1fr 1fr;
}

.related-products ul{
    grid-template-columns:1fr 1fr;
}

.country-grid{
    grid-template-columns:1fr;
}

.hero-section h1{
    font-size:38px;
}

}

@media(max-width:768px){

.application-grid{
    grid-template-columns:1fr;
}

.trust-points{
    grid-template-columns:1fr;
}

.related-products ul{
    grid-template-columns:1fr;
}

.content-section{
    padding:25px;
}

.hero-section{
    padding:80px 20px;
}

.hero-section h1{
    font-size:30px;
}

h2{
    font-size:28px;
}

h3{
    font-size:22px;
}

table{
    display:block;
    overflow-x:auto;
}

}
.gallery-section{
    padding:60px 0;
}

.gallery-section h2{
    text-align:center;
    margin-bottom:30px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}

/* Tablet */
@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media(max-width:576px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.gallery-item img{
    height:180px;
}

}