/* HERO SECTION */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    font-family: "Montserrat", sans-serif;
}

/* OVERLAY */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.about-content h1 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-content h1 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-hero {
        height: 50vh;
    }
}

/* ---------------------------- */

.aboutus-firstsec {
    padding: 60px 0;
    background: #f5f5f5;
}

.aboutus-wrapper {
    display: flex;
    gap: 60px;
    /* align-items: center; */
}

/* LEFT */
.aboutus-left {
    flex: 1;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

/* EXPERIENCE BOX */
.experience-box {
    position: absolute;
    bottom: -40px;
    left: 0;
    background: #1a0000;
    color: #fff;
    padding: 30px;
    width: 80%;
}

.experience-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.experience-box span {
    color: #f4a700;
    font-weight: bold;
}

.experience-box p {
    font-size: 14px;
    color: #ccc;
}

/* RIGHT */
.aboutus-right {
    flex: 1;
}

.subtitle {
    letter-spacing: 4px;
    font-size: 18px;
    color: #bd8305;
    margin-bottom: 15px;
    font-weight: 600;
}

.title {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;

}

.desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-red {
    position: relative;
    display: inline-block;
    padding: 14px 30px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    background: #242424;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #242424;
}

.btn-red::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #fff;

    z-index: -1;

    transition: height 0.4s ease;
}


.btn-red:hover::before {
    height: 100%;
}

.btn-red:hover {
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);
    color: #242424;
}

.btn-dark {
    background: #ffffff;

    padding: 14px 30px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);


    position: relative;
    display: inline-block;

    color: #242424;
    text-decoration: none;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #242424;
}


.btn-dark::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #242424;
    z-index: -1;

    transition: height 0.4s ease;
}

.btn-dark:hover {
    color: #fff;
}


/* HOVER EFFECT */
.btn-dark:hover::before {
    height: 100%;
}

/* FEATURES */
.features {
    display: flex;
    gap: 40px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.feature {
    flex: 1;
}

.icon {
    width: 50px;
    height: 50px;
    background: #ffae0042;
    color: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
margin-bottom: 15px;    
}

.feature h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .aboutus-wrapper {
        flex-direction: column;
        gap: 40px;

    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .experience-box {
        position: relative;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
    }

    .features {
        flex-direction: column;
        text-align: center;
    }


    .subtitle {
        letter-spacing: 4px;
        font-size: 17px;
        text-align: center;

    }


    .btn-red,
    .btn-dark {
        position: relative;
        display: inline-block;
        padding: 10px 25px;
        font-size: 14px;
    }
    .icon {
    margin: 0 auto 15px auto;

    }

    .buttons {
   justify-content: center;
}
}


/* ================= OUR WORK ================= */

.aboutus-ourwork {
    padding: 60px 0;
    background: #f5f5f5;
}

/* HEADING */
.work-heading {
    text-align: center;
    margin-bottom: 60px;
}

.work-heading h2 {
    letter-spacing: 4px;
    font-size: 18px;
    color: #bd8305;
    margin-bottom: 15px;
    font-weight: 600;
}


.work-heading p {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

/* GRID */
.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 380px;
}

/* BOX */
.work-box {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* COLORS */
.work-box.dark {
    background: #242424;
    color: #fff;
}

.work-box.orange {
    background: #242424;
    color: #ffffff;
}

/* TEXT */
.work-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* .work-box h3 span {
    color: #f39c12;
} */

.work-box.orange h3 span {
    color: #fff;
}

.work-box p {
    font-size: 14px;
    line-height: 1.5;
}

/* IMAGE */
.work-box.image {
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, z-index 0.3s;
}

.work-box.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* BIG BOX */
.work-box.big {
    grid-column: span 2;
}

/* PLAY BUTTON */


/* HOVER EFFECT */
.work-box.image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.work-box.image:hover::after {
    opacity: 1;
}


.work-box.image:hover img {
    transform: scale(1.15);
}

/* @media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .work-box.big {
        grid-column: span 2;
    }

    .work-heading p {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 0px;
    
}

} */

/* MOBILE WORK GRID NEW UI */
@media (max-width: 768px) {

  .work-grid.mobile-mode {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-auto-rows: auto;
  }

  .work-grid.mobile-mode .work-box {
    padding: 0;
    background: transparent !important;
  }

  .work-grid.mobile-mode .work-box.image {
    display: block;
  }

  /* IMAGE FULL */
  .work-grid.mobile-mode .work-box.image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  /* TEXT BOX BELOW IMAGE */
  .mobile-work-content {
    background: #242424;
    color: #fff;
    padding: 15px;
  }

  .mobile-work-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .mobile-work-content p {
    font-size: 13px;
    color: #ccc;
  }

  
.work-heading p {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 17px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

}

/* -------------- count ----------- */

/* SECTION BACKGROUND GAP */
.aboutus-count {
    background-image: url("../images/aboutus/aboutushero.jpeg");
    padding: 120px 0 60px;
    position: relative;
    background-attachment: fixed;
}

/* FLOATING CARD */
.count-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

    display: flex;
    justify-content: space-between;
    text-align: center;

    padding: 40px 20px;

    /* FLOAT EFFECT */
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

/* EACH BOX */
.count-box {
    flex: 1;
    position: relative;
}

/* BORDER BETWEEN ITEMS */
.count-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: #ddd;
}

/* ICON */
.count-box i {
    font-size: 26px;
    color: #7a4d03;
    margin-bottom: 15px;
}

/* NUMBER */
.count-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* LABEL */
.count-box p {
    font-size: 14px;
    color: #242424;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .count-wrapper {
        flex-direction: column;
        gap: 30px;
        margin-top: -60px;
    }

    .count-box::after {
        display: none;
    }
}


/* SECTION */
.aboutus-whoweare {
    position: relative;
    /* MUST */
    padding: 80px 0;
    background: url('../images/aboutus/aboutus1.jpeg') center/cover no-repeat;
    text-align: center;
    background-attachment: fixed;
    z-index: 1;
}

/* OVERLAY */
.aboutus-whoweare::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.912);
    z-index: 1;
    /* 🔥 change */
}

/* CONTENT UP */
.whoweare-heading,
.whoweare-cards {
    position: relative;
    z-index: 2;
}

/* HEADING */
.whoweare-heading h5 {
    letter-spacing: 4px;
    font-size: 18px;
    color: #eba000;
    margin-bottom: 15px;
    font-weight: 600;

}

.whoweare-heading h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #fff;

}

.whoweare-heading p {
    max-width: 700px;
    margin: auto;
    color: #e6e6e6;
    line-height: 1.6;
}

/* CARDS GRID */
.whoweare-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

/* CARD */
.who-card {
    background: #eaeaea;
    padding: 50px 30px;
    border-radius: 10px;
    position: relative;
    flex: 1;

    transition: 0.3s;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    background: #7a4d03;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.icon-box i {
    color: #fff;
    font-size: 28px;
}

/* TEXT */
.who-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.who-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* BOTTOM STRIP (BLACK + YELLOW) */
.who-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;

    background: repeating-linear-gradient(45deg,
            #111,
            #111 10px,
            #f4a700 10px,
            #f4a700 20px);
}

/* HOVER EFFECT */
.who-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .whoweare-cards {
        flex-direction: column;
        margin-top: 35px;
    }

    .aboutus-whoweare {

        padding: 40px 0;

    }

    .whoweare-heading h2 {
        font-size: 32px;
    }
}




/* OUR TEAM */

/* ================= TEAM SECTION ================= */

/* .about-ourteam {
    padding: 80px 0;
    background: #fff;
}

.team-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}


.team-left {
    flex: 1;
}

.team-sub {
    letter-spacing: 4px;
    font-size: 18px;
    color: #bd8305;
    margin-bottom: 15px;
    font-weight: 600;

}

.team-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;

}

.team-desc {
    color: #666;
    line-height: 1.6;
    text-align: justify;
}


.team-right {
    flex: 1;
    min-width: 0;
  
    overflow: hidden;
    width: 100%;
}


.teamSwiper {
    width: 100%;
}


.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}


.team-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: 0.4s ease;
}

.team-card:hover .team-overlay {
    bottom: 0;
}

.team-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-overlay p {
    font-size: 14px;
    color: #ddd;
}


@media(max-width:768px) {
    .team-wrapper {
        flex-direction: column;
    }

    .team-sub {
        letter-spacing: 4px;
        font-size: 18px;
        color: #bd8305;
        margin-bottom: 15px;
        font-weight: 600;
        text-align: center;

    }

    .team-title {
        font-size: 48px;
        line-height: 1.3;
        margin-bottom: 20px;
        font-family: "Playfair Display", serif;
        font-weight: 500;
        text-align: center;

    }
} */