﻿/* ===========================
   AHILA METALS - STYLE.CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
.logo img{
    height:75px;
    width:auto;
    display:block;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

@media(max-width:768px){

header .container{
    flex-direction:column;
}

.logo img{
    height:60px;
    margin-bottom:10px;
}

}

/* Header */

header{
    background:#1f2937;
    color:#fff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header h1{
    color:#ff9800;
    font-size:30px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-weight:bold;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff9800;
}

/* Hero 

.hero{
    height:90vh;
    background:url("images/hero.jpg") center center/cover no-repeat;
    position:relative;
}

.overlay{
    background:rgba(0,0,0,.65);
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.overlay h2{
    font-size:50px;
    margin-bottom:20px;
}

.overlay p{
    font-size:22px;
    max-width:750px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#ff9800;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#e67e22;
    transform:translateY(-3px);
}
*/
/* Hero Banner */

.hero{

    height:100vh;

    background:url("../images/hero-banner.jpg") center center/cover no-repeat;

    position:relative;

}

.hero-overlay{

    width:100%;
    height:100%;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-content{

    width:90%;
    max-width:1200px;

    color:#fff;

}

.hero-content h4{

    color:#ff9800;

    font-size:22px;

    letter-spacing:2px;

}

.hero-content h1{

    font-size:72px;

    margin:20px 0;

}

.hero-content h3{

    font-size:30px;

    margin-bottom:20px;

}

.hero-content p{

    width:600px;

    max-width:100%;

    line-height:1.8;

    margin-bottom:35px;

    font-size:20px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    background:#ff9800;

    color:#fff;

    padding:15px 35px;

    text-decoration:none;

    border-radius:5px;

    font-weight:bold;

    transition:.4s;

}

.btn:hover{

    background:#e67e22;

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;

    color:#1f2937;

}

@media(max-width:768px){

.hero-content{

text-align:center;

}

.hero-content h1{

font-size:42px;

}

.hero-content h3{

font-size:22px;

}

.hero-content p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

}
/* Sections */

section{
    padding:70px 0;
}

section h2{
    text-align:center;
    margin-bottom:35px;
    color:#1f2937;
    font-size:36px;
}

/* About */

.about p{
    text-align:center;
    font-size:18px;
    max-width:900px;
    margin:auto;
}

/* Services */

.services .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.card h3{
    color:#ff9800;
}

/* Why Choose */

.why{
    background:#1f2937;
    color:#fff;
}

.why h2{
    color:#fff;
}

.why ul{
    max-width:700px;
    margin:auto;
    list-style:none;
}

.why li{
    padding:15px;
    font-size:20px;
    border-bottom:1px solid rgba(255,255,255,.2);
}

/* Contact */

.contact{
    text-align:center;
}

.contact p{
    margin:12px 0;
    font-size:20px;
}

/* Footer */

footer{
    background:#111827;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* Responsive */

@media(max-width:768px){

header .container{
    flex-direction:column;
}

nav ul{
    flex-direction:column;
    margin-top:15px;
}

nav ul li{
    margin:10px 0;
}

.overlay h2{
    font-size:34px;
}

.overlay p{
    font-size:18px;
}

section h2{
    font-size:28px;
}

}
/* ===========================
   ABOUT PAGE
=========================== */

/* Banner */

.page-banner{
    background:url("../images/about-banner.jpg") center center/cover no-repeat;
    height:350px;
    position:relative;
}

.page-banner .overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.page-banner h2{
    font-size:48px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:20px;
}

/* About Company */

.about-company{
    padding:80px 0;
    background:#fff;
}

.about-company .container{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.about-content{
    flex:1;
}

.about-content h2{
    color:#ff9800;
    margin-bottom:20px;
    font-size:36px;
}

.about-content p{
    font-size:18px;
    margin-bottom:20px;
    text-align:justify;
}

/* Vision & Mission */

.vision-mission{
    background:#f4f4f4;
    padding:80px 0;
}

.vision-mission .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.vision,
.mission{
    background:#fff;
    padding:35px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.vision:hover,
.mission:hover{
    transform:translateY(-8px);
}

.vision h2,
.mission h2{
    color:#ff9800;
    margin-bottom:20px;
}

/* Core Values */

.core-values{
    padding:80px 0;
}

.core-values h2{
    text-align:center;
    margin-bottom:40px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.value-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.value-card:hover{
    background:#ff9800;
    color:#fff;
    transform:translateY(-8px);
}

.value-card h3{
    margin-bottom:15px;
}

/* Active Menu */

nav ul li a.active{
    color:#ff9800;
}

/* Mobile */

@media(max-width:768px){

.page-banner{
    height:250px;
}

.page-banner h2{
    font-size:32px;
}

.page-banner p{
    font-size:16px;
}

.about-company .container{
    flex-direction:column;
}

.about-content h2{
    font-size:30px;
}

.about-content p{
    font-size:16px;
}

}
/* ==========================
   Services PAGE
========================== */

.why-page{
    padding:80px 0;
    background:#f5f5f5;
}

.why-page h2{
    text-align:center;
    font-size:38px;
    color:#1f2937;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.why-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.why-card h3{
    color:#ff9800;
    padding:20px 20px 10px;
    font-size:24px;
}

.why-card p{
    padding:0 20px 25px;
    line-height:1.8;
    color:#555;
}
.gallery{

padding:80px 0;
background:#f5f5f5;

}

.gallery h2{

text-align:center;
margin-bottom:40px;
font-size:38px;
color:#1f2937;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;

}

.gallery-grid img{

width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
transition:.4s;
box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/* Lightbox */

.lightbox{

display:none;
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
justify-content:center;
align-items:center;
z-index:9999;

}

.lightbox img{

max-width:90%;
max-height:90%;
border-radius:10px;

}

.close{

position:absolute;
top:20px;
right:40px;
font-size:45px;
color:#fff;
cursor:pointer;

}

@media(max-width:768px){

.gallery{

padding:50px 15px;

}

.gallery h2{

font-size:30px;

}

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-grid img{

height:220px;

}

}

/* CTA */

.contact{
    background:#1f2937;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.contact h2{
    color:#fff;
    margin-bottom:15px;
}

.contact p{
    margin-bottom:25px;
}

.contact .btn{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.contact .btn:hover{
    background:#e67e22;
}

nav ul li a.active{
    color:#ff9800;
}

/* Mobile */

@media(max-width:768px){

.page-banner{
    height:250px;
}

.page-banner h2{
    font-size:32px;
}

.page-banner p{
    font-size:16px;
}

.why-page{
    padding:50px 15px;
}

.why-page h2{
    font-size:30px;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-card img{
    height:200px;
}

}
.contact-page{

padding:80px 0;
background:#f5f5f5;

}

.contact-page .container{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}

.contact-info,
.contact-form{

background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.contact-info h2,
.contact-form h2{

color:#ff9800;
margin-bottom:20px;

}

.contact-info p{

margin-bottom:18px;
line-height:1.8;

}

.contact-form input,
.contact-form textarea{

width:100%;
padding:14px;
margin-bottom:18px;
border:1px solid #ccc;
border-radius:5px;
font-size:16px;

}

.contact-form button{

width:100%;
padding:15px;
background:#ff9800;
color:#fff;
border:none;
border-radius:5px;
font-size:18px;
cursor:pointer;
transition:.3s;page

}

.contact-form button:hover{

background:#e67e22;

}

.map iframe{

width:100%;
height:450px;
border:0;

}

@media(max-width:768px){

.contact-page .container{

grid-template-columns:1fr;

}

}
/* About Banner */

.about-banner{

    height:400px;

    background:url("../images/about-banner.jpg") center center/cover no-repeat;

    position:relative;

}

.banner-overlay{

    width:100%;
    height:100%;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.banner-content{

    color:#fff;

    width:90%;

    max-width:900px;

}

.banner-content h1{

    font-size:60px;

    margin-bottom:20px;

    color:#ffffff;

}

.banner-content p{

    font-size:22px;

    line-height:1.8;

}

@media(max-width:768px){

.about-banner{

height:280px;

}

.banner-content h1{

font-size:36px;

}

.banner-content p{

font-size:18px;

}

}

/* Services Banner */

.services-banner{

    height:400px;
    background:url("../images/services-banner.jpg") center center/cover no-repeat;
    position:relative;

}

.banner-overlay{

    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.banner-content{

    color:#fff;
    width:90%;
    max-width:900px;

}

.banner-content h1{

    font-size:60px;
    margin-bottom:20px;
    color:#ffffff;

}

.banner-content p{

    font-size:22px;
    line-height:1.8;

}

@media(max-width:768px){

.services-banner{

    height:280px;

}

.banner-content h1{

    font-size:36px;

}

.banner-content p{

    font-size:18px;

}

}
/* Contact Banner */

.contact-banner{

    height:400px;
    background:url("../images/contact-banner.jpg") center center/cover no-repeat;
    position:relative;

}

.banner-overlay{

    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.banner-content{

    color:#fff;
    width:90%;
    max-width:900px;

}

.banner-content h1{

    font-size:60px;
    margin-bottom:20px;

}

.banner-content p{

    font-size:22px;
    line-height:1.8;

}

@media(max-width:768px){

.contact-banner{

    height:280px;

}

.banner-content h1{

    font-size:36px;

}

.banner-content p{

    font-size:18px;

}

}
/* Get Quote Button */

.quote-btn{

    display:inline-block;
    padding:15px 35px;
    background:#ff9800;
    color:#ffffff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(255,152,0,0.3);

}

.quote-btn:hover{

    background:#e67e22;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.25);

}

.quote-btn:active{

    transform:scale(0.98);

}
/* Gallery Banner */

.gallery-banner{

    height:400px;
    background:url("../images/gallery-banner.jpg") center center/cover no-repeat;
    position:relative;

}

.banner-overlay{

    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.banner-content{

    color:#fff;
    width:90%;
    max-width:900px;

}

.banner-content h1{

    font-size:60px;
    margin-bottom:20px;

}

.banner-content p{

    font-size:22px;
    line-height:1.8;

}

@media(max-width:768px){

.gallery-banner{

    height:280px;

}

.banner-content h1{

    font-size:36px;

}

.banner-content p{

    font-size:18px;

}

}