/*======================================
SS Aluminium & Trading
Premium Industrial Theme
=======================================*/
:root{

--bg:#0b0b0b;
--card:#171717;
--text:#ffffff;
--text2:#bdbdbd;
--primary:#18A9D5;
--header:rgba(0,0,0,.85);

}

body.light{

--bg:#f5f7fa;
--card:#ffffff;
--text:#111111;
--text2:#555555;
--primary:#18A9D5;
--header:rgba(255,255,255,.95);

}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Outfit',sans-serif;
background:var(--bg);
color:#ffffff;
overflow-x:hidden;
line-height:1.6;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1350px;
margin:auto;

}



/*==========================
Premium Loader
==========================*/

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100vh;

background:#050505;

display:flex;

justify-content:center;
align-items:center;

z-index:99999;

transition:opacity .8s ease,
visibility .8s ease;

}

#loader.hide{

opacity:0;

visibility:hidden;

}

.loader-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.loader-logo{
    width:110px;
    height:auto;
    display:block;
    margin:0 auto 25px;
    animation:logoFloat 2s ease-in-out infinite;
    filter:drop-shadow(0 0 20px rgba(24,169,213,.45));
}

.loader-content h1{

margin-top:25px;

font-size:34px;

font-weight:700;

}

.loader-content p{

margin-top:10px;

color:var(--primary);

letter-spacing:5px;

font-size:13px;

}

.loader-bar{

width:260px;

height:5px;

margin:35px auto 0;

background:rgba(255,255,255,.08);

border-radius:30px;

overflow:hidden;

}

.loader-progress{

height:100%;

width:0;

background:linear-gradient(90deg,
#18A9D5,
#52d8ff);

animation:loading 2.8s forwards;

}

@keyframes loading{

0%{

width:0;

}

100%{

width:100%;

}

}

@keyframes logoFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/*==========================
Header
==========================*/

header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);

    width:95%;
    max-width:1450px;

    padding:18px 35px;

    z-index:9999;

    background:rgba(10,10,10,.55);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.08);

    transition:.45s ease;
}
header.scrolled{

    top:10px;

    padding:12px 28px;

    background:rgba(8,8,8,.82);

    border-color:rgba(24,169,213,.18);

    box-shadow:
        0 18px 45px rgba(0,0,0,.45),
        0 0 25px rgba(24,169,213,.08);

}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

/*==========================
LOGO
==========================*/

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
    transform:translateY(-9px);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.logo-text span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}   

.logo span{


color:var(--primary);
}

nav ul{

display:flex;
gap:40px;

}

nav ul li a{

font-size:16px;
font-weight:500;
transition:.35s;

}

nav ul li a:hover{

color:var(--primary);

}

.nav-buttons{

display:flex;
gap:15px;

}

.call-btn{

padding:12px 26px;
border:1px solid #666;
border-radius:40px;
transition:.35s;

}

.call-btn:hover{

background:#fff;
color:#000;

}

.quote-btn{

padding:12px 28px;
background:#18A9D5;
color:#000;
border-radius:40px;
font-weight:700;
transition:.35s;

}

.quote-btn:hover{

transform:translateY(-3px);

}

#menuBtn{

display:none;
font-size:28px;
cursor:pointer;

}

/*==========================
Hero
==========================*/

/*==========================
Hero
==========================*/

.hero{
    min-height:100vh;
    height:auto;
    padding:170px 0 120px;
    background:
    linear-gradient(rgba(0,0,0,.72),
    rgba(0,0,0,.78)),
    url("assets/hero.jpg") center center/cover;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-content{
    width:100%;
    max-width:1350px;
}

.hero-tag{
    display:inline-block;
    padding:12px 24px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    margin-bottom:30px;
    font-size:14px;
    letter-spacing:2px;
    color:var(--primary);
    backdrop-filter:blur(15px);
}

.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.05;
    max-width:900px;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#d0d0d0;
    max-width:720px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:70px;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:20px;
    margin-bottom:20px;
}

.hero-stats div{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:24px;
    padding:38px 30px;
    transition:.35s;
}

.hero-stats div:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(24,169,213,.15);
}

.hero-stats h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:10px;
}

.hero-stats span{
    font-size:16px;
    color:#cfcfcf;
}

.primary-btn{

background:#18A9D5;

color:#000;

padding:18px 42px;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.primary-btn:hover{

transform:translateY(-5px);

}

.secondary-btn{

padding:18px 42px;

border:1px solid #888;

border-radius:50px;

transition:.35s;

}

.secondary-btn:hover{

background:#fff;

color:#000;

}


/*==========================
SECTION TITLE
==========================*/

section{

padding:110px 0;

}

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title h2{

font-size:48px;
font-weight:800;
margin-bottom:15px;

}

.section-title p{

font-size:18px;
color:var(--text2);
max-width:700px;
margin:auto;

}

/*==========================
BRANDS
==========================*/

#brands{

background:#111;
padding-top:120px;

}

/*==========================
Brand Slider
==========================*/

.brand-slider{
    overflow:hidden;
    width:100%;
    margin-top:60px;
    position:relative;
}

.brand-track{
    display:flex;
    width:max-content;
    animation:scrollBrands 30s linear infinite;
}

.brand-slider:hover .brand-track{
    animation-play-state:paused;
}

.brand-card{
    width:220px;
    height:120px;

    margin:0 15px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    transition:.35s;
}

.brand-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(24,169,213,.25);

}

.brand-card img{
    max-width:140px;
    max-height:60px;
    object-fit:contain;
    transition:.35s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

@keyframes scrollBrands{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==========================
ABOUT
==========================*/

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-grid img{

width:100%;
border-radius:25px;

}

.about-grid h2{

font-size:46px;
margin-bottom:25px;

}

.about-grid p{

font-size:18px;
color:#bfbfbf;
margin-bottom:20px;

}

.about-list{

margin-top:35px;

}

.about-list li{

font-size:18px;
margin-bottom:18px;
padding-left:10px;

}

/*==========================
PRODUCTS
==========================*/

.products-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}

.product-card{

background:#141414;

border-radius:25px;

overflow:hidden;

transition:.4s;

border:1px solid rgba(255,255,255,.06);

}

.product-card:hover{

transform:translateY(-12px);

border-color:var(--primary);

box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.product-card img{

height:270px;
width:100%;
object-fit:cover;

}

.product-content{

padding:28px;

}

.brand{

display:inline-block;

padding:8px 18px;

background:#18A9D5;

color:#000;

border-radius:30px;

font-size:13px;

font-weight:700;

margin-bottom:18px;

}

.product-content h3{

font-size:28px;
margin-bottom:15px;

}

.product-content p{

color:#c8c8c8;
margin-bottom:25px;

}

.product-content a{

color:var(--primary);

font-weight:700;

}

/*==========================
GALLERY
==========================*/



/*==========================
WHY CHOOSE US
==========================*/

.why-us{

background:#101010;

}

.features-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.feature-card{

background:#181818;
padding:45px 35px;
border-radius:22px;
text-align:center;
transition:.4s;
border:1px solid rgba(255,255,255,.05);

}

.feature-card:hover{

transform:translateY(-10px);
border-color:var(--primary);
box-shadow:0 20px 45px rgba(0,0,0,.45);

}

.feature-card i{

font-size:52px;
color:var(--primary);
margin-bottom:25px;

}

.feature-card h3{

font-size:28px;
margin-bottom:18px;

}

.feature-card p{

color:var(--text2);
font-size:17px;

}

/*==========================
COUNTERS
==========================*/

.counter-section{

background:#0d0d0d;

}

.counter-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.counter-box{

background:#181818;
padding:45px;
text-align:center;
border-radius:20px;

}

.counter-box h2{

font-size:58px;
color:var(--primary);
margin-bottom:10px;

}

.counter-box p{

font-size:18px;
color:#cfcfcf;

}

/*==========================
REVIEWS
==========================*/

.review-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.review-card{

background:#181818;
padding:40px;
border-radius:20px;
transition:.4s;

}

.review-card:hover{

transform:translateY(-10px);

}

.stars{

font-size:22px;
color:#FFD700;
margin-bottom:20px;

}

.review-card p{

font-size:17px;
color:#c9c9c9;
margin-bottom:25px;

}

.review-card h4{

font-size:20px;

}

/*==========================
FAQ
==========================*/

.faq{

max-width:900px;
margin:auto;

}

.faq-item{

background:#181818;
border-radius:15px;
margin-bottom:20px;
overflow:hidden;

}

.faq-question{

width:100%;
background:none;
border:none;
padding:24px 30px;
font-size:20px;
font-weight:600;
color:#fff;
cursor:pointer;
text-align:left;

}

.faq-answer{

display:none;
padding:0 30px 25px;

}

.faq-answer p{

color:var(--text2);

}

/*==========================
CONTACT
==========================*/

.contact-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;

}

.contact-info{

display:flex;
flex-direction:column;
gap:25px;

}

.info-box{

display:flex;
gap:20px;
align-items:flex-start;
background:#181818;
padding:28px;
border-radius:18px;

}

.info-box i{

font-size:28px;
color:var(--primary);

}

.info-box h4{

margin-bottom:8px;

}

.contact-form{

background:#181818;
padding:40px;
border-radius:20px;

}

.contact-form input,
.contact-form textarea{

width:100%;
padding:18px;
margin-bottom:20px;
background:#111;
border:1px solid #333;
border-radius:12px;
color:#fff;
font-size:16px;
font-family:inherit;

}

.contact-form input:focus,
.contact-form textarea:focus{

outline:none;
border-color:var(--primary);

}

.contact-form button{

border:none;
cursor:pointer;
width:100%;

}
/*==========================
GOOGLE MAP
==========================*/

.map-section iframe{

width:100%;
height:450px;
border:0;
display:block;

}

/*==========================
FOOTER
==========================*/

footer{

background:#080808;
padding:90px 0 30px;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
margin-bottom:60px;

}

.footer-grid h3{

font-size:34px;
margin-bottom:20px;

}

.footer-grid h4{

margin-bottom:20px;
font-size:22px;

}

.footer-grid p{

color:#bfbfbf;
line-height:1.8;

}

.footer-grid ul li{

margin-bottom:14px;

}

.footer-grid ul li a{

color:#bfbfbf;
transition:.3s;

}

.footer-grid ul li a:hover{

color:var(--primary);

}

.social-icons{

display:flex;
gap:15px;
margin-top:25px;

}

.social-icons a{

width:45px;
height:45px;
border-radius:50%;
background:#181818;
display:flex;
align-items:center;
justify-content:center;
transition:.35s;

}

.social-icons a:hover{

background:#18A9D5;
color:#000;
transform:translateY(-5px);

}

.copyright{

border-top:1px solid rgba(255,255,255,.08);
padding-top:30px;
text-align:center;
color:#999;

}

/*==========================
FLOATING WHATSAPP
==========================*/

.floating-whatsapp{

position:fixed;
right:30px;
bottom:30px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
justify-content:center;
align-items:center;
font-size:34px;
color:#fff;
box-shadow:0 15px 35px rgba(0,0,0,.4);
z-index:999;
transition:.35s;

}

.floating-whatsapp:hover{

transform:scale(1.12);

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:#18A9D5;
border-radius:10px;

}

/*==========================
ANIMATIONS
==========================*/

.product-card,
.feature-card,
.review-card,
.brand-card,
.counter-box,
.info-box{

transition:all .35s ease;

}

.hero h1,
.hero p,
.hero-buttons,
.hero-stats{

animation:fadeUp 1s ease forwards;

}

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.products-grid,
.features-grid,
.review-grid{

grid-template-columns:repeat(2,1fr);

}

.brand-grid{

grid-template-columns:repeat(3,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.hero h1{

font-size:58px;

}

}

@media(max-width:992px){

.about-grid,
.contact-grid{

grid-template-columns:1fr;

}

.hero{

height:auto;
padding:180px 0 120px;

}

.hero h1{

font-size:48px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
    padding:20px 0;
    box-shadow:0 15px 30px rgba(0,0,0,.4);
}

nav.active{
    display:block;
}

nav ul{
    flex-direction:column;
    gap:20px;
    align-items:center;
}

nav ul li{
    width:100%;
    text-align:center;
}

nav ul li a{
    display:block;
    padding:12px 0;
}

#menuBtn{

display:block;

}

.nav-buttons{

display:none;

}

}

@media(max-width:768px){

.products-grid,
.review-grid,
.features-grid,
.brand-grid,
.gallery-grid,
.counter-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.primary-btn,
.secondary-btn{

width:100%;
text-align:center;

}

.section-title h2{

font-size:34px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

.logo{

font-size:24px;

}

}

@media(max-width:480px){

.container{

width:92%;

}

.hero{

padding-top:160px;

}

.hero h1{

font-size:32px;

}

.hero-stats{

grid-template-columns:1fr;

}

.brand-card{

height:130px;

}

.product-card img{

height:220px;

}

.gallery-grid img{

height:220px;

}

.floating-whatsapp{

width:58px;
height:58px;
font-size:28px;

}

}
.theme-btn{

width:48px;
height:48px;
border:none;
border-radius:50%;
cursor:pointer;
font-size:22px;
background:var(--card);
color:var(--primary);
transition:.3s;
margin-left:15px;

}

.theme-btn:hover{

transform:rotate(180deg);

}
.loader-logo{
    width:100px;
    height:auto;
    margin-bottom:20px;
}
@media(max-width:768px){

.logo img{

height:50px;

}

.logo-text h2{

font-size:18px;

}

.logo-text span{

font-size:9px;

}

}
.contact-info a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-info a:hover{
    color:#18A9D5;
}
.brand-list{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    grid-template-columns:repeat(2, auto);
    gap:12px 35px;
}

.brand-list li{
    color:#fff;
}
.catalog-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}