@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow);
body {
  margin: 0;
}




.sectionClass {
  padding: 20px 0px 50px 0px;
  position: relative;
  display: block;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}



.projectFactsWrap{
    display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
	gap: 20px; /* 🔥 ITEM GAP */
}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 25%;
  height: 100%;
  padding: 10px 0px;
  text-align: center;
}

.projectFactsWrap .item:nth-child(1){
  background: white;
}

.projectFactsWrap .item:nth-child(2){
  background: white;
}

.projectFactsWrap .item:nth-child(3){
  background: white;
}

.projectFactsWrap .item:nth-child(4){
  background: white;
}

.projectFactsWrap .item p.number{
  font-size: 30px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p {
    color: #000000;
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-family: 'Open Sans';
}


.projectFactsWrap .item span {
    width: 60px;
    background: #000000;
    height: 2px;
    display: block;
    margin: 0 auto;
}


.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 35px;
    color: #000000;
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: #3d4461;
}

.projectFactsWrap .item:hover span{
  background: #3d4461;
}

@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
}
.facts-flex{
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.facts-left{
    width: 45%;
}

.facts-right{
    width: 55%;
    display: flex;
    align-items: center;
}

/* LEFT ITEMS GRID FIX */
.facts-left .projectFactsWrap .item{
    width: 50%;
}

/* VIDEO RESPONSIVE */
.video-box{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
}

.video-box iframe{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media (max-width: 786px){
    .facts-flex{
        flex-direction: column;
    }

    .facts-left,
    .facts-right{
        width: 100%;
    }

    .facts-left .projectFactsWrap .item{
        width: 50%;
    }
}

.facts-left .projectFactsWrap .item{
    width: calc(100% - 10px);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Hover effect */
.facts-left .projectFactsWrap .item:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.col-6 {
    margin-bottom: 20px;
}
/* ===== 320px to 768px : 2x2 Horizontal Layout ===== */
@media (min-width: 320px) and (max-width: 425px){

    .projectFactsWrap .item i {
    font-size: 25px;
}
	.projectFactsWrap .item p.number {
    font-size: 20px;
}
	.projectFactsWrap .item p {
    font-size: 10px;
}
}

