.house .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .house .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.house .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .house .our-story {
    padding-right: 35%;
  }
}

.house .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.house .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.house .our-story p:last-child {
  margin-bottom: 0;
}

.house ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.house ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.house ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.house .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.house .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.house .watch-video:hover a {
  color: var(--accent-color);
}

.house .house-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .house .house-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.house .house-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}





/*division2*/
.division2{
  position: relative;
  height: 650px;
  color: white;
  
}
.division2 img{
  width: 100%;
  object-fit: cover;
  height: 650px;
  filter: brightness(0.5);
}
.division2 span{
  font-size: 25px;
}

  
.d2Con{
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  
  position: absolute;
  top: 100px;
  left: 50px;

  
}
.d2p{
  margin: 15px 0 15px 0;
  font-size: 15px;
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 20px;
}
.d2Con h1{
  
  width: 500px;
  padding-bottom: 15px;
  border-bottom: 2px solid white;
  font-size: 45px;
  /* font-style: italic;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}
.division2 button {
  padding: 0.8em 1.8em;
  border: 2px solid #ffffff;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  transition: .3s;
  z-index: 1;
  font-family: inherit;
  color: #ffffff;
 }
 
 .division2 button::before {
  content: '';
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) ;
  background: #cac9c9;
  transition: .5s ease;
  display: block;
  z-index: -1;
 }
 
 .division2 button:hover::before {
  width: 105%;
 }
 
 .division2 button:hover {
  color: #111;
 }   



.cd2conh1{
  font-size: 50px;
  text-align: center;
  margin-bottom: 10px;
  background-image: linear-gradient(to right, #2ad7e0, #00c5fd, #00abff, #6d86ff, #c549d9);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.division3{
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.division3 h2{
  text-align: center;
  font-size: 20px;
  margin: 10px 0;
  color: orange;
}
.division3 p{
  text-align: center;
  max-width: 800px;
}

/* Container Styling */
.about-section {
  padding: 50px 0;
}

/* Image Styling */
.about-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Text Styling */
.about-section h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-section h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-section p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
}
.accordion-header{
  background-color: #333;
  color: #fff;
}

/* Accordion Styling */
.accordion-button {
  background-color: #333;
  color: #fff;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: #007bff;
  color: #fff;
}

.accordion-body {
  background-color: #333;
  color: #ccd8e3;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-section h1 {
      font-size: 2rem;
  }

  .about-section h3 {
      font-size: 1.2rem;
  }

  .accordion-button {
      font-size: 0.9rem;
  }

  .accordion-body {
      font-size: 0.9rem;
  }
}
.about-section{
  background-color: #333;
}

/* Card Styling */
.team-card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  border-radius: 10px;
}

/* Team Image Styling */
.team-img {
  border-radius: 10px 10px 0 0;
  height: 400px;
  object-fit: cover;
}

/* Hover Effect */
.team-card:hover {
  transform: translateY(-10px);
}

/* Card Text Styling */
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: 700;
}
.features p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
}
.features li {
  font-size: 1rem;
  color: #e8e8e8;
  margin-bottom: 30px;
}
.shifting1{
  padding: 20px;
}
.shifting2{
  background-color: #333;
}
.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.constructions .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}



.services .service-item h1 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item h2 {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}



.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}
