
.constructions-hero {
  height: 60vh;
  min-height: 420px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.constructions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 1;
}
.hero-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
   font-family: "Georgia", serif;
}
.hero-underline {
  width: 80px;
  height: 3px;
  background-color: #c1121f;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .constructions-hero {
    height: 45vh;
  }

  .hero-title {
    font-size: 28px;
  }
}
.partnership {
  padding: 5px 0; 
  background-image: 
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
    url('/static/images/bgimg2.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
  .partnership-wrapper {
    margin: 0 auto;
    padding: 5px;
    border: 2px solid #c82333;
    border-radius: 10px;
  }

  .partnership-content {
    border: 2px solid #c82333;
    border-radius: 5px;
    text-align: center;
  }
  .partnership-content p {
    font-size: 21px;
    line-height: 27px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000;
       font-family: "Georgia", serif;
  }
.projects-title {
    font-family: Georgia, serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.projects-section {
  max-width:  900px;
 margin: 0 auto;
}
.project-card {
    width: 100%;
  
    background-color: #d8b9be;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.project-content {
    padding-top: 20px;
    text-align: center;
    font-family: Georgia, serif;
}

.project-name {
    color: #b11217;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
}

.project-desc {
    font-size: 18px;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.5;
}

.project-status {
    color: #b11217;
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .project-img {
        height: 230px;
    }
}

@media (max-width: 576px) {
    .project-img {
        height: 200px;
    }

    .project-name {
        font-size: 20px;
    }

    .project-desc {
        font-size: 16px;
    }
}
.cta-section {
  background-color: #b61f38;
  padding: 55px 0;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-text-wrap {
  flex: 1;
  text-align: center;    
  padding-right: 40px;  
}

.cta-text {
  font-family: "Georgia", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0;
}

.cta-btn-wrap {
  padding-left: 20px;
}

.btn-enquiry {
  display: inline-block;
  background: #ffffff;
  color: #b61f38;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-enquiry:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-text-wrap {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .cta-btn-wrap {
    padding-left: 0;
  }

  .cta-text {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-text {
    font-size: 18px;
  }
}

.modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: flex-start;  
    align-items: stretch;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
}
.modal-overlay.active{
    visibility: visible;
    opacity: 1;
}
.modal-box {
    background-color: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);

    width: 100%;
    max-width: 420px;
    padding: 40px 10px;
    position: relative;
    height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.4s ease;
}
@keyframes slideIn{
    from{ transform:translateX(-100%); }
    to{ transform:translateX(0); }
}
.close-btn{
    position:absolute;
    right:20px;
    top:18px;
    font-size:28px;
    cursor:pointer;
    font-weight:bold;
}
.modal-logo img{
    max-height:55px;
}
.modal-title{
    text-align:center;
    margin-bottom:25px;
    font-family: Georgia, serif;
    font-weight:600;
}
.modal-box input,
.modal-box textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    background:#F9FAFB;
    border-radius:4px;
    outline:none;
    font-size:14px;
}
.modal-box textarea{
    height:110px;
    resize:none;
}
.send-btn{
    background:#d81b3a;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}
.send-btn:hover{
    background:#b51630;
}
@media(max-width:576px){
    .modal-box{
        max-width:100%;
    }
}