/*****Client Section****/

.client-section {
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


.client-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.client-item img {
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: 0.3s ease;
}

.client-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-section h2 {
        font-size: 24px;
    }
    .client-item {
        border: 1px solid;
        padding: 5px;
    }
}
/****testimonials*****/
.ct-card.design_1 {
    margin-top: 50px;
}
.design_1 .ct-heading {
    font-size: 50px;
}
.ct-card.design_3 {
    margin-top: -10px;
}
.design_3 .ct-heading {
    font-size: 17px;
}
.design_3.ct-card::before{
    top: -15px !important;
}
.ct-card.design_6 {
    margin-top: 50px;
}
.design_6 .ct-heading {
    font-size: 50px;
}

.design_7 .ct-heading {
    font-size: 23px;
}
.ct-wrap {
    max-width: 1300px;
    margin: auto;
    padding: 80px 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.ct-title {
    text-align: center;
    font-size: 32px;
    color: #e74c3c;
    margin-bottom: 70px;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
}

.ct-card {
    position: relative;
}

/* .ct-quote-bg {
    position: absolute;
    top: -30px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: #fbd6d3;
    border-radius: 0 0 120px 0;
    z-index: -1;
} */

.ct-heading {
    font-size: 26px;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
}

.ct-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ct-author {
    font-weight: 600;
    color: #555;
}

/* Big Quote Icon */
.ct-card::before {
    content: "“";
    font-size: 110px;
    color: rgba(231, 76, 60, 0.2);
    position: absolute;
    top: -55px;
    left: -20px;
    line-height: 1;
}

/* Make some items larger (editorial look) */
.ct-card.large .ct-heading {
    font-size: 34px;
}

.ct-card.large .ct-text {
    font-size: 17px;
}

/* Tablet */
@media (max-width: 992px) {
    .ct-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-title {
        font-size: 24px;
    }

    .ct-heading {
        font-size: 22px;
    }
}




/*********/



.vg-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0px;
}

.vg-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.vg-tab {
    padding: 10px 18px;
    border: 1px solid #ddd !important;
    background: #fff !important;
    cursor: pointer;
    margin: 0 2px 0px 0px !important;
    color: #000 !important;
    border-radius: 0 !important;
}

.vg-tab.active {
    background: #ddd !important;
    color: #141414;
}

.vg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.vg-item img {
    width: 100%;
    border-radius: 6px;
    transition: transform .3s;
}

.vg-item:hover img {
    transform: scale(1.05);
}  

.vg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.vg-item {
    position: relative;
    cursor: pointer;
}

.vg-item img {
    width: 100%;
    display: block;
    border-radius: 6px;
}


.vg-tab {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    margin-right: 5px;
}

.vg-tab.active {
    background: #000;
    color: #fff;
}

.vg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.vg-item {
    position: relative;
    cursor: pointer;
}

.vg-item img {
    width: 100%;
    border-radius: 6px;
}

.vg-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
    border-radius: 6px;
}

.vg-item:hover .vg-play {
    opacity: 1;
}
body.vg-modal-open {
    overflow: hidden;
}

.vg-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(0,0,0,.85);
    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999; /* VERY HIGH */
}
.vg-popup * {
    position: relative;
    z-index: 1000000;
}
.vg-popup.active {
    display: flex;
}

.vg-popup-inner {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
}

.vg-popup iframe {
    width: 100%;
    height: 100%;
}

.vg-close {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/****start **/  

.wcu-section {
    padding: 60px 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


.custom-heading{
    font-size: 32px;
    color: #e74c3c;
    margin-bottom: 50px;
    text-align: center;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.wcu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wcu-icon {
    margin-bottom: 0px;
}

.wcu-icon svg {
    width: 100%;
    height: 100%;
    stroke: #e74c3c;
    fill: none;
    stroke-width: 2;
}

.wcu-item p {
    font-size: 20px;
    color: #827e7e;
    font-weight: 600;
    margin: 0;
  }

/* Tablet */
@media (max-width: 992px) {
    .wcu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .wcu-section h2 {
        font-size: 24px;
    }
}

/*********Production Process*********/

.pp-section {
    padding: 80px 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    max-width: 1400px;
    margin: auto;
}

.pp-title {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.pp-subtitle {
    font-size: 25px;
    color: #555;
    margin-bottom: 70px;
    text-align: center;
  }

.pp-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 130px;
    position: relative;
}

.pp-item {
    position: relative;
    z-index: 1;
}

.pp-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-circle img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.pp-number {
    font-size: 40px;
    color: #e74c3c;
    margin-top: 25px;
}

.pp-heading {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin: 8px 0;
}

.pp-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 1024px) {
    .pp-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .row-break {
        display: none;
    }

   
}

@media (max-width: 600px) {
    .pp-wrapper {
        grid-template-columns: 1fr;
    }
    .production-service{
        display:none;
    }
    .pp-title {
        font-size: 26px;
    }

    .pp-subtitle {
        font-size: 16px;
    }
}

/*******Exterior View *****/

.explainer-section {
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
}

.explainer-top {
    position: relative;
    text-align: center;
}

.explainer-avatar img {
    margin-bottom: -65px;
    position: relative;
    z-index: 2;
}

.explainer-red-box {
    background: #e74b47;
    color: #fff;
    padding: 50px 30px;
     margin: auto;
}

.explainer-red-box h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
  }
  .explainer-red-box ul li {
    color: #fff;
    font-size: 20px;
  }

.explainer-red-box ul {
    list-style: disc;
    text-align: left;
    max-width: 700px;
    margin: auto;
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1057px;
    padding: 69px;
    background: #f4eefc;
    text-align: left;
    margin: 0 auto;
  }
  .explainer-section h4 {
    color: #444;
    font-family: Arial, sans-serif;
  }
  .explainer-section p {
    color: #444;
    font-family: Arial, sans-serif;
  }
.explainer-grid .item span {
    font-size: 32px;
    color: #f58220;
    font-weight: bold;
}

.explainer-grid .item h4 {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .explainer-grid {
        grid-template-columns: 1fr;
    }
}

/*******end *****/



/* =========================
   MOBILE VIEW (2 columns)
   ========================= */

   @media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .why-choose h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .vg-tabs {
        gap: 6px;
        margin-bottom: 20px;
    }

    .vg-tab {
        padding: 8px 12px;
        font-size: 13px;
    }

    .vg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vg-item img {
        border-radius: 4px;
    }
    
    .vg-wrapper img {
        padding: 0px 0px !important;
      }

}