* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root {
    --background: #0F172A;
    --Primary: #111111;
    --Accent: #D4AF37;
    --Secondary: #E5E5E5;
    --text:#F5F5F5;
}


body {
    background-color: var(--background);
    margin: 0;
    padding: 0;
    font-family: 'poppins' ;
}

.logo {
float: left;
display:flex;
align-items:center;
gap:12px;
}

h1 {
text-align:center;
}

h2 {
    color: var(--Secondary);
}

section {
    padding: 50px 30px;
}

.navbar {
display: flex;
align-items: center;
justify-content: space-between;
background-color: var(--Primary);
color: var(--Secondary);
height: 80px;
padding: 10px 30px;
}

ul {
display: flex;
gap: 40px;
list-style: none;
margin: 0;
padding: 0;
}

ul li a {
display: block;
color: white;
text-decoration: none;
padding: 10px 20px;
font-size: 20px;
}

ul li a:hover {

color: var(--Accent);
transition:0.9s;
transform: scale(1.05);
font-weight: 500;
}

.hero {
    background-image: url(images/hero.jpg);
    background-attachment: fixed;
    background-position: center;
    position: relative;
    background-repeat: repeat;
    padding-top: 20px;
    text-align: center;
    height: 80vh;
    
}

.hero h2 {
    font-size: 30px;
    color: var(--text);
}

p {
    color: var(--text);
    font-weight: 400;
    font-size: 18px;
}

#btn {
    background-color: var(--Accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

#btn:hover {
    transition-duration: 0.3s;
    color: var(--Primary);
    transform: scale(1.05);
}


#bn:hover {
    background-color: var(--Accent);
    transition-duration: 0.3s;
    color: var(--Primary);
    transform: scale(1.05);
}

#bn {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.bt {
    margin-left: 10px;
    background-color: white;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
pointer-events:none;
}

.hero-content{
position:relative;
z-index:2;
}


.project-card{
width:300px;
background:#1a1a1a;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
margin:20px;
color: var(--Secondary);
}

.project-card:hover {
    transform: translateY(-16px);
}

.project-card img{
width:100%;
border-radius:8px;
}



#products{
    background-color: var(--Primary);
    padding-top: 10px; 
    padding-bottom:10px;
    color: var(--text);
    
}

.pro{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

#category .project-card {
width:300px;
background:#1a1a1a;
color:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
margin:20px;
}

#category {
    background-color: var(--Primary);
}

.project-card a{
    text-decoration: none;
}

.reviews{
padding:60px 40px;
background:var(--background);
text-align:center;
}

.reviews h2{
color:#D4AF37;
margin-bottom:40px;
}

.review-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.review-card{
background:#1a1a1a;
padding:25px;
border-radius:10px;
width:280px;
color:white;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:0.3s;
}

.review-card:hover{
transform:translateY(-10px);
}

.review-card span{
color:#D4AF37;
font-weight:bold;
}

.contact{
padding:80px 20px;
text-align:center;
background:var(--Secondary);
}

.contact h3, .contact h2 {
    color: var(--Primary);
}
.contact-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
margin-top:30px;
}

.contact p{
    color: var(--background);
}

.footer{
background:#111;
color:white;
text-align:center;
padding:20px 10px;

}

.footer h3{
color:#D4AF37;
margin-bottom:5px;
}

.footer-links{
margin:10px 0;
}

.footer p{
font-size:16px;
}

@media (max-width:768px){
.navbar{
flex-direction:column;
height:auto;
}

ul{
flex-direction:column;
gap:10px;
}

.project-card{
width:90%;
}
}