body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("../images/a-scaled.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* CONTENT */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
  margin-left: 8%;
}

/* SMALL TAG */
.tag {
  color: #c9a65b;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* HEADING */
.hero h1 {
  font-size: 79px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* DESC */
.desc {
  color: #ddd;
  margin-bottom: 25px;
  font-size: 16px;
}

/* BUTTON */
.btn-gold {
    display: inline-block;
    background: #ffffff;          /* normal button color */
    color: #000000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;       /* makes it rounded */
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
}

.btn-gold:hover {
    background: #c9a65b;       /* gold on hover */
    border-color: #c9a65b;
    color: #fff;
}

/* DOTS */
.dots {
  margin-top: 40px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin-right: 8px;
  border-radius: 50%;
}

.dots .active {
  background: #c9a65b;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-content {
    margin-left: 5%;
  }
}

/* Default link color */
.navbar .nav-link {
  color: #ffffff; /* dark text */
  font-weight: 500;
  transition: 0.3s;
  /* padding: 25px 34px; */
}

/* Hover effect */
.navbar .nav-link:hover {
  color: #c9a65b; /* gold */
}

/* Active menu */
.navbar .nav-link.active {
  color: #c9a65b;
  font-weight: 600;
}

/* If navbar is on dark background */
.navbar-dark .nav-link {
  color: #fff;
}

.navbar-dark .nav-link:hover {
  color: #c9a65b;
}


/* LOGO STYLE */
.navbar-brand {
  font-size: 28px;        /* bigger size */
  font-weight: 800;       /* extra bold */
  letter-spacing: 1px;    /* spacing for premium feel */
  color: #ffffff;            /* dark color */
  text-transform: uppercase;
  transition: 0.3s;
}

/* Highlight "Design" part */
.navbar-brand span {
  color: #c9a65b;         /* gold color */
}

/* Hover effect */
.navbar-brand:hover {
  color: #c9a65b;
}

.about-section {
  /* background: #f3f3f3; */
  /* padding: 80px 0; */
}


/* TAG */
.tag {
  color: #c9a65b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TITLE */
.about-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* DESCRIPTION */
.desc {
  color: #555;
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* COUNTER */
.counter-box {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.counter-item h3 {
  font-size: 50px;
  color: #c9a65b;
  font-weight: 700;
}

.counter-item p {
  color: #000000;
  font-weight: 600;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 60px;
  background: #aaa;
}

/* BUTTON */
.btn-dark {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-dark:hover {
  background: #c9a65b;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .about-section h2 {
    font-size: 28px;
  }

  .counter-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .divider {
    display: none;
  }
}



/* SECTION */
.services-section {
  background: #000;
  padding: 80px 0;
  color: #fff;
}

/* TAG */
.services-section .tag {
  color: #c9a65b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TITLE */
.services-section .title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

/* NAME BAR */
.service-name {
  background: #fff;
  color: #000;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width:768px) {
  .services-section .title {
    font-size: 24px;
  }
}



.interior-section {
  background: #ffffff;
}

/* TAG */
.tag {
  color: #c9a65b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TITLE */
.title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* DESC */
.desc {
  color: #555;
  line-height: 1.7;
}

/* BUTTON */
.btn-pill {
  border-radius: 50px;
  padding: 10px 25px;
}

/* ICON BOX */
.icon-box {
  background: #fff;
  border: 1px solid #000000;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.icon-box img {
  width: 90px;
  margin-bottom: 15px;
}

.icon-box h6 {
  font-weight: 600;
}

/* HOVER EFFECT */
.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){
  .title {
    font-size: 26px;
  }
}




.design-section {
  background: #f7f7f7;
}

/* TAG */
.design-section .tag {
  color: #c9a65b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TITLE */
.design-section .title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* DESC */
.design-section .desc {
  color: #555;
  line-height: 1.7;
}

/* BUTTON */
.btn-pill {
  border-radius: 50px;
  padding: 10px 25px;
}

/* IMAGE BOX */
.img-box {
  border-radius: 20px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  transition: 0.4s;
}

/* HOVER EFFECT */
.img-box:hover img {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  .design-section .title {
    font-size: 26px;
  }
}


  .project {
    border-radius: 15px;
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
  }

  .project:hover {
    transform: scale(1.05);
  }




  .footer-links li {
    border-bottom: 1px solid #333;
    padding: 6px 0;
  }

  .footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-links a:hover {
    color: #fff;
  }

  .social-icon {
    background: #c9a86a;
    color: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
  }

  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }




.social-icon {
    width: 45px;
    height: 45px;
    background: #c9a65b;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #fff;
    color: #c9a65b;
    transform: translateY(-3px);
}


        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url("../images/b-scaled.jpg") center/cover no-repeat;
            padding: 100px 20px;
            background-attachment: fixed;
        }

        .cta h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 18px;
            color: #ddd;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* Button */
        .btn-gold {
            display: inline-block;
            background: #ffffff;
            color: #000000;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            border: 1px solid #ffffff;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .btn-gold:hover {
            background: #c9a65b;
            border-color: #c9a65b;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cta h2 {
                font-size: 28px;
            }

            .cta p {
                font-size: 16px;
            }
        }





        .clients-section {
            padding: 80px 0;
            text-align: center;
        }

        .clients-subtitle {
            color: #c9a65b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .clients-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .clients-text {
            color: #555;
            margin-bottom: 50px;
        }

        .client-card {
            background: #fff;
            border: 2px solid #777;
            border-radius: 20px;
            padding: 7px 0px;
            height: 141px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .client-card img {
            max-width: 100%;
            max-height: 90px;
            object-fit: contain;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #000;
            border-radius: 50%;
            padding: 20px;
        }

        @media (max-width: 768px) {
            .clients-title {
                font-size: 30px;
            }

            .client-card {
                margin-bottom: 20px;
            }
        }



/* Navbar default */
.custom-navbar {
  background: transparent;
  transition: all 0.4s ease;
  padding: 4px 0;
}

/* Logo default size */
.logo {
  height: 105px;
  transition: all 0.4s ease;
}

/* On scroll */
.custom-navbar.scrolled {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  padding: 10px 0;
}

/* Logo shrink smoothly */
.custom-navbar.scrolled .logo {
  height: 60px;
}

/* Mobile Navbar Fix */
@media (max-width: 991px) {

  .custom-navbar {
    padding: 10px 0;
  }

  /* Logo size */
  .logo {
    max-height: 45px;
  }

  /* Toggle button fix */
  .navbar-toggler {
    border: none;
    outline: none;
  }

  /* Menu box */
  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 10px;
  }

  /* Menu items */
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    color: #000;
    padding: 10px;
    display: block;
  }

  /* Active link */
  .navbar-nav .nav-link.active {
    color: #c59d5f;
  }

  /* Button below menu */
  .btn-gold {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

}





/* =========================
   INNER PAGE HEADER
========================= */

.inner-page-header {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.inner-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Content */
.inner-page-header .container {
  position: relative;
  z-index: 2;
}

/* Title */
.inner-page-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* =========================
   OPTIONAL BREADCRUMB
========================= */

.inner-page-header .breadcrumb {
  justify-content: center;
  margin-top: 10px;
}

.inner-page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.inner-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {
  .inner-page-header {
    height: 220px;
  }

  .inner-page-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .inner-page-header {
    height: 180px;
  }

  .inner-page-title {
    font-size: 24px;
  }
}