* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
}

/* Header  */

.navbar-fix-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  flex: 1;
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100% - 56px);
}

.navbar .logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.navbar .brand-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.navbar-toggler-icon {
  display: none;
}

.navbar-toggler {
  width: 40px;
  height: 35px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
}

.navbar-toggler span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  transform-origin: left center;
}

.navbar-toggler.collapsed span:nth-child(1) {
  transform: rotate(0deg) translate(0, 0);
}

.navbar-toggler.collapsed span:nth-child(2) {
  opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(3) {
  transform: rotate(0deg) translate(0, 0);
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-toggler:hover span {
  background-color: #ff9800;
}

.navbar-nav .nav-link,
.navbar-nav .contact-btn {
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

#navbarNav {
  justify-content: end;
}

.contact-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  margin-left: 0;
  font-weight: 500;
  color: #fff !important;
  background: linear-gradient(90deg, rgb(255, 136, 0), rgb(255, 180, 0));
  border: none;
  border-radius: 6px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, rgb(255, 180, 0), rgb(255, 136, 0));
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.35);
}

/* Desing and Build Section  */

.design-build-sec {
  background-color: #fdf5e6;
}

.design-build-con {
  max-width: 500px;
}

.design-build-con h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

.design-build-con h5:nth-child(1) {
  color: rgb(255, 136, 0);
  font-size: small;
}

.design-build-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.design-build-btn {
  position: relative;
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, rgb(255, 136, 0), #ff9f3f);
  background-size: 200% auto;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

.design-build-btn:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(255, 136, 0, 0.45);
}

.design-build-btn:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: 0 3px 8px rgba(255, 136, 0, 0.3);
}

.design-build-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.6s;
}

.design-build-btn:hover::after {
  left: 125%;
}

.design-items-flex {
  justify-content: flex-start;
}

.eighteen-plus {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.eighteen-plus h4:nth-child(1) {
  color: rgb(255, 136, 0);
  font-size: medium;
}

.eighteen-plus h5 {
  font-size: small;
}

.construction-img {
  width: 100%;
  padding: 1rem 0rem;
}

/* Services Section  */

.services-head h5 {
  color: rgb(255, 136, 0);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dreams-head h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-services {
  padding: 1.25rem;
  background-color: #f0f1f1;
}

.card-services h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.services-section .card img {
  height: 120px;
  object-fit: cover;
}

.services-section .card-services h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.services-section .card-services ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.service-list {
  padding-left: 1rem;
}

.service-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: orange;
  font-size: 1.2rem;
  line-height: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

#cardCarousel .carousel-control-prev {
  left: -10px;
}

#cardCarousel .carousel-control-next {
  right: -10px;
}

#cardCarousel .carousel-control-prev,
#cardCarousel .carousel-control-next {
  top: 34%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}

#cardCarousel .carousel-control-prev-icon,
#cardCarousel .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
}

/* About us Section  */

.about-us {
  background-color: #fdf5e6;
}

.about-us-con h4 {
  color: rgb(255, 136, 0);
  font-weight: 700;
}

.about-us-con h3 {
  font-weight: 700;
}

.about-us-con p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-us-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Blog Section  */

.blog-head {
  color: rgb(255, 136, 0);
}

.card-title {
  color: rgb(255, 136, 0) !important;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

.card img {
  height: 200px;
  object-fit: cover;
}

#blogCarousel {
  position: relative;
  min-height: 500px;
}

#blogCarousel .carousel-control-prev,
#blogCarousel .carousel-control-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: auto;
  z-index: 10;
}

#blogCarousel .carousel-control-prev {
  left: -15px;
}

#blogCarousel .carousel-control-next {
  right: -15px;
}

#blogCarousel .carousel-control-prev-icon,
#blogCarousel .carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-body .btn {
  width: fit-content;
  margin-top: auto;
}

/* Form Section  */
.contact-form-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 50px;
  background-color: #e8e9ea;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-head {
  color: #ff8c00;
}

.form-subtitle {
  color: #000;
  font-size: 1.4rem;
  white-space: normal;
  line-height: 1.5;
}

.form-label {
  font-weight: 500;
  color: #495057;
}

.form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  outline: none;
}

.btn-premium {
  background: linear-gradient(135deg, #ffc107, #ff8c00);
  color: #fff !important;
  font-weight: bold;
  min-width: 200px;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.btn-premium:hover {
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}

/* Footer Section  */

.footer {
  background-color: #fdf5e6;
  padding: 38px 20px 0px 20px;
}

.footer-heading {
  font-weight: bold;
  color: #495057;
  margin-bottom: 15px;
}

.footer-link {
  display: block;
  color: #6c757d;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #ffc107;
}

.social-icons {
  gap: 15px;
}

.social-icons a {
  color: #495057;
  font-size: 1.5rem;
  transition: color 0.2s ease-in-out;
}

.social-icons a:hover {
  color: #ffc107;
}