.about-hero-section {
  position: relative;
  background: none;
  color: #f7fafc;
  overflow: hidden;
  height: 60vh;
  padding: 10px 100px;
}

.about-hero-section .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.about-us-content{
    padding: 50px 100px;
}

.about-us-wrapper{
    display: flex;
}

.both-the-section{
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-wrapper{
    width: 90%;
}

.image-container-wrapper img{
    width: 100%;
    height: 100%;
}

.both-right-section{
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.both-direction{
    padding: 20px 10px;
    background: rgb(129 211 177 / 30%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.both-direction p{
    padding-left: 30px;
}

.about-us-comitment-content {
    padding: 50px 100px;
}

.comitment-wrapper {
    display: flex;
    flex-direction: column;
}

.commitment-heading {
    padding: 20px 0;
}

.commitment-heading h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
}

/* Cards Wrapper */
.comitment-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 25px;
}

/* Card */
.comitment-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 25px;
    border: 1px solid #f36a0e;
    height: 100%;
    box-sizing: border-box;
}

.card-heading-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-heading-description h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.card-heading-description p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* ==========================
   Responsive
========================== */

/* Tablet */
@media (max-width: 991px) {
    .about-us-comitment-content {
        padding: 40px 40px;
    }

    .comitment-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-heading h3 {
        font-size: 2rem;
    }

    .about-us-content {
        padding: 50px 30px;
    }

    .about-us-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .image-container-wrapper {
        width: 100%;
    }

    .both-direction p {
        padding-left: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-us-comitment-content {
        padding: 30px 20px;
    }

    .comitment-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .commitment-heading h3 {
        font-size: 1.6rem;
    }

    .card-heading-description h3 {
        font-size: 22px;
    }

    .card-heading-description p {
        font-size: 16px;
    }
}




/*==============================
      JK Commitment Section
==============================*/

.jk-commitment-section{

    width:100%;
    padding:70px 0;

}

.jk-commitment-wrapper{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:45px;

}


/* Card */

.jk-commitment-card{

    display:flex;
    flex-direction:column;
    border: 1px solid #f36a0e;
    padding: 15px;

}


/* Top */

.jk-commitment-top{

    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:20px;

}


/* Icon */

.jk-commitment-icon{

    width:52px;
    min-width:52px;
    height:52px;

    display:flex;
    justify-content:center;
    align-items:center;

}

.jk-commitment-icon i{

    font-size:42px;
    color:#f36a0e;

}


/* Heading */

.jk-commitment-top h3{

    font-size:24px;
    font-weight:500;
    line-height:1.25;
    color:#333;
    margin:0;

}


/* Paragraph */

.jk-commitment-card p{

    margin:0 0 0 72px;

    font-size:18px;
    line-height:1.8;
    color:#666;
    font-weight:400;

}


/*==============================
        Tablet
==============================*/

@media(max-width:991px){

.jk-commitment-wrapper{

grid-template-columns:repeat(2,1fr);
gap:35px;

}

}


/*==============================
        Mobile
==============================*/

@media(max-width:768px){

.jk-commitment-section{

padding:50px 0;

}

.jk-commitment-wrapper{

grid-template-columns:1fr;
gap:30px;

}

.jk-commitment-top{

gap:15px;

}

.jk-commitment-icon{

width:45px;
min-width:45px;
height:45px;

}

.jk-commitment-icon i{

font-size:34px;

}

.jk-commitment-top h3{

font-size:22px;

}

.jk-commitment-card p{

margin-left:60px;
font-size:16px;
line-height:1.7;

}

}