/* ===== FINC - Find My Course Section ===== */
.finc-choose-course {
  background-color: #fff;
}

.finc-course-box {
  border-radius: 50px;
  overflow: hidden;
}

.finc-bg-img {
  object-fit: cover;
  height: 100%;
  min-height: 350px;
}

.finc-overlay {
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
}

.finc-content {
  max-width: 450px;
}

.finc-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: white;
}

.finc-subheading {
  font-size: 1.1rem;
  line-height: 1.5;
}

.finc-btn {
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
}



        .finc-placement-section {
            background: #ffffff;
            padding: 60px 0;
        }

        .finc-equal-row {
            display: flex;
            flex-wrap: wrap;
        }

        .finc-equal-row > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }

        /* Left Image Section */
        .finc-image-box {
            background: #F7F6F6 url(../img/Placement-Logos/placement-bg.svg);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            min-height: 280px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            /* padding: 20px; */
        }

        .finc-placement-img {
            width: 100%;
            max-width: 300px;
            height: auto;
            object-fit: contain;
            object-position: bottom;
            position: relative;
            z-index: 2;
        }

        .finc-doodle {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 100px;
            height: auto;
            z-index: 3;
        }

        .finc-star {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 30px;
            height: 30px;
            z-index: 3;
        }

        .finc-recruiters-box {
            flex-shrink: 0;
            border-radius: 15px;
        }

        .finc-recruiters-box h5 {
            font-size: 1.1rem;
            color: #333;
        }

        .finc-logo {
            max-height: 50px;
            width: auto;
            max-width: 80px;
            object-fit: contain;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }

        .finc-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        /* Right Text Section */
        .finc-text-box {
            height: 100%;
            background: #f8f9fa;
            border-radius: 15px;
        }

        .finc-title {
            font-weight: 700;
            font-size: 2rem;
            line-height: 1.3;
            color: #2d3748;
        }

        .finc-highlight {
            color: #ff5e00;
        }

        .finc-desc {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        .finc-btn {
            border-radius: 25px;
            padding: 12px 30px;
            background: linear-gradient(180deg, #ff6600 0%, #ff5204 0%, #ff270d 100%);
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white !important;
        }

        .finc-btn:hover {
            background: #1a202c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Stats Cards */
        .finc-stats {
            margin-top: 30px;
        }

        .finc-stats .finc-card {
            border: 1px solid #e2e8f0;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .finc-stats .finc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border-color: #cbd5e0;
        }

        .finc-counter {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .finc-label {
            font-size: 0.85rem;
            color: #718096;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .finc-image-box {
                min-height: 320px;
            }

            .finc-placement-img {
                max-width: 280px;
            }

            .finc-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 767px) {
            .finc-placement-section {
                padding: 40px 0;
            }

            .finc-image-box {
                min-height: 350px;
                margin-bottom: 20px;
            }

            .finc-title {
                font-size: 1.6rem;
            }

            .finc-counter {
                font-size: 1.5rem;
            }

            .finc-stats .row {
                margin: 0 -5px;
            }

            .finc-stats [class*="col-"] {
                padding: 0 5px;
            }
        }

        @media (max-width: 575px) {
            .finc-stats .col-sm-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .finc-counter {
                font-size: 1.3rem;
            }

            .finc-label {
                font-size: 0.75rem;
            }
        }
