*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#0f0f0f;
color:white;
line-height:1.6;
}

/* ================= HERO ================= */
.hero{
height:100vh;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
border-top: solid 0.5px #c9a86a;
border-bottom: solid 0.5px #c9a86a;
border-radius: 10px;
}



.hero video{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.logo{
position:absolute;
top:20px;
width:240px;
z-index:2;
}

.hero-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.hero h1{
font-size:clamp(75px, 4vw, 200px);
direction: rtl;
}

.hero p{
font-size:clamp(25px, 1vw, 100px);
margin-top:10px;
direction: rtl;
}

.line{
width:120px;
height:2px;
background:#c9a86a;
margin:15px auto;
}

.btn{
display:inline-block;
margin-top:20px;
padding:10px 20px;
background:#c9a86a;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:5px;
direction: rtl;
font-weight: bold;
font-size: 25px;
}

.btn2{
display:inline-block;
margin-top:20px;
padding:10px 20px;
background:green;
color:#c9a86a;
text-decoration:none;
font-weight:bold;
border-radius:5px;
direction: rtl;
transition: all 0.7s ease-out;
}

.btn2:hover
{
    border-radius: 10px;
    font-weight: bolder;
    color: #c9a86a;
    background-color: navy;
   
}

/* ================= SECTIONS ================= */
.section{
padding:80px 20px;
background-color: black;
border-top: solid 0.5px #c9a86a;
border-radius: 10px;
}

.container{
max-width:1100px;
margin:auto;
}

/* ================= ABOUT ================= */


.section_about{
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.about-grid{
   display:flex;
    justify-content:center;
    align-items:center;
    min-height:500px;

    position:relative;
    z-index:2;

}




.text h2{
font-size:48px;
margin-bottom:15px;
color: #c9a86a;
text-align: center;
direction: rtl;

}
.text p{

font-size:18px;
margin-bottom:15px;
color: #c9a86a;
text-align: center;
direction: rtl;
z-index: 1;
}

#text_about{
     position:relative;
    z-index:2;

    max-width:900px;

    background:rgba(15,15,15,.85);

    padding:40px;
    border-radius:16px;

    backdrop-filter:blur(5px);
    direction: rtl;
}

#text_about h2{
    font-size:clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom:20px;
}

#text_about p{
    font-size:clamp(1.1rem, 2vw, 1.6rem);
}


.warp-lines{
    position:absolute;
    inset:0;
    z-index: 0;
}

.Star_line{
    position:absolute;
    left:-200px;
    width:120px;
    height:4px;
    background:linear-gradient(
        90deg,
        transparent,
        #c9a86a,
        white
    );
    border-radius:50px;
    animation: warp 4s linear infinite;
}

@keyframes warp{
    from{
        transform:translateX(-200px) scaleX(.5);
        opacity:0;
    }

    15%{
        opacity:1;
    }

    to{
        transform:translateX(calc(100vw + 300px)) scaleX(3);
        opacity:0;
    }
}
.Star_line:nth-child(1){
    top:10%;
    animation-delay:0s;
}

.Star_line:nth-child(2){
    top:15%;
    animation-delay:.5s;
}

.Star_line:nth-child(3){
    top:20%;
    animation-delay:1s;
}

.Star_line:nth-child(4){
    top:70%;
    animation-delay:1.5s;
}

.Star_line:nth-child(5){
    top:75%;
    animation-delay:2s;
}

.Star_line:nth-child(6){
    top:80%;
    animation-delay:2.5s;
};
    


/* ================= SHOWROOM ================= */
.center{
text-align:center;
}
#Service_Header{
    
    text-align: center;
}

.showroom h2
{
color: #c9a86a;
font-size: 48px;


}

#Purchase_Header
{
    font-size: 25px;
}
#Spare_Header
{
    font-size: 25px;
}

.Services
{
   display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:200px;
    max-width: 1400px;
    margin: 40px auto 0;
}

.Purchase, .Spare_Parts {
    background: #151515;
    border: 1px solid #c9a86a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.Purchase:hover,
.Spare_Parts:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 168, 106, 0.2);
}

.Purchase p,
.Spare_Parts p {
    color: #c9a86a;
    font-size: 18px;
}

/* ================= CONTACT ================= */

.section_contact{
    background-color:black;
    padding:60px 40px;
    border-radius: 5px;
    backdrop-filter: blur(1000px);
    border-top: solid 0.5px #c9a86a;
    border-bottom: solid 0.5px #c9a86a;
}

/* Main Layout */
.Contact_Container{
    width:100%;
    max-width:1800px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:60px;
}





/* Left Side */
.text2{
   justify-self:start;
    color:white;
    text-align:center; 
}

.text2 h2{
    margin-bottom:20px;
    font-size:40px;
    color: #c9a86a;
}

.text2 p{
    margin-bottom:10px;
    font-size:18px;
    color: #c9a86a;
}

/* Center Logo */
.Logo-Middle{
    display:flex;
    justify-content:center;
    align-items:center;

}

.Logo-Middle img{
    width:400px;
    max-width:100%;
}

/* Right Side */
.map{
    justify-self:end;
    width:100%;
}

.map iframe{
    width:100%;
    height:400px;
    border:0;
    border-radius:12px;
}

/* WhatsApp Button */
.btn2{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:green;
    color:white;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
    transition: all 1s;
}

.btn2:hover{
    background:navy;
    border-radius:6px;
}



.text2{
   
     font-weight: bolder;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}



.map{
  
  
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}




.copyright{
    text-align:center;
    margin-top:50px;

    font-size:13px;
    color:#c9a86a;
    letter-spacing:1px;
}
/* ================= TABLET ================= */
@media (max-width: 900px)
{
    .Contact_Container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .text2{
        justify-self:center;
    }

    .Logo-Middle{
        order:1;
    }

    .text2{
        order:2;
    }

    .map{
        order:3;
        justify-self:center;
        width:100%;
    }

    .map iframe{
       
    width:100%;
    height:400px;
    border:0;
    border-radius:12px;
   


    }
.logo{
width:220px;
}

.section{
padding:60px 15px;
}


.hero h1{
font-size:75px
}

.hero p{
font-size:25px
}

.btn{
padding:8px 16px;
font-weight: bold;
font-size: 25px;
}

.text h2{
font-size:22px;
}

.Logo-Middle img{
    width:300px;
    max-width:100%;
}

.Services
{
   
    gap:45px;
    max-width: 1400px;
    margin: 40px auto 0;
}

}



/* ================= PHONE ================= */
@media (max-width: 500px)
{
     .section_contact{
        padding:40px 20px;
    }

    .logo{
        width:220px;
    }

    .text2 h2{
        font-size:28px;
    }

    .text2 p{
        font-size:16px;
    }

    .map iframe{
 
  width:100%;
    height:400px;
    border:0;
    border-radius:12px;


    }

.hero h1{
font-size:75px
}

.hero p{
font-size:25px
}

.btn{
padding:8px 16px;
font-weight: bold;
font-size: 25px;
}

.text h2{
font-size:22px;
}
.Logo-Middle img{
    width:300px;
    max-width:100%;
}
.Services
{
   
    gap:45px;
    max-width: 1400px;
    margin: 40px auto 0;
}
}
