.orbit-it-section {
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

/* Container */
.orbit-it-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.orbit-it-header {
    text-align: center;
    margin-bottom: 60px;
}

.orbit-it-header h1 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #252525;
}

.orbit-it-header h2 {
    font-size: 22px;
    color: #0073e6;
    margin-bottom: 15px;
}

.orbit-it-header p {
    max-width: 1100px;
    margin: auto;
    font-size: 16px;
}

/* Course Cards Grid */
.orbit-it-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Course Cards */
.orbit-it-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.orbit-it-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s ease;
}

.orbit-it-content {
    padding: 20px;
}

.orbit-it-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.orbit-it-content p {
    font-size: 15px;
    color: #555;
}

/* Hover Effect */
.orbit-it-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.orbit-it-card:hover img {
    transform: scale(1.05);
}

/* Certification Courses Wrapper (Text Left, Image Right) */
.orbit-it-certification-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.orbit-it-cert-text {
    flex: 1;
}

.orbit-it-cert-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0073e6;
}

.orbit-it-cert-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.orbit-it-cert-list {
    list-style: none;
    padding: 0;
}

.orbit-it-cert-list li {
    padding: 8px 0;
    font-size: 15px;
    transition: 0.3s;
}

.orbit-it-cert-list li:hover {
    color: #0073e6;
    transform: translateX(5px);
}

/* Certification Image */
.orbit-it-cert-img {
    flex: 1;
    text-align: center;
}

.orbit-it-cert-img img {
    max-width: 100%;
    border-radius: 12px;
}

.corses-sub-menu {
    height: 500px;
    overflow-y: scroll;
}

.freshers-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4ff, #eef2ff);
    overflow: hidden;
}

.freshers-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.freshers-image {
    flex: 1;
    text-align: center;
}

.freshers-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform .5s ease;
}

.freshers-image img:hover {
    transform: scale(1.05);
}

/* CONTENT */
.freshers-content {
    flex: 1;
}

.freshers-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.freshers-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* FEATURES */
.freshers-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.feature-box {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    cursor: pointer;
}

.feature-box img {
    width: 30px;
    height: 30px;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.25);
}

/* BUTTON */
.freshers-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4f46e5;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.freshers-btn:hover {
    background: #3730a3;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.job-assist-section {
    padding: 60px 0;
    background-image: url("../img/bg/event.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.job-assist-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #096f99;
    z-index: -1;
}

.job-assist-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
        margin-bottom: 40px;
}

/* CONTENT */
.job-assist-content {
    flex: 1;
}

.job-assist-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #bad532;
}

.job-assist-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #eef2ff;
}

/* POINTS GRID */
.assist-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.assist-box {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    font-weight: 500;
}

.assist-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.25);
}

/* BUTTON */
.assist-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4f46e5;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.assist-btn:hover {
    background: #3730a3;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

/* IMAGE */
.job-assist-image {
    flex: 1;
    text-align: center;
}

.job-assist-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform .5s ease;
}

.job-assist-image img:hover {
    transform: scale(1.05);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    border-radius: 2px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: 30px 0 0;
}

/* Alternate background colors */
.benefit-card:nth-child(odd) {
    background: #0886b9;
    /* Dark */
    color: #fff;
}

.benefit-card:nth-child(even) {
    background: #ffffff;
    /* Light */
    color: #333;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Icon colors for contrast */
.benefit-card:nth-child(odd) .benefit-icon {
    color: #ffcc00;
}

.benefit-card:nth-child(even) .benefit-icon {
    color: #ff6f61;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.5;
}
.img-box2 .img1 .career-img {
    border-radius: 24px;
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.testimonial-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #817f7f;
}
.col-lg-4:nth-child(1) .testimonial-card  { background: #f0f9ff; }
.col-lg-4:nth-child(2) .testimonial-card  { background: #e6f4ff; }
.col-lg-4:nth-child(3) .testimonial-card  { background: #eef2ff; }
.col-lg-4:nth-child(4) .testimonial-card  { background: #f0fdf4; }
.col-lg-4:nth-child(5) .testimonial-card  { background: #ecfdf5; }
.col-lg-4:nth-child(6) .testimonial-card  { background: #fff7ed; }
.col-lg-4:nth-child(7) .testimonial-card  { background: #fffbeb; }
.col-lg-4:nth-child(8) .testimonial-card  { background: #fef2f2; }
.col-lg-4:nth-child(9) .testimonial-card  { background: #fdf4ff; }
.col-lg-4:nth-child(10) .testimonial-card { background: #f5f3ff; }
.col-lg-4:nth-child(11) .testimonial-card { background: #e0f2fe; }
.col-lg-4:nth-child(12) .testimonial-card { background: #e0e7ff; }
.col-lg-4:nth-child(13) .testimonial-card { background: #dcfce7; }
.col-lg-4:nth-child(14) .testimonial-card { background: #fce7f3; }
.col-lg-4:nth-child(15) .testimonial-card { background: #ede9fe; }
.col-lg-4:nth-child(16) .testimonial-card { background: #f1f5f9; }
.col-lg-4:nth-child(17) .testimonial-card { background: #f8fafc; }
.col-lg-4:nth-child(18) .testimonial-card { background: #ecfeff; }
.col-lg-4:nth-child(19) .testimonial-card { background: #fff1f2; }
.col-lg-4:nth-child(20) .testimonial-card { background: #f3f4f6; }

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.testimonial-card:hover .testimonial-img img {
    transform: scale(1.1);
}

.testimonial-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-content span {
    font-size: 14px;
    color: #777;
}
 /* Container */
.oa-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Section */
.oa-career-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
}

/* Header */
.oa-career-header {
    text-align: center;
    margin-bottom: 20px;
}

.oa-career-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.oa-career-header p {
    font-size: 16px;
    color: #555;
}

/* Custom Grid */
.oa-career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.oa-career-intro {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 16px;
    line-height: 28px;
    color: #444;
}

.oa-career-card p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
    color: #555;
}

.oa-placement-box {
    margin-top: 70px;
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 2px dashed #0886b9;
}
/* Responsive */
@media (max-width: 768px) {
    .oa-career-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.oa-career-card {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
}

/* Child 1 */
.oa-career-card:nth-child(1) {
    background: #e3f2fd;   /* Corporate Blue */
    border: 1px solid #0886b9;
}

/* Child 2 */
.oa-career-card:nth-child(2) {
    background: #e8f5e9;   /* Soft Green */
    border: 1px solid #97f8a1;
}

/* Child 3 */
.oa-career-card:nth-child(3) {
    background: #fff3e0;   /* Warm Orange */
    border: 1px solid #f8d8a4;
}

/* Child 4 */
.oa-career-card:nth-child(4) {
    background: #f3e5f5;   /* Professional Purple */
    border: 1px solid #ea9ff6;
}

/* Child 5 */
.oa-career-card:nth-child(5) {
    background: #e0f7fa;   /* Teal Blue */
    border: 1px solid #acf0f9;
}

/* Child 6 */
.oa-career-card:nth-child(6) {
    background: #fce4ec;   /* Corporate Pink */
    border: 1px solid #f9b2ca;
}

/* Hover Effect */
.oa-career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* Image */
.oa-career-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Hover Effect */
.oa-career-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #0886b9;
}

/* Animated Top Border */
.oa-career-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    transition: 0.4s ease;
}

.oa-career-card:hover::before {
    width: 100%;
}

/* List */
.oa-career-card ul {
    padding-left: 20px;
}

.oa-career-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}
.oa-client-resource {
    padding: 90px 0;
    background: linear-gradient(135deg, #f4f8ff, #eef3ff);
}

/* Content Styling */
.oa-client-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.oa-client-content p {
    color: #555;
    line-height: 28px;
    margin-bottom: 15px;
}

.oa-client-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.oa-client-list li {
    margin-bottom: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.oa-client-list li:hover {
    transform: translateX(8px);
    color: #0d6efd;
}

/* Image Styling */
.oa-client-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}

.oa-client-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Hover Effects */
.oa-client-image:hover img {
    transform: scale(1.08);
}

.oa-client-image:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
/* Responsive */
@media (max-width: 992px) {
    .job-assist-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .job-assist-content h2 {
        font-size: 28px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .freshers-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .freshers-content h2 {
        font-size: 28px;
    }

    .freshers-features {
        justify-content: center;
    }
}

/* Responsive */
@media(max-width: 900px) {
    .orbit-it-certification-wrapper {
        flex-direction: column;
    }

    .orbit-it-cert-img {
        margin-top: 30px;
    }
}