
        .read-more-btn {
              background-color:#131673;
            color: white;
            padding: 14px 35px;
            border: none;
           position: relative;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 10px;
            text-decoration: none;
        }

        
        .read-more-btn:hover {
            transform: translateY(-5px);
            transition: 1s ease ;
            box-shadow: 0 8px 20px rgba(2, 12, 56, 0.4);
        }

       
       
/* ============ CONSULTING SECTION ============ */
.consulting-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10%;
  background: #6f42c1;
   
  color: #fff;
  overflow: hidden;
}

.consulting-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 40, 0.75);
  z-index: 0;
}

.consulting-left,
.consulting-right {
  position: relative;
  z-index: 1;
  flex: 1;
}

.consulting-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-right: 30px;
}

.cons-img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.tall {
  grid-row: span 2;
}

.consulting-right .sub-text {
  color: #432903;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.consulting-right h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.consulting-right h2 span {
  color: #ce8d13;
}

.consulting-right .desc {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  padding: 0;
  columns: 2;
  font-size: 15px;
}

.checklist li {
  margin-bottom: 10px;
}

.category-section h2{
  margin-bottom: 1rem;
  text-align: center;
  color: #131673;
}
.category-section p{
  text-align: center;
}
/* Slider container */
.govt-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

/* Wrapper */
.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Slider track */
.govt-slider {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    animation: autoSlide 25s linear infinite;
}

/* Individual card */
.category-card {
    min-width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
   
    text-align: center;
    flex-shrink: 0;
}

.category-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

/* Arrow buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #00000050;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    z-index: 10;
}

.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }


/* Stop animation on hover */
/* .slider-container:hover .slider {


      /* 📱 Responsive Design for Mobile Screens */
@media (max-width: 768px) {
    .incubation-container {
        flex-direction: column;         /* Stack vertically */
        gap: 40px;                      /* Add space between top & bottom sections */
        align-items: center;            /* Center both sections */
        padding: 40px 20px;
    }

    .incubation-left,
    .incubation-right {
        width: 100%;                    /* Take full width */
        height: auto;                   /* Remove fixed height */
    }

    .incubation-left h2 {
        font-size: 28px;                /* Adjust heading size */
        text-align: center;
    }

    .incubation-left p {
        font-size: 15px;
        /* text-align: center; */
    }

    .read-more-btn {
        display: block;
        margin: 0 auto;                 /* Center button */
    }

    .image-container {
        left: 0;                        /* Remove left offset */
        width: 100%;                    /* Full width for image */
        max-width: 90%;                 /* Keep some spacing */
    }

    .info-overlay {
        padding: 20px 15px;
        gap: 15px;
    }

    .info-row {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }

    .info-row .icon {
        font-size: 28px;
        margin-right: 10px;
    }

    .tag-line {
        position: relative;
        width: 90%;
        left: 0;
        top: 0;
        margin: 20px auto;
        text-align: center;
        font-size: 14px;
        padding: 0.8rem 1rem;
    }
}

/* 🧭 Optional: Even smaller screens (like 480px and below) */
@media (max-width: 480px) {
    .incubation-left h2 {
        font-size: 24px;
    }

    .incubation-left p {
        font-size: 14px;
    }

    .read-more-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* 📱 Responsive Design for Consulting Section */
@media (max-width: 992px) {
  .consulting-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: 70px 5%;
  }

  .consulting-right {
    order: 1;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 20px auto;
  }

  .consulting-right h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .consulting-right .desc {
    font-size: 15px;
    color: #f5f5f5;
    /* text-align: center; */
    margin-bottom: 20px;
  }

  .checklist {
    order: 2;
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    columns: 1;
    text-align: left;
    width: 90%;
  }

  .checklist li {
    margin-bottom: 10px;
    font-size: 15px;
  }

  /* Images below text — smaller & fitting one screen */
  .consulting-left {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 420px;        /* Centered narrower width */
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .cons-img img {
    width: 100%;
    height: 120px;           /* Small height to fit all images on one screen */
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cons-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
}

/* 📱 Even Smaller Devices (Under 600px) */
@media (max-width: 600px) {
  .consulting-section {
    padding: 60px 5%;
  }

  .consulting-right h2 {
    font-size: 1.6rem;
  }

  .consulting-left {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row even on small phones */
    max-width: 360px;
    gap: 8px;
  }

  .cons-img img {
    height: 100px;           /* Smaller image height */
    border-radius: 8px;
  }

  .checklist li {
    font-size: 14px;
  }

  .consulting-right .desc {
    font-size: 14px;
    line-height: 1.6;
  }
}


.inc{
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 5rem;
  gap:30px;
  padding-right: 5rem;
  
}
.inc-left{
  width: 50%;
  height: 100%;
  padding-left: 10rem;
}
.inc-left .sub-text {
  color: #f89b1c;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.inc-left h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.inc-left h2 span {
  color: #f89b1c;
}
.inc-left .desc {
 
           font-size: 16px;
            line-height: 1.8;
            color:#010b34;
            margin-bottom: 20px;
        
}
.inc-left p{
  
            font-size: 16px;
            line-height: 1.8;
            color:#010b34;
            margin-bottom: 20px;
        
}
.inc-right{
  

   height: 100%;
   
  
}
.box-wrapper{
   position: relative;
   top:5%;
   left: 5%;
   
   width: 80%;
   height: 50%;
}
.service-b {
  gap: 10px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.num {
  background: #0f8a2c;
  color: white;
  font-weight: 700;
  font-size: 20px;
  padding: 10px 18px;
  border-radius: 8px;
  margin-right: 15px;
}

.service-t h3 {
  margin: 0;
  color: #222;
  font-size: 18px;
}

.service-t p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}
.service-b:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
        }

.tag-line{
    position: relative;
    width:60%;
    top:0%;
    left:50%;
    background: #f89b1c;
    z-index: 100;
    padding:1rem 1rem;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    color:white;
    display: flex;
    gap: 5px;
   }
     
  .benefits-section{
  background-image: url("/assets/innovationHand.jpg");
  background-color: #c7d8f8;
  background-size: cover;
  background-position: center;
  padding: 40px 18px;
  position: relative;
  color: aliceblue;
}

/* Blue overlay */
.benefits-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 1, 36, 0.5);
}

/* Content on top */
.benefits-inner{
  position: relative;
  width: 100%;
  margin: auto;
  text-align: center;
  z-index: 2;
}

.benefits-title{
  font-size: 32px;
  font-weight: 700;
  color: aliceblue;
  margin-bottom: 45px;
  line-height: 1.3;
}

/* GRID */
.benefits-grid{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items:center;
  flex-wrap: wrap;
}

/* CARD STYLE (matching exactly image) */
.benefit-item{
  width: 15%;
  text-align: center;
  padding: 10px;
  transition: transform .25s ease;
}

.benefit-item:hover{
  transform: translateY(-8px);
}


/* TEXT */
.benefit-title{
  font-size: 20px;
  font-weight: 600;
  color: aliceblue;
  margin-top: 10px;
}

.benefit-line{
  width: 10rem;
  height: 2px;
  background: #f89b1c;
  margin: 10px auto;
  border-radius: 2px;
}

.benefit-desc{
  font-size: 13px;
  color: rgba(220,230,255,0.85);
  line-height: 1.5;
}

.incubation-section {
    padding: 60px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}

.incubation-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 0 5rem;
}

.section-tag {
    color: #c18c1e;
    font-weight: 600;
    font-size: 14px;
}

.incubation-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin: 15px 0 20px;
}

.incubation-title span {
    color: #e79028;
}

.incubation-desc {
    color: #555;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 550px;
}

.consult-btn {
    margin-top: 10px;
    background: #0a2a5c;
    color: white;
    padding: 14px 26px;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.consult-btn:hover {
    background: #081f44;
}

/* RIGHT SIDE */
.top-banner {
    background: linear-gradient(90deg, #ff8a00, #e66a00);
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 20px;
}

/* INFO CARDS */
.info-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.info-card .icon {
    width: 40px;
    height: 40px;
    background: #eef8f2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 20px;
}

.info-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .incubation-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media(max-width: 900px){
  .benefit-item{ width: 45%; }
}

@media(max-width: 480px){
  .benefit-item{ width: 100%; }
  .benefits-title{ font-size: 26px; }
}

@media (max-width: 1024px) {
  .inc {
    padding-top: 3rem;
    padding-right: 2rem;
    gap: 20px;
  }

  .inc-left {
    padding-left: 5rem;
  }

  .inc-left h2 {
    font-size: 2rem;
  }

  .inc-right {
    height: 70%;
  }

  .tag-line {
    width: 70%;
    left: 40%;
  }
}

/* -------------------------
   Tablets (768px)
   ------------------------- */
@media (max-width: 768px) {
  .inc {
    width: auto;
    height: auto;
    flex-direction: column;
    padding-right: 0;
    padding-top: 3rem;
    gap: 40px;
  }

  .inc-left,
  .inc-right {
    width: auto;
    height: auto;
    padding-left: 2rem;
  }



  .box-wrapper {
    width: 90%;
    top: 5%;
    left: 5%;
  }

  .tag-line {
    width: 80%;
    left: 10%;
    top: -5%;
    font-size: 14px;
  }
}

/* -------------------------
   Mobile (576px)
   ------------------------- */
@media (max-width: 300px) {
  .inc{
    width: auto;
    height: auto;
  }
  .inc-left {
    padding-left: 1.5rem;
  }

  .inc-left h2 {
    font-size: 1.7rem;
  }
 .inc-right{
  width: auto;
  height: auto;
 }
  .inc-left p,
  .inc-left .desc {
    font-size: 14px;
  }

  .service-b {
    padding: 12px 15px;
  }

  .num {
    font-size: 16px;
    padding: 8px 12px;
  }

  .service-t h3 {
    font-size: 16px;
  }

  .service-t p {
    font-size: 13px;
  }

  .inc-right {
    height: 250px;
    border-radius: 15px;
  }

  .tag-line {
    width: 90%;
    left: 5%;
    top: -5%;
    padding: 0.8rem;
  }
}

/* -------------------------
   Small Mobile (400px)
   ------------------------- */
@media (max-width: 400px) {
  .inc-left h2 {
    font-size: 1.5rem;
  }

  .num {
    font-size: 14px;
    padding: 6px 10px;
  }

  .tag-line {
    font-size: 12px;
    padding: 0.6rem;
  }
}