
/* ============ Startup training program SECTION ============ */
.startup-traing-section {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 90px 10%;

  color: #fff;
  overflow: hidden;

}

.startup-traing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 40, 0.7);
  z-index: 0;
}

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

.startup-traing-left {
  padding-right: 40px;
}

.startup-traing-left .sub-text {
  font-size: 14px;
  color: #ed8f29;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.startup-traing-left h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d0435;
}

.startup-traing-left h2 span {
  color: #150347;
}
.startup-traing-left p{
  color:#111;
  line-height: 1.8;
  font-size: 1rem;
}
.desc {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 15px;
}

.read-more {
  background: #0c277e;
  color: #fff;
  border: none;
  padding: 12px 28px;
 
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.startup-traing-left a{
  text-decoration: none;
}
.read-more:hover {
  
  background: #33457e;
}


/* Right container */
.startup-traing-right {
  position: relative; /* anchor for absolute children */
  padding: 120px 0;   /* space for top & bottom taglines */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tagline wrapper */
.startup-tagline {
  position: absolute;
  inset: 0;
  pointer-events: none; /* optional */
}

/* Shared style */
.startup-tagline h3 {
  background-color: #ed8f29;
  color: white;
  padding: 1rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  font-size: 1rem;
  width: fit-content;
}

/* Line 1 — TOP */
#line1 {
  position: absolute;
  top: 50px;
right: 0;
}

/* Line 2 — BOTTOM RIGHT */
#line2 {
  position: absolute;
  bottom: 40px;
  left: 0;
}

.key-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 18px 22px;
  color: #222;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.number i{
  color:#ed8f29
}
 
/*key activities============================*/
.work-process {
  width: 100%;
  height: auto;
  
  padding: 80px 10%;
  background: #fff;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h4 {
  color: #ea6303;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-header h1 {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #150347;
}

.section-header h1 span {
  color: #ed8f29;
}

.section-header p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.steps {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 20px;
  position: relative;
}

.step {
  flex: 1;
  min-width: 220px;
  height: 220px;
  background: #f9f9f9;
  border-radius: 50%;
  border : 3px solid rgb(162, 162, 164);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.4s;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  background: #0c277e;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.step:hover h3{
  color: #0c277e;
}
.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 30px;
  height: 4px;
  background: #0096bf;
}

.step:last-child::after {
  display: none;
}
.steps .step:nth-child(1) {
  background: #e3f2fd; /* Light Blue */
  border-left: 5px solid #2196f3;
}

.steps .step:nth-child(2) {
  background: #e8f5e9; /* Light Green */
  border-left: 5px solid #4caf50;
}

.steps .step:nth-child(3) {
  background: #fff3e0; /* Light Orange */
  border-left: 5px solid #fb8c00;
}

.steps .step:nth-child(4) {
  background: #fce4ec; /* Light Pink */
  border-left: 5px solid #e91e63;
}

.steps .step:nth-child(5) {
  background: #ede7f6; /* Light Purple */
  border-left: 5px solid #673ab7;
}

.step .icon {
  width: 50px;
  height: 50px;

  background: #e0fffa;
  color: #00bfa6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: 0.3s;
  margin-left: 4rem;
  margin-bottom: 1rem;
}
.icon i{
  color:#ed8f29;
}
.step:hover .icon {
 
  color: #fff;
}

.step h3 {
  margin-bottom: 10px;
  color: #171152;
  font-weight: 600;
}


@media (max-width: 900px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step::after {
    display: none;
  }
}


/* activities Section */
        .key-activity-section {
            padding: 80px 10%;
        }

        /* TOP SECTION */
        .top-section {
            text-align: center;
            margin-bottom: 100px;
        }

        .top-section h2 {
            font-size: 2.2rem;
            color: #111;
            margin-bottom: 15px;
        }

        .top-section h2 span {
            color: #f9b233;
        }

        .top-section p {
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* Cards Layout */
        .activity-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }

        .card {
            background: #fff;
            border-radius: 20px;
            padding: 10px 10px;
            width: 120px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }

        .card .icon {
            font-size: 35px;
            margin-bottom: 15px;
            margin-left: 5.5rem;
            color:#00bfa6;
        }

        .card h3 {
            margin-bottom: 10px;
            color: #222;
            font-size: 18px;
        }

        .card p {
            font-size: 14px;
            color: #666;
        }

        .card:hover {
            background: #4a4a8a;
            color: #fff;
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

        .card:hover .icon {
            filter: brightness(1.2);
        }

        .card:hover h3,
        .card:hover p {
            color: #fff;
        }

        /* BOTTOM SECTION */
        .bottom-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .text-content {
            flex: 1;
            min-width: 300px;
        }

        .text-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #111;
        }

        .text-content h2 span {
            color: #f9b233;
        }

        .text-content > p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .list-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .num {
            background: #f9b233;
            color: #fff;
            font-weight: 600;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .info h4 {
            color: #222;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .info p {
            color: #666;
            font-size: 14px;
        }

        .image-content {
            flex: 1;
            text-align: right;
            position: relative;
            min-width: 280px;
        }

        .image-content img {
            width: 100%;
            max-width: 420px;
            border-radius: 100px 0 100px 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }

        .image-content img:hover {
            transform: scale(1.02);
        }
.icon {
  width: 70px;
  height: 70px;
  background: #e0fffa;
  color: #aef3ea;
  border-radius: 50%;
  display: flex;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: 0.3s;
  margin-bottom: 1rem;
}

/* 📱 Responsive Design for Startup Training Section */
@media (max-width: 992px) {
 
  .startup-traing-section {
    flex-direction: column;            /* Stack vertically */
    align-items: center;
    padding: 30px 6%;
    text-align: center;
  }

  .startup-traing-left,
  .startup-traing-right {
    width: auto;
    height: auto;
  }

  .startup-traing-left {
    order: 1;                          /* Left content appears first */
    padding-right: 0;
    margin-bottom: 40px;
  }

  .startup-traing-left h2 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .startup-traing-left p {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    text-align: center;
  }

  .read-more {
    display: inline-block;
    margin-top: 20px;
    font-size: 15px;
  }

  .startup-traing-right {
    order: 2;                          /* Appears below */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: auto;
    height: auto;
  }

  /* Taglines repositioned for mobile */
  .startup-tagline #line1,
  .startup-tagline #line2 {
    position: relative;
    left: 0;
    top: 0;
    width: 90%;
    text-align: center;
    font-size: 14px;
    margin: 10px 0;
  }

  /* Boxes aligned neatly below */
  .key-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px 18px;
    text-align: left;
  }

  .number {
    font-size: 18px;
    padding: 8px 14px;
    margin-right: 12px;
  }

  .number i {
    font-size: 20px;
  }

}

/* 📱 Even Smaller Devices (Under 600px) */
@media (max-width: 600px) {
  .startup-traing-section {
    padding: 50px 5%;
  }
  .startup-traing-section{
        width: 100%;
    height: auto;
    position: relative;
   
  
 
    color: #fff;
    overflow: hidden;
} 
  

  .startup-traing-left h2 {
    font-size: 1.6rem;
  }

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

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

  .startup-traing-right {
    gap: 12px;
  }

  .key-box {
    padding: 12px 15px;
    max-width: 90%;
  }

  .number {
    font-size: 16px;
    padding: 6px 10px;
  }

  .startup-tagline #line1,
  .startup-tagline #line2 {
    width: 70%;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    
  }
}

.scheme-container{
  padding: 2rem;
}
.scheme-container h2{
  text-align: center;
  
}

.GovernmentScheme-slider {
       display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    }
  .slider-window {
    overflow: hidden;     
    width: 90%;   
    display: flex;   
    
}
 .slider-cont {
        display: flex;
        gap: 10px;
        transition: transform 0.4s ease;
        padding: 5rem;
    }

    .Scheme-card {
        flex: 0 0 auto;
        width: 260px;  
        height: 500px;            /* FIXED WIDTH */
        background: #fff;
        padding: 20px;
        border-top-left-radius: 12px;
        border-bottom-right-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: all 0.35s ease;
      
        overflow: hidden;
        max-height: 180px;        /* DEFAULT HEIGHT */
    }

    /* Colorful top borders */
   
    .Scheme-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
        object-position: center;
        position: relative;
        top: 5%;
        left: 50%;
        transform: translateX(-50%); 
    }

    .slider-cont:has(.Scheme-card:hover) .Scheme-card:not(:hover) {
  filter: blur(4px); /* Apply blur to all Scheme-cards that are NOT being hovered */
  opacity: 0.5;
  


  transition: filter 0.3s ease; /* Smooth the transition */
}

.arrow.disabled {
    opacity: 0.3;
    pointer-events: none;
}

    /* HIDDEN CONTENT */
    .full-info {
        opacity: 0;
        max-height: 0;
        transition: all 0.35s ease;
    }

    /* EXPANDED STATE (HEIGHT INCREASED ONLY) */
    .Scheme-card.expanded {
        max-height: 700px;
    }

    .Scheme-card.expanded .full-info {
        opacity: 1;
        max-height: 700px;
        margin-top: 10px;
    }

    /* Slider arrows */
    .scheme-container .arrow-scheme{
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        font-size: 30px;
        cursor: pointer;
        color: #333;
        user-select: none;
        padding: 12px 20px;
        border-radius: 50%;
        z-index: 20;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        margin: 1rem;
    }

    .left-arrow { left: -10px; }
    .right-arrow { right: -10px; }
 
.startup-training-program{
  padding: 6rem;
}
        .startup-training-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .startup-program-header {
            text-align: left;
            margin-bottom: 2rem;}

        .startup-program-header h2 {
            font-size: 2rem;
            color: #0d0435;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .startup-program-header p {
            color: #0c277e;
            font-size: 1.1rem;
            max-width: 600px;
        }

        .startup-training-prog-grid {
          width: auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .startup-training-program-card {
            position: relative;
            height: 15rem;
            width: auto;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }

        .startup-training-program-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
           
        }

        .startup-training-program-card:hover img {
            transform: scale(1.1);
        }

        .startup-training-program-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top:0;
            background: linear-gradient( rgba(8, 2, 70, 0.5));
            padding: 5rem;
        }

        .startup-training-program-overlay h3 {
            color: white;
            font-size: 1.2rem;
            margin: 0;
            position: absolute;
            bottom: 0; 
            left: 0; 
             right: 2px;
             padding-left: 4px;
             padding-right: 20px ;
             padding-top:20px ;
             padding-bottom: 20px ;
            
        }

       @media (max-width: 500px) {
        .startup-training-program{
          padding: 0;
        }
  .startup-training-container{

padding: 0.4rem;
  }
  .startup-training-prog-grid{
    gap:5px;
  }

  .slider-cont{
    padding: 0.2rem;
  }
  .scheme-container{
    padding: 0;
  }
  .scheme-container .arrow-scheme{
    font-size: 14px;
    padding: 10px;
  }
  .startup-tagline {
  position:static;
  }
  
}