/* ===========================
   Reset & Global Styles
=========================== */
:root{
  --primary:#181818;
  --secondary:#e5aa70;
  --bg:#f5f5f5;
  --radius:14px;
  --transition:.35s cubic-bezier(.4,0,.2,1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Mulish", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fdfdfd;
}

html,
body {
    overflow-x: hidden;
}


/* Headings */

h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
    color: #181818;
}

h1 span,
h2 span {
    color: #e5aa70;
}


/* Paragraphs & Links */

p {
    font-size: 1rem;
    color: #555;
}

.text-color {
    color: #f1f1f1;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Buttons */

.btn {
    padding: 14px 30px;
    border: 2px solid #e5aa70;
    background: #e5aa70;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: #e5aa70;
    transform: scale(1.05);
}


/* ===========================
   Navbar
=========================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: transparent;
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: #181818;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.navbar .logo img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

.navbar .logo img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.navbar-items ul {
    display: flex;
    list-style: none;
    gap: 25px;
    box-sizing: border-box;
}

.navbar-items ul li {
    margin-left: 25px;
}

.navbar-items ul li a {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-items ul li a.active,
.navbar-items ul li a:hover {
    color: #e5aa70;
    background: rgba(255, 255, 255, 0.05);
}

.burger {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* ===========================
   Hero Section
=========================== */

.homepg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../assets/interior.jpg") center/cover no-repeat;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hero-call {
    font-size: 1.4rem;
    color: #e5aa70;
    margin-bottom: 15px;
}

.hero-call a {
    color: #e5aa70;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-call a:hover {
    color: #fff;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    font-weight: 600;
}

.trust-badges div {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.trust-badges i {
    margin-right: 6px;
    color: #e5aa70;
}


/* Hero Image */

.homepg,
.hero-img img {
    max-width: 100%;
}

.hero-img {
    display: none;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-img img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
    .hero-img {
        display: block;
        max-width: 45%;
    }
    .hero-img img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
        transform: scale(1);
        transition: transform 0.5s ease;
    }
    .hero-img img:hover {
        transform: scale(1.05);
    }
}


/* ===========================
   Sections General
=========================== */

section {
    scroll-margin-top: 90px;
}

.sec {
    padding: 6% 3%;
}


/* ===========================
   About Section
=========================== */

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-text ul {
    margin-top: 15px;
    list-style: none;
}

.about-text ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.about-text ul li i {
    color: #e5aa70;
    margin-right: 10px;
}


/* ===========================
   Services Section
=========================== */

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.boxes {
    flex: 1 1 300px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boxes:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.boxes img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}


/* ===========================
   Projects Section
=========================== */

/*.projects-sec {*/
/*    background: #f9f9f9;*/
/*    padding: 6% 3%;*/
/*}*/

/*.project-container {*/
/*    display: flex;*/
/*    overflow: hidden;*/
/*    gap: 20px;*/
/*    scroll-behavior: smooth;*/
/*}*/

/*.project-card {*/
/*    flex: 0 0 300px;*/
/*    position: relative;*/
/*    border-radius: 15px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*    cursor: pointer;*/
/*}*/

/*.project-card img {*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    object-fit: cover;*/
/*    transition: transform 0.5s ease;*/
/*}*/

/*.project-card:hover img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.project-card:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);*/
/*}*/


/* overlay info  */

/*.projects-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*    gap: 20px;*/
/*    margin-top: 30px;*/
/*}*/

/*.project-overlay {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    padding: 15px;*/
/*    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);*/
/*    color: #fff;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

/*.project-card :hover .project-overlay {*/
/*    opacity: 1;*/
/*}*/

/*.project-info {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    padding: 15px;*/
/*    background: linear-gradient(to top, rgba(24, 24, 24, 0.9), rgba(24, 24, 24, 0.9));*/
/*    color: #fff;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

/*.project-card:hover .project-info {*/
/*    opacity: 1;*/
/*}*/

/*.project-info h3 {*/
/*    margin-bottom: 5px;*/
/*    font-size: 1.2rem;*/
/*}*/

/*.project-info p {*/
/*    font-size: 0.9rem;*/
/*}*/


/* Controls */

/*.project-controls {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    margin-top: 15px;*/
/*    gap: 10px;*/
/*}*/

/*.project-controls button {*/
/*    background: #e5aa70;*/
/*    border: none;*/
/*    padding: 8px 15px;*/
/*    border-radius: 50px;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.project-controls button:hover {*/
/*    background: #181818;*/
/*    color: #e5aa7e;*/
/*}*/


/* Pagination Dots */

/*.pagination {*/
/*    display: flex;*/
/*    gap: 5px;*/
/*}*/

/*.pagination div {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    background: #ccc;*/
/*    border-radius: 50%;*/
/*    transition: background 0.3s ease;*/
/*}*/

/*.pagination div.active {*/
/*    background: #e5aa70;*/
/*}*/


/* Responsive */

/*@media (max-width: 1024px) {*/
/*    .project-container {*/
/*        flex-wrap: nowrap;*/
/*        overflow-x: scroll;*/
/*        -webkit-overflow-scrolling: touch;*/
/*    }*/
/*    .project-card {*/
/*        flex: 0 0 250px;*/
/*    }*/
/*    @media (max-width: 600px) {*/
/*        .project-card {*/
/*            flex: 0 0 90%;*/
/*            margin: 0 auto;*/
/*        }*/
/*    }*/
/*}*/


/* part of projects */

/*.project-hero {*/
/*    padding: 8% 5%;*/
/*    text-align: center;*/
/*    background: #111;*/
/*    color: white;*/
/*}*/

/*.project-gallery {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*    gap: 15px;*/
/*    padding: 5%;*/
/*}*/

/*.project-gallery img {*/
/*    width: 100%;*/
/*    height: 300px;*/
/*    object-fit: cover;*/
/*    border-radius: 10px;*/
/*}*/

/*.project-info {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 40px;*/
/*    padding: 5%;*/
/*}*/

/*.project-description,*/
/*.project-details {*/
/*    flex: 1;*/
/*    min-width: 280px;*/
/*}*/

/*.project-cta {*/
/*    text-align: center;*/
/*    padding: 6%;*/
/*    background: #f3f3f3;*/
/*}*/

/*.cta-btn {*/
/*    padding: 12px 25px;*/
/*    background: #e5aa70;*/
/*    color: #000;*/
/*    text-decoration: none;*/
/*    border-radius: 5px;*/
/*}*/





/* ===========================
   Projects Section
=========================== */



/* Filters */
.filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}
.filters select{
  padding:8px 12px;
  border-radius:6px;
}

/* Grid */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
  max-width:1400px;
  margin: auto;
  padding:0 15px 40px;
  
}

.project-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  display:flex;
  flex-direction:column;
  transition:var(--transition);
}
.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}
.project-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.project-content{
  padding:15px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.project-title{
  font-weight:bold;
  margin-bottom:8px;
}
.project-short{
  font-size:14px;
  flex:1;
}
.project-link{
  border:none;
  background:none;
  color:var(--secondary);
  font-weight:bold;
  cursor:pointer;
  padding:0;
}

/* Popup */
.project-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
  padding:15px;
  z-index:999;
}
.project-popup.active{
  opacity:1;
  visibility:visible;
}

.popup-content{
  background:#fff;
  width:100%;
  max-width:950px;
  max-height:85vh;
  overflow:auto;
  border-radius:var(--radius);
  padding:15px;
  transform:scale(.9);
  transition:var(--transition);
  position:relative;
}
.project-popup.active .popup-content{
  transform:scale(1);
}

.popup-close{
  position:absolute;
  right:15px;
  top:12px;
  font-size:24px;
  cursor:pointer;
}

/* Slider */
.popup-slider{
  position:relative;
  overflow:hidden;
  margin-bottom:15px;
}
.slider-track{
  display:flex;
  transition:transform .4s ease;
}
.popup-slide{
  min-width:100%;
}
.popup-slide img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:10px;
}

.slider-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:26px;
  background:rgba(0,0,0,.5);
  color:#fff;
  border:none;
  padding:6px 12px;
  cursor:pointer;
  border-radius:6px;
}
.slider-prev{left:10px;}
.slider-next{right:10px;}

.video-wrapper{
  width:100%;
  aspect-ratio:16/9;
  margin-bottom:15px;
  border-radius:10px;
  overflow:hidden;
}
.video-wrapper video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Mobile */
@media(max-width:768px){
  .popup-slide img{height:220px;}
}


/* Responsive */

@media (max-width: 1024px) {
    .project-container {
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .project-card {
        flex: 0 0 250px;
    }
    @media (max-width: 600px) {
        .project-card {
            flex: 0 0 90%;
            margin: 0 auto;
        }
    }
}


/* part of projects */

.project-hero {
    padding: 8% 5%;
    text-align: center;
    background: #111;
    color: white;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 5%;
}

.project-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.project-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 5%;
}

.project-description,
.project-details {
    flex: 1;
    min-width: 280px;
}

.project-cta {
    text-align: center;
    padding: 6%;
    background: #f3f3f3;
}

.cta-btn {
    padding: 12px 25px;
    background: #e5aa70;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}
/* ===========================
   Contact Section
=========================== */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-form {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form button {
    background: #e5aa70;
    border: none;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #181818;
    color: #e5aa70;
}

.contact-info {
    flex: 1 1 300px;
    background: #181818;
    color: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* ===========================
   Footer Section
=========================== */

footer {
    background: #313030;
    color: #fff;
    padding: 2rem 3%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-box h3 {
    color: #e5aa70;
    margin-bottom: 1rem;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-socials i {
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-socials i:hover {
    color: #e5aa70;
    transform: translateY(-5px);
}

.footer-socials .fa-facebook-f:hover {
    color: blue;
}

.footer-socials .fa-instagram:hover {
    color: red;
}

.footer-socials .fa-whatsapp:hover {
    color: lawngreen;
}

.footer-socials .fa-youtube:hover {
    color: red;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}


/* ===========================
   Responsive
=========================== */

@media (max-width: 980px) {
    .navbar-items ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #181818;
        padding-top: 5rem;
        gap: 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 950;
    }
    .navbar-items.open ul {
        right: 0;
    }
    .burger {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }
    .about-container,
    .service-boxes,
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .homepg {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem 3%;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-img {
        display: none;
    }
}