* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


body {

    font-family: Arial, Helvetica, sans-serif;

}


/* Navbar */

nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #111;
   padding: 20px 80px;
}


.logo {

    text-align: center;

}


.logo h2 {

    color: white;

    font-size: 36px;

}


.logo span {

    color: #d4a017;

}


.logo p {

    color: #d4a017;

    font-size: 14px;

}


nav ul {

    display: flex;

    list-style: none;

    gap: 35px;

}


nav ul li a{

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

    font-size: 18px;

}

nav ul li a:hover,

nav ul li a.active{

    color:#D4A63E;

}

.btn {

    background: #d4a017;

    color: white;

    padding: 12px 35px;

    text-decoration: none;

    border-radius: 6px;

    border-radius: 6px;

     transition:.4s;

}



.btn:hover{

    background:#111;

}

.contact-btn{
    text-decoration:none;
    padding:12px 35px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
}

.contact-btn:hover{

    background:#111;

}



/* ===========================

   Hero

=========================== */

.hero{

    height:50vh;

    background:url(images/hero2.png) center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    margin: 40px 0;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.hero-text{

    position:relative;

    z-index:2;

    color:white;

}

.hero-text span{

    color:#D4A63E;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}

.hero-text h1{

    font-size:55px;

    margin:10px 0;

}

.hero-text p{

    

    color:#ddd;

    line-height:1.8;

    text-align:center;

}

/* ===========================

   Services

=========================== */
.service{

    width:80%;

    margin:100px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:55px;

    align-items:center;

    scroll-margin-top: 100px;

}

.reverse{

    direction:rtl;

}

.reverse .content{

    direction:ltr;

}

.light-bg{
   background-color:#f0e8d3;
   padding:50px;
   border-radius:20px;
}

.image img{

    width:100%;

    height : 340px;

    border-radius:14px;

    display:block;

    

    box-shadow:0 16px 32px rgba(0,0,0,.15);

    transition:.4s;

}

.image img:hover{

    transform:scale(1.03);

}

.content h5{

    color:#D4a017;

    font-size:15px;

    margin-bottom:12px;

}

.content h2{

    font-size:34px;

    margin-bottom:16px;

}

.content p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

    font-size:15px;

}

.content ul{

    list-style:none;

}

.content ul li{

    margin:11px 0;

    color:#333;

    font-size:15px;

}

.content i{

    color:#D4A63E;

    margin-right:8px;

}
 
.view-projects {

    color: #D4A017;

    text-decoration: none;

    cursor: pointer;

    font-weight: 500;

    transition: .3s;

}

.view-projects:hover {

    color: #111;

}
 



/* ===========================

   Why Choose Us

=========================== */

.why {
    background: #111;
    color: white;
    padding: 20px 40px 15px;
    text-align: center;
}

.why h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #D4A63E;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.card {
    background: #1d1d1d;
    padding: 15px 10px;
    border-radius: 10px;
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 28px;
    color: #D4A63E;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.card p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
}
/* ===========================

   CTA

=========================== */

.cta{

    padding:70px 20px;

    text-align:center;

    background:white;

}

.cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.cta p{

    color:#666;

    margin-bottom:35px;

}

.cta a{

    display:inline-block;

    text-decoration:none;

    background:#d4a017;

    color:white;

    padding:16px 40px;

    border-radius:8px;

    transition:.3s;

}

.cta a:hover{

    background:#111;

}

/* ================= MOBILE NAVBAR ================= */

.menu-btn{

    display:none;

}

@media(max-width:768px){

nav{

    padding:15px 20px;

    position:fixed;

}

.menu-btn{

    display:block;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

nav{

    display:grid;

    grid-template-columns:40px 1fr 40px;

    align-items:center;

}

.logo{

    justify-self:center;

    text-align:center;

}

.logo h2{

    font-size:28px;

}

.logo p{

    font-size:11px;

}

.call-btn{

    width:40px;

    height:40px;

    padding:0;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:0;

}

.call-btn::before{

    content:"\f095";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    font-size:16px;

}

.contact-btn{
    text-decoration:none;
    padding:10px 15px;
    background:#d4a017;
    color:white;
    border-radius:5px;
     transition:.4s;
     font-size: 15px;
     
     
}

.contact-btn:hover{

    background:#111;

}

.nav-links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#111;

    display:none;

    flex-direction:column;

    text-align:center;

    padding:25px 0;

    gap:20px;

}

.nav-links.active{

    display:flex;

}

/* ================= HERO MOBILE ================= */



.hero{

    height:35vh;

    padding:0 20px;

    text-align: center;

}

.hero-content{
   

    max-width:100%;

}

.hero span{

    display:block;

    margin-bottom:10px;

}

.hero h4{

    

    

    font-size:11px;

}

.hero h1{

    font-size:28px;

    line-height:1;

   

}

.hero p{
    display:none;

    font-size:12px;

    margin-bottom:0px;


}
/* ===========================

   MOBILE SERVICES STYLE

=========================== */

.service{

    width:92%;

    margin:25px auto;

    display:flex ;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:15px;

    padding:15px;

    border-radius:18px;

    background:white;

}


.reverse{

    direction:rtl;

}

.reverse .content{

    direction:ltr;

}


.light-bg{

    background:#f0e8d3;

}


/* Image */

.image{

    width:38%;

    flex-shrink:0;

}


.image img{

    width:100%;

    height:120px;

    object-fit:cover;

    border-radius:12px;

}


/* Content */

.content{

    width:62%;

}


.content h5{

    color:#D4A63E;

    font-size:14px;

    margin-bottom:8px;

}


.content h2{

    font-size:20px;

    margin-bottom:8px;

}


.content p{

    font-size:12px;

    line-height:1.5;

    color:#666;

    margin-bottom:8px;

}


.content ul{

    display:none;

}


.view-projects{

    font-size:11.4px;
    color:#D4A63E;

    text-decoration:none;

    font-weight:600;

}
 
/* ===========================
  CTA
=========================== */
.cta{
   padding:40px 15px;
   text-align:center;
}

.cta h2{
   font-size:20px;
}

.cta p{
   font-size:13.5px;
   color:#666;
}



/* ===========================
  WHY CHOOSE US CARDS
=========================== */
.why{
   background:#000000;
   padding:24px 10px;
   text-align:center;
}

.why h2{
   color:#D4A63E;
   font-size:19px;
   margin-bottom:25px;
}

.cards{
   display:grid;
   grid-template-columns:repeat(2,1fr);
   gap:10px;
}

.card{
   background:#1d1d1d;
   padding:18px 10px;
   border-radius:15px;
   text-align:center;
}

.card i{
   font-size:25px;
   color:#D4A63E;
   margin-bottom:12px;
}

.card h3{
   color:white;
   font-size:13px;
   margin-bottom:8px;
}

.card p{
   color:#aaa;
   font-size:11.5px;
   line-height:1.5;
}


}
 
 
 