

.inner_banner {
  position: relative; /* IMPORTANT */
  width: 100%;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Center text on the image */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 80%;
  padding: 20px;
}

.headline {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.subcopy {
  font-size: 18px;
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .headline {
    font-size: 28px;
  }
  .subcopy {
    font-size: 16px;
  }
}

/*======== INTRODUCTION ==========*/
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#f5f7fb;
}

/* CONTAINER */
.intro-container{
  width:100%;
  padding:80px 120px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:80px;
  align-items:center;
}


/* ================= LEFT MEDIA ================= */
.intro-media{
  position:relative;
  height:520px;
}

/* BIG IMAGE (right overlap) */
.media-large{
  width:90%;
  position:absolute;
  right:0;
  top:45px;
  left:0;
  z-index:2;
}

.media-large img{
  width:100%;
  object-fit:cover;
  border-radius:18px;
}

/* ================= RIGHT CONTENT ================= */
.intro-content{
  margin-bottom: 40px;
}
.intro-tag{
  font-size:16px;
  font-weight:600;
  color:#4c6fff;
}

.intro-content h1{
  font-size:50px;
  line-height:1.2;
  color:#0e2a47;
  margin:12px 0 18px;
}

.intro-content h1 span{
  font-weight:500;
  font-size: 34px;
}

.intro-desc{
  color:#5e6c7a;
  line-height:1.7;
  margin-bottom:16px;
}


.intro-desc p{
   font-size: 16px;
  font-weight: 500;
  width: 100%;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */

/* 1400px */
@media (max-width:1400px){
  .intro-container{
    padding:30px 80px;
    gap:60px;
  }

  .intro-content h1{
    font-size:42px;
  }
}


/* 1200px */
@media (max-width:1200px){
  .intro-container{
    padding:30px 60px;
    gap:50px;
  }

  .intro-content h1{
    font-size:40px;
  }
}


/* TABLET */
@media (max-width:992px){

  .intro-container{
    grid-template-columns:1fr;
    padding:40px 40px;
    gap:60px;
  }

  .intro-media{
    height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  /* Disable absolute positioning */
  .media-small,
  .media-large,
  .exp-box{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
    margin:15px 0;
  }

  .media-small img,
  .media-large img{
    width:100%;
    height:auto;
    max-width:450px;
  }

  .exp-box{
    width:260px;
    height:150px;
  }

  .intro-content{
    margin-bottom:0;
    text-align:center;
  }

  .intro-content h1{
    font-size:34px;
  }
}


/* MOBILE */
@media (max-width:576px){

  .intro-container{
    padding:30px 20px;
  }

  .intro-content h1{
    font-size:26px;
    line-height:1.3;
  }

  .intro-tag{
    font-size:14px;
  }

  .intro-desc p{
    font-size:14px;
  }

  .exp-box h2{
    font-size:40px;
  }

  .exp-box p{
    font-size:14px;
  }
}



/*======ENDOF=====*/

/*======ORGANZATION DETAILS=====*/

.org-section{
  background:#f1f1f1;
  box-sizing: border-box;
}

.org-container{
  width: 100%;
  padding: 30px 150px 30px 150px;
  margin:auto;
}

/* HEADER */
.org-header{
  display:flex;
  align-items:flex-end;
  gap:18px;
}

.org-brand{
  font-size:100px;
  font-weight:900;
  letter-spacing:2px;
  color:#000;
  line-height:0.9;
  
}

.org-sub{
  font-size:20px;
  font-weight: 600;
  letter-spacing:2px;
  margin-bottom:12px
}

/* BIG ORANGE TITLE */
.org-title{
  font-size:100px;
  font-weight:900;
  color:#ff4d0d;
  margin:10px 0 40px;
  text-align: right;
  
}

/* GRID */
.org-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:80px;
  align-items:center;
}

/* TEXT */
.org-desc{
  width: 80%;
  color:#333;
  font-size:18px;
  line-height:1.7;
  margin-bottom:30px;
  
}

/* LIST */
.org-list{
  list-style:none;
}

.org-list li{
  font-size:20px;
  margin-bottom:18px;
  font-weight:600;
  position:relative;
  padding-left:30px;
}

/* ORANGE ARROW */
.org-list li::before{
  content:"➜";
  position:absolute;
  left:0;
  color:#ff4d0d;
  font-size:22px;
  font-weight:bold;
}

/* IMAGE AREA */
.org-image{
  position:relative;
}

.org-image img{
  width:90%;
  display:block;
  position:relative;
  z-index:2;
}

/* BACKGROUND BOX */
.bg-box{
  width:100%;
  height:100%;
  z-index:1;
}

/* ================= RESPONSIVE ================= */

@media (max-width:1400px){

  .org-brand{
    font-size:90px;
  }

  .org-title{
    font-size:90px;
  }

  .org-container{
    padding:70px;
  }

  .org-grid{
    gap:60px;
  }
}

@media (max-width:1200px){

  .org-brand{
    font-size:70px;
  }

  .org-title{
    font-size:70px;
  }

  .org-sub{
    font-size:16px;
  }

  .org-desc{
    font-size:16px;
    width:100%;
  }

  .org-list li{
    font-size:18px;
  }

  .org-container{
    padding:60px 40px;
  }

  .org-image img{
    width:100%;
  }
}
@media (max-width:992px){

  .org-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .org-title{
    text-align:left;
  }

  .org-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .org-image{
    order:2;
  }

  .org-text{
    order:1;
  }

}
@media (max-width:768px){

  .org-container{
    padding:50px 20px;
  }

  .org-brand{
    font-size:48px;
    line-height:1.1;
  }

  .org-title{
    font-size:46px;
    margin-bottom:20px;
  }

  .org-sub{
    font-size:14px;
  }

  .org-desc{
    font-size:15px;
  }

  .org-list li{
    font-size:16px;
    margin-bottom:14px;
  }
}
@media (max-width:480px){

  .org-brand{
    font-size:36px;
  }

  .org-title{
    font-size:34px;
  }

  .org-sub{
    font-size:12px;
    letter-spacing:1px;
  }

  .org-list li{
    font-size:14px;
  }
}

/*======ENDOF=====*/

/*======CERTICATE=====*/

.cert-section{
  background:#f3f3f3;

}

.cert-container{
  width: 100%;
  padding: 30px 150px 20px 150px;
  margin:auto;
}

/* HEADING */
.cert-heading{
  color:#ff4d0d;
  font-size:22px;
  letter-spacing:1px;
  margin-bottom:40px;
  font-weight:600;
}

/* GRID */
.cert-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* CARD BASE */
.cert-card{
  border-radius:26px;
  height: 350px;
  padding:40px 35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.cert-card h4{
  width: 100%;
  font-size:20px;
  font-weight:700;
  margin:20px 0 10px;
  margin-bottom: 10px;
    margin-top: 80px;
}

.cert-card p{
  width: 100%;
  font-size:18px;
  color:#444;
}

/* LOGO */
.cert-logo{
  width:90px;
  height:auto;
  margin-bottom:10px;
}

.cert-card1{
  border-radius:26px;
  height: 350px;
  padding:40px 35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.cert-card1 h4{
  width: 100%;
  font-size:20px;
  font-weight:700;
  margin:20px 0 10px;
  margin-top: 163px;
}

.cert-card1 p{
  width: 100%;
  font-size:18px;
  color:#444;
}

/* LOGO */
.cert-logo{
  width:90px;
  height:auto;
  margin-bottom:10px;
}

.cert-card2{
  border-radius:26px;
  height: 350px;
  padding:40px 35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.cert-card2 h4{
  width: 100%;
  font-size:20px;
  font-weight:700;
  margin:20px 0 10px;
  margin-bottom: 10px;
  margin-top: 150px;
}

.cert-card2 p{
  width: 100%;
  font-size:18px;
  color:#444;
}

/* LOGO */
.cert-logo{
  width:90px;
  height:auto;
  margin-bottom:10px;
}

.cert-card3{
  border-radius:26px;
  height: 350px;
  padding:40px 35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.cert-card3 h4{
  width: 100%;
  font-size:20px;
  font-weight:700;
  margin:20px 0 10px;
  margin-bottom: 10px;
  margin-top: 120px;
}

.cert-card3 p{
  width: 100%;
  font-size:18px;
  color:#444;
}

/* LOGO */
.cert-logo{
  width:90px;
  height:auto;
  margin-bottom:10px;
}


/* VARIANTS */
.light{
  background:#e7e9ee;
}

.peach{
  background:#f2e1d8;
}

.dark{
  background:#1e1f23;
  color:#fff;
}

.dark p{
  color:#cfcfcf;
}

/* RESPONSIVE */

@media (max-width:1400px){

  .cert-container{
    padding:20px 60px;
  }

  .cert-card{
    height:350px;
    padding:35px 30px;
  }

  .cert-card h4{
    font-size:18px;
    margin-top:100px;
  }

  .cert-card p{
    font-size:16px;
  }
}

@media (max-width:1200px){

  .cert-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .cert-container{
    padding:20px 40px;
  }

  .cert-card{
    height:300px;
  }
}

@media (max-width:992px){

  .cert-card{
    height:auto;
    min-height:260px;
  }

  .cert-card h4{
    margin-top:40px;
  }

  .cert-logo{
    width:75px;
  }

  .cert-heading{
    font-size:20px;
  }
}

@media (max-width:768px){

  .cert-grid{
    grid-template-columns:1fr;
  }

  .cert-container{
    padding:20px 20px;
  }

  .cert-card{
    padding:28px;
    border-radius:20px;
  }

  .cert-card h4{
    font-size:18px;
    margin-top:25px;
  }

  .cert-card p{
    font-size:15px;
  }
}

@media (max-width:480px){

  .cert-heading{
    font-size:18px;
    margin-bottom:25px;
  }

  .cert-logo{
    width:65px;
  }

  .cert-card h4{
    font-size:16px;
  }

  .cert-card p{
    font-size:14px;
  }
}

/*======ENDOF=====*/


/*======SERVICES=====*/

.about-services-section{
  background:#f2f2f4;
  padding:70px 0 90px;
}

.about-services-container{
  width: 100%;
  padding: 3dvh 150px 30px 150px;
  margin:auto;
}

/* TOP TEXT */
.about-services-top h2{
  font-size:52px;
  font-weight:800;
  margin-bottom:10px;
  color:#111;
}

.about-services-top p{
  width: 100%;
  color:#555;
  font-size:18px;
  line-height:1.7;
  margin-bottom:50px;
}

/* GRID */
.about-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.about-service-card{
  background:#f7f7f8;
  border:2px solid #e3e3ea;
  border-radius:28px;
  padding:40px 35px;
  transition:.3s;
}

/* ICON */
.about-service-icon{
  font-size:48px;
  color:#ff4d0d;
  margin-bottom:18px;
}

/* TITLE */
.about-service-card h3{
  font-size:30px;
  margin-top: 30px;
  margin-bottom:18px;
  font-weight:700;
}

/* LIST */
.about-service-card ul{
  padding-left:20px;
}

.about-service-card li{
  font-size:18px;
  font-weight: 600;
  color:#666;
  margin-bottom:14px;
  line-height:1.5;
}

/* HOVER */
.about-service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  border-color:#ff4d0d40;
}

/* RESPONSIVE */

@media (max-width:1400px){

  .about-services-container{
    padding:20px 60px;
  }

  .about-services-top h2{
    font-size:46px;
  }

  .about-service-card h3{
    font-size:26px;
  }

  .about-service-card li{
    font-size:17px;
  }
}


@media (max-width:1200px){

  .about-services-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .about-services-container{
    padding:20px 40px;
  }

  .about-services-top p{
    font-size:17px;
  }
}

@media (max-width:992px){

  .about-services-top h2{
    font-size:38px;
  }

  .about-services-top p{
    font-size:16px;
    margin-bottom:40px;
  }

  .about-service-card{
    padding:30px;
    border-radius:22px;
  }

  .about-service-card h3{
    font-size:24px;
    margin-top:20px;
  }

  .about-service-card li{
    font-size:16px;
  }

  .about-service-icon{
    font-size:40px;
  }
}

@media (max-width:768px){

  .about-services-grid{
    grid-template-columns:1fr;
  }

  .about-services-container{
    padding:20px;
  }

  .about-services-top h2{
    font-size:32px;
  }

  .about-services-top p{
    font-size:15px;
    line-height:1.6;
  }

  .about-service-card{
    padding:26px;
  }
}

@media (max-width:480px){

  .about-services-top h2{
    font-size:26px;
  }

  .about-service-card h3{
    font-size:22px;
  }

  .about-service-card li{
    font-size:15px;
  }

  .about-service-icon{
    font-size:36px;
  }
}

/*======ENDOF=====*/

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.vmv{
  position:relative;
  overflow:hidden;
}

/* BEIGE CENTER STRIP */
.vmv::before{
  content:"";
  position:absolute;
  left:0;
  top:19%;
  width:32%;
  height:53%;
  background:#FEEFE9;
  z-index:0;
}

.vmv-container{
  width:100% ;
  margin:auto;
  padding:80px 100px 80px 100px;
  position:relative;
  z-index:2;
}

/* BIG SIDE WORD */
.vmv-bg-word{
  
  position:absolute;
  left:-120px;
  top:45.5%;
  transform:translateY(-50%) rotate(-90deg);
  font-size:120px;
  font-weight:900;
  letter-spacing:12px;
  color:white;
  pointer-events:none;

}

/* GRID */
.vmv-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:80px;
  align-items:start;
}

/* LEFT TIMELINE */
.vmv-left{
  position:relative;
  padding-left:60px;
  margin-left: 250px;
}

/* vertical orange line */
.vmv-left::before{
  content:"";
  position:absolute;
  left:190px;
  top:40px;        
  bottom:40px;
  width:2px;
  height:80%;
  background:#ff4d0d;
}

/* IMAGE CARD */
.vmv-card{
  width:260px;       
  margin-bottom:50px;
  position:relative;
  z-index:2;
}

.vmv-card img{
  width: 100%;
  aspect-ratio: 4 / 3;   
  object-fit:cover;
  border-radius:24px;
  padding:8px;
}



.vmv-item :last-child{
  margin-bottom: 0;
}


.vmv-item h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
  margin-top: 10px;
}

.vmv-item p{
  width: 60%;
  font-size: 16px;
  color:#555;
  line-height:1.56;
}

.vmv-item ul{
  margin-top:10px;
  padding-left:18px;
}

.vmv-item li{
  color:#555;
  margin-bottom:8px;
}

.vmv-item a{
  display:inline-block;
  margin-top:14px;
  color:#ff4d0d;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.5px;
}

.vmv-right{
  width: 100%;
  margin-left: 180px;
}

.vmv-item-1 h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
  margin-top: 160px;
}

.vmv-item-1 p{
  width: 60%;
  font-size: 16px;
  color:#555;
  line-height:1.56;
}

.vmv-item-1 ul{
  margin-top:10px;
  padding-left:18px;
}

.vmv-item-1 li{
  color:#555;
  margin-bottom:8px;
}

.vmv-item-1 a{
  display:inline-block;
  margin-top:14px;
  color:#ff4d0d;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.5px;
}

.vmv-item-2 h2{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
  margin-top: 130px;
}

.vmv-item-2 p{
  width: 60%;
  font-size: 16px;
  color:#555;
  line-height:1.56;
}

.vmv-item-2 ul{
  margin-top:10px;
  padding-left:18px;
}

.vmv-item-2 li{
  color:#555;
  margin-bottom:8px;
}

.vmv-item-2 a{
  display:inline-block;
  margin-top:14px;
  color:#ff4d0d;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.5px;
}



/* ---------------- RESPONSIVE ---------------- */

@media (max-width:1300px){

  .vmv-container{
    padding:70px 50px;
  }

  .vmv-grid{
    grid-template-columns:400px 1fr;
    gap:50px;
  }

  .vmv-left{
    margin-left:120px;
    padding-left:40px;
  }

  .vmv-left::before{
    left:150px;
  }

  .vmv-right{
    margin-left:40px;
  }
  
  .vmv-item p{
    width:100%;
  }
}
@media (max-width:992px){

  .vmv-bg-word{
    display:none;
  }

  .vmv::before{
    width:45%;
    height:60%;
  }

  .vmv-container{
    padding:60px 30px;
  }

  .vmv-grid{
    grid-template-columns:340px 1fr;
    gap:40px;
  }

  .vmv-left{
    margin-left:60px;
    padding-left:20px;
  }

  .vmv-left::before{
    left:120px;
  }

  .vmv-right{
    margin-left:20px;
  }

}
@media (max-width:768px){

  .vmv::before{
    display:none;
  }

  .vmv-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .vmv-left{
    margin-left:0;
    padding-left:0;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .vmv-left::before{
    display:none;
  }

  .vmv-card{
    width:100%;
    max-width:420px;
    margin-bottom:40px;
  }

  .vmv-right{
    margin-left:0;
  }

  .vmv-item{
    margin-bottom:40px;
  }

  .vmv-item h2{
    font-size:24px;
  }

  .vmv-item p{
    width:100%;
    font-size:15px;
    line-height:1.6;
  }

}
@media (max-width:480px){

  .vmv-container{
    padding:50px 16px;
  }

  .vmv-item h2{
    font-size:22px;
  }

  .vmv-item p{
    font-size:14px;
  }

}



/*======ENDOF=====*/

/*====== OBJECTIVE & APPROACHE =====*/

.approach-section{
  background:#f3f3f3;
}

.approach-container{
  width:100%;
  padding: 30px 150px 80px 150px;
  margin:auto;
}

/* GRID */
.approach-grid{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:80px;
  align-items:start;
}

/* LEFT */
.block{
  margin-bottom:60px;
  width: 100%;
}

.block h2{
  font-size:44px;
  font-weight:800;
  margin-bottom:20px;
  color:#111;
}

.block ul{
  padding-left:18px;
}

.block li{
  margin-bottom:12px;
  color:#666;
  font-size:18px;
  font-weight: 600;
}

.block-approach{
margin-bottom:60px;
width: 100%;
}

.block-approach h2{
  font-size:44px;
  font-weight:800;
  margin-bottom:20px;
  color:#111;
  margin-left: 180px;
}
.block-approach ul{
  padding-left:18px;
}

.block-approach li{
  margin-bottom:12px;
  color:#666;
  font-size:18px;
  font-weight: 600;
  margin-left: 180px;
}

/* READ MORE */
.readmore{
  display:inline-block;
  margin-top:18px;
  color:#ff4d0d;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.5px;
  margin-left: 180px;
}

/* RIGHT SIDE */
.approach-right{
  width: 100%;
  height: 100%;
  text-align:left;
}

/* IMAGE */
.founder-img{
  width:100%;
}

.founder-img img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
  margin-top: 50px;
}
/* INFO */
.founder-info h3{
  font-size:30px;
  margin-bottom:5px;
  margin-top: 30px;
}

.role{
  display:block;
  color:#ff4d0d;
  font-weight:600;
  margin-bottom:15px;
}

.founder-info p{
  color:#666;
  line-height:1.6;
  width: 100%;
  font-weight: 600;
}
.readmore1{
  display:inline-block;
  margin-top:18px;
  color:#ff4d0d;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.5px;
 
}

/* RESPONSIVE */

@media (max-width:1400px){

  .approach-container{
    padding:30px 80px 70px;
  }

  .block h2,
  .block-approach h2{
    font-size:38px;
  }

  .block li,
  .block-approach li{
    font-size:17px;
  }

  .founder-img img{
    width:65%;
  }
}

@media (max-width:1200px){

  .approach-container{
    padding:30px 50px 70px;
  }

  .approach-grid{
    grid-template-columns:1fr 360px;
    gap:50px;
  }

  /* remove big left offsets */
  .block-approach h2,
  .block-approach li,
  .readmore{
    margin-left:40px;
  }
}

@media (max-width:992px){

  .approach-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .approach-right{
    order:-1;
  }

  /* VERY IMPORTANT — makes grid calculate height correctly */
  .approach-right,
  .founder-info{
    width:100%;
    display:block;
  }

  .founder-img{
    width:100%;
    max-width:420px;
    margin:0 auto 25px auto;
  }

  .founder-img img{
    width:100%;
  }

  .block,
  .block-approach{
    margin-bottom:35px;
  }

  /* remove desktop offsets */
  .block-approach h2,
  .block-approach li,
  .readmore{
    margin-left:0;
  }
}

@media (max-width:768px){

  .approach-container{
    padding:30px 20px 60px;
  }

  .block h2,
  .block-approach h2{
    font-size:28px;
  }

  .block li,
  .block-approach li{
    font-size:15px;
  }

  .founder-info h3{
    font-size:24px;
  }

  .founder-info p{
    font-size:14px;
  }

  .frame{
    display:none; 
  }
}
@media (max-width:480px){

  .block h2,
  .block-approach h2{
    font-size:24px;
  }

  .block li,
  .block-approach li{
    font-size:14px;
  }

  .readmore{
    font-size:14px;
  }
}


/*======ENDOF=====*/

.feature-container{
  background-color:#F7F8FB;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-self:center;
  padding: 80px 6%;
}
.left-feature-container{
  display: flex;
  align-items: center;
}
.f-l-content{
  padding-bottom: 15px;
}

.feature-right{
  width: 100%;
}
.f-r-container{
  aspect-ratio: 1;
  background: url(/innovus_management/assets/images/about_us/2_section.webp) center / cover no-repeat;
  position: relative;
}

.f-r-top-left{
  position: absolute;
  left: 15%;
  top: 15%;
  color: var(--paper-2)
}
.f-r-top-left img, .f-r-bottom-right img{
  margin: 0 auto;
}
.f-r-top-left p, .f-r-bottom-right p{
  text-align: center;
}


.features-left {
  width: 70%;
  float: left;
  /*flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;*/
}

.features-left
.feature-box {
  width: 30%;
  float: left;
  text-align: left;
  margin-right: 20px;
}
.features-left :last-child {
  margin-right: 0;
}
.features-lf-img{
  width: 63%;
  float: left;
}
.feature-box img {
  width: 50px;
  margin-bottom: 10px;
}

.feature-box h3 {
  color: #ff4b00;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-box p {
  color: #7d8a9b;
  font-size: 15px;
  line-height: 1.7;
}

.features-right {
  width: 30%;
  float: left;
  /*flex: 1 1 45%;*/
}
.f-r-bottom-right{
  position: absolute;
  right: 10%;
  bottom: 15%;
  color: var(--paper-2);
}

.features-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 3%;
  gap: 20px;
}


.features-right h5 {
  color: #ff4b00;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.features-right h2 {
  font-size: 28px;
  color: #0b1a33;
  margin-bottom: 20px;
  line-height: 1.4;
}

.features-right p {
  color: #8a96a3;
  font-size: 15px;
  margin-top: 26%;
  margin-bottom: 30px;
}

.explore-btn {
  background: none;
  color: #ff4b00;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid #ff4b00;
  padding-bottom: 4px;
  transition: 0.3s;
}

.explore-btn:hover {
  color: #0b1a33;
  border-color: #0b1a33;
}

.features-right img {
  width: 100%;
  margin-top: 30px;
  object-fit: cover;
}

.vision-sec-container{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
}
.vision-sec-left{
  background: url(/innovus_management/assets/images/about_us/our_vision.webp) center / cover no-repeat;
  text-align: center;
  aspect-ratio: 1.5;
  color: var(--paper);
  display: flex;
  align-items: center;
}
.vision-sec-right{
    background: url(/innovus_management/assets/images/about_us/our_mission.webp) center / cover no-repeat;
    text-align: center;
    color: var(--paper);
    display: flex;
    align-items: center;
}
.vison-container-inr h1{
  font-size: 28px;
}
.vison-container-inr p{
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 20px;
}
.feature-banner{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
}
.left-f-banner img{
  padding-top: 60px;

}
.right-f-banner{
  background-color: rgb(5, 5, 60);
  text-align: center;
}
.faq-section {
  margin-top: 10px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  
}

.faq-image {
  flex: 1;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.faq-content {
  flex: 1;
  background: #0c1a33;
  padding: 80px 60px;
  
}

.faq-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color:#c0c6d0;
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #c0c6d0;
  line-height: 1.6;
}
.arrow {
  transition: transform 0.3s;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.service-sec-container{
  width: 86%;
  margin: 0 auto;
}
.services-header {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}

.sub-title {
  color: #ff5c00;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 2rem;
  color: #0a1535;
  line-height: 1.4;
  margin-bottom: 15px;
}

.description {
  font-size: 0.95rem;
  color: #6e6e6e;
  line-height: 1.6;
  max-width: 900px;
}

.explore-link {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #ff5c00;
  text-decoration: none;
  font-weight: 500;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #f2f4f9;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.card:hover {
  background: #e9ecf5;
  transform: translateY(-5px);
}

.team-card {
  text-align: center;
  border-radius: 20px;
  padding: 20px;

  /* Smooth, performant transition */
  transition: transform 340ms cubic-bezier(.2,.8,.2,1),
              box-shadow 340ms cubic-bezier(.2,.8,.2,1);

  /* Performance hint — lets the browser optimize for transform/box-shadow */
  will-change: transform, box-shadow;

  /* Prevent weird subpixel flicker on some GPUs */
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Hover state — slightly larger lift + softer shadow */
.team-card:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: 0 18px 36px rgba(10, 20, 40, 0.08),
              0 6px 18px rgba(10, 20, 40, 0.04);
}

.icon {
  font-size: 2.5rem;
  color: #ff5c00;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.1rem;
  color: #0a1535;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  color: #4c4c4c;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.view-btn {
  background: none;
  border: 1px solid #ff5c00;
  color: #ff5c00;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.view-btn:hover {
  background: #ff5c00;
  color: #fff;
}

.team-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.c-management{
  margin-bottom: 50px;
  text-align: center;
}

.core-management h3{
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.core-management h2 {
   text-align: center;
}
.m-sec-container, .tech-sec-container{
  width: 94%;
  margin: 0 auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.team-card h3 {
  color: #ff5c00;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.designation {
  color: #5a5a5a;
  font-size: 0.9rem;
  font-weight: 400;
}

.technical-team h3{
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.technical-team p{
  text-align: center;
}

.vision-sec-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: 2px;
}

.faq-container{
  width: 45%;
  background-color: var(--dark);
  padding: 40px 30px;
}




    .faq-container h1{
      font-size:1.8rem;
      color: var(--paper);
    }

    .accordion{
      background:var(--card);
      border-radius:var(--radius);
      padding: 5px 0;
      max-height: 45vh;
      overflow: hidden;
    }
      
    .item + .item{
      margin-top: 15px;
    }

    .header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      width:100%;
      background:transparent;
      border:0
    }
    .question{
      color: var(--paper);
      display:flex;
      flex-direction:column;
    }
    .q-sub{font-size:0.85rem;color:var(--muted);margin-top:6px}

    /* icon is now a button (arrow) */
    .icon-btn{
      width:36px;
      height:36px;
      color: var(--paper);
      display:inline-grid;
      place-items:center;
      border: none;
      background:transparent;cursor:pointer;
      padding:0
    }
    .icon-btn svg{
      width:18px;
      height:18px;
      transition:transform .22s ease
    }

    .panel{
      font-size: 14px;
      line-height:1.6;
      color: var(--muted);
      max-height:0;
      overflow:hidden;
      transition:max-height .28s cubic-bezier(.2,.9,.2,1),padding .15s ease;
    }
    .panel p{
      margin: 0;
    }
    /* rotate icon to become 'up' when open */
    .item.open .icon-btn svg{transform:rotate(180deg)}


    /* small responsive tweaks */
    /*@media (max-width:520px){body{padding:20px}.header{padding:14px 16px}}*/

    /* Accessibility: disable motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .team-card {
    transition: none;
    will-change: auto;
    transform: none;
    box-shadow: none;
  }

  .team-card:hover {
    transform: none;
    box-shadow: none;
  }
}



/* ---------- Responsive breakpoints ---------- */
/* Large desktops / ultra-wide */


/* Laptop / medium screens (≤1200) */
@media (max-width: 980px) {
  .feature-container { grid-template-columns: 1fr; gap: 30px; padding: 60px 5%; }
  .left-feature-container { order: 1; }
  .feature-right { order: 2; }
  .f-r-container { aspect-ratio: 1.6; background-position: center; }
  .features-section { flex-direction: column; gap: 30px; padding: 0 4%; }
  .features-left { width: 100%; float: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 20px; }
  .features-left .feature-box { width: 100%; float: none; margin-right: 0; }
  .features-lf-img { width: 100%; order: 3; }
  .features-right { width: 100%; margin-top: 0; }
  .features-right p { margin-top: 10px; }
  .vision-sec-container { grid-template-columns: 1fr; }
  .vision-sec-left, .vision-sec-right { aspect-ratio: auto; padding: 40px 20px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-container { padding: 48px 4%; gap: 22px; }
  .f-l-content h1 { font-size: 36px; }
  .f-r-container { aspect-ratio: 1.3; background-size: cover; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  /*.team-card img { height: 300px; }*/
  .faq-section { align-items: flex-start; gap: 20px; padding: 20px 4%; }
  .faq-image { flex: 1; min-width: 40%; }
  .faq-container { width: 60%; padding: 40px; }
  .faq-container h1 { font-size: 1.6rem; }
  .faq-content h2 { font-size: 2rem; }
}

/* Tablet landscape / small laptops (≤992) */
@media (max-width: 992px) {
  
}

/* Tablet portrait / large phones (≤768) */
@media (max-width: 768px) {
  /* Layout stacks: image then content for hero/feature blocks */
  .feature-container { padding: 40px 4%; }
  .faq-section {
    padding: 0 20px;
  }
  .left-feature-container, .feature-right { width: 100%; }
  .features-section { padding: 0 3%; gap: 18px; }
  .features-left { grid-template-columns: 1fr; }
  .features-lf-img { order: 4; width: 100%; }
  .features-right p { margin-top: 8px; }
  .services-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  /*.team-card img { height: 260px; }*/
  .vision-sec-left, .vision-sec-right { aspect-ratio: auto; padding: 28px 20px; }
  /* FAQ - stack vertically and make image shorter */
  .faq-section { flex-direction: column; }
  .faq-image { width: 100%; order: 1; height: 220px; overflow: hidden; }
  .faq-image img { height: 100%; object-fit: cover; }
  .faq-container { width: 100%; order: 2; padding: 28px; max-height: none; }
  .accordion { max-height: none; }
  .panel { transition: max-height .28s cubic-bezier(.2,.9,.2,1); }
  .service-sec-container {
    width: 100%;
    padding: 0 20px;
  }
}

/* Small phones (≤600) */
@media (max-width: 600px) {
  .m-sec-container, .tech-sec-container {
    width: 100%;
    padding: 20px;
  }
  body { font-size: 15px; }
  .feature-container { padding: 0 20px; gap: 16px; }
  .f-l-content h1 { font-size: 22px; line-height: 1.25; }
  .f-l-content p, .features-right p, .services-header p { font-size: 14px; }
  .feature-box img { width: 42px; }
  .feature-box h3 { font-size: 16px; }
  /*.team-grid { grid-template-columns: 1fr; }*/
  .team-card img { height: auto; }
  .services-cards { gap: 16px; }
  .explore-link { position: static; display: inline-block; margin-top: 12px; }
  .faq-image { height: 180px; }
  .faq-container { padding: 22px; }
  .accordion { padding: 6px 0; }
  .icon-btn { width: 32px; height: 32px; }
}

/* Very small phones (≤420) */
@media (max-width: 420px) {
  .f-l-content h1 { font-size: 20px; }
  .feature-container { padding: 20px 3%; }
  .f-r-container { aspect-ratio: 1.2; background-position: top center; }
  .feature-box p { font-size: 14px; }
  .feature-box h3 { font-size: 15px; }
  /*.team-card img { height: 200px; }*/
  .faq-container h1 { font-size: 1.4rem; }
  .panel { font-size: 13px; }
  .view-btn, .explore-btn { font-size: 14px; padding: 6px 16px; }
}

/* Narrow phones / smallest devices (≤360) */
@media (max-width: 360px) {
  .f-l-content h1 { font-size: 18px; }
  .f-l-content p, .features-right p { font-size: 13px; }
  /*.team-card img { height: 170px; }*/
  .faq-image { height: 140px; }
  .faq-container { padding: 18px; }
  .icon-btn svg { width: 16px; height: 16px; }
  .feature-box img { width: 40px; margin-bottom: 8px; }
}

/* Ultra-narrow (≤340) */
@media (max-width: 340px) {
  .f-l-content h1 { font-size: 16px; }
  .f-l-content p, .feature-box p { font-size: 12px; line-height: 1.5; }
  /*.team-card img { height: 150px; }*/
  .service-sec-container { padding-left: 12px; padding-right: 12px; }
  .faq-container h1 { font-size: 1.2rem; }
  .view-btn { padding: 6px 12px; font-size: 13px; }
}

.management-section sec-top-p{
  background-color: white;
}