.hero {
    height: 100vh;
    background: url('bgfabric.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center !important;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 80, 0.75);
    /* #1A3263 overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}


/* .hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 25px;
} */

.btn-custom {
    padding: 10px 25px;
    font-weight: 500;
}

.btn-primary {
    background-color: #ffffff;
    color: #1A3263;
    border: none;
}

.btn-primary:hover {
    background-color: #e6e6e6;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #1A3263;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .res {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .contactbtn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

}
/*==========================================video=======================*/
.video-section {
    padding: 20px 0 !important;
    background: #f5f7fb;
    display: flex !;
    justify-content: center !important;
    align-items: center !important;
}



.video-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;   /* 👈 THIS centers it */
    border-radius: 12px;
    overflow: hidden;
}

.video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/*=============================================================================================================*/
    /* Section */
    .feature-section {
      padding: 60px 0;
    }

    /* Card */
    .feature-card {
      border-radius: 16px;
      overflow: hidden;
      height: 100%;
      padding: 20px;
      background: #fff;
      transition: 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-card.dark {
      background: #1e2a38;
      color: #fff;
    }

    .feature-card.blue {
      background: #6f8791;
      color: #fff;
    }

    .feature-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    /* Hover */
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    /* Text */
    .feature-card h5 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .feature-card p {
      font-size: 14px;
      color: #666;
    }

    .feature-card.dark p,
    .feature-card.blue p {
      color: #ddd;
    }

    .feature-card a {
      font-size: 13px;
      text-decoration: none;
      color: inherit;
      margin-top: 10px;
      display: inline-block;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .feature-card img {
        height: 150px;
      }
    }

/*====================================================================*/

.overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-title {
    font-size: 38px;
    font-weight: 700;
    color: #1A3263;
}

.overview-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}

.btn-outline-light {
    color: #1A3263 !important;
    border: 2px solid #1A3263 !important;
}


@media (max-width: 768px) {
    .overview-title {
        font-size: 28px;
        text-align: center;
    }

    .overview-text {
        text-align: center;
    }


}


/*============================Why-Choose===========================================*/
.why-section {
    background: url('sofa-bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 20px;
    color: #fff;
}

.why-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 50, 99, 0.75);
    /* Your brand color overlay */
}

.why-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.why-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.why-content p {
    font-size: 16px;
    opacity: 0.9;
}

.why-points {
    margin-top: 25px;
}

.why-points li {
    margin-bottom: 10px;
    font-size: 15px;
}



/*===========================================================*/

.design-section {
    padding: 10px 0;
}

.design-title {
    text-align: center;
    margin-bottom: 10px;
}

/* GRID */
.design-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

/* CARD */
.design-card {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    cursor: pointer;
}

.design-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    /* transition: 0.4s ease; */
}

/* Hover Effect */
/* .design-card:hover img {
    transform: scale(1.1);
} */

/* .design-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
} */

/* .design-card:hover .design-overlay {
    opacity: 1;
} */

/* MOBILE SLIDER */
@media (max-width: 768px) {

    .design-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        scroll-snap-type: x mandatory;
    }

    .design-grid::-webkit-scrollbar {
        display: none;
    }

    .design-card {
        min-width: 70%;
        scroll-snap-align: center;
    }

    .design-card img {
        height: 200px;
    }
}

img {
    image-rendering: -webkit-optimize-contrast !important;
}