:root {
    --primary-blue: #0F6CBD;
    --dark-blue: #00427C;
    --light-blue: #F3F8FC;
    --bg-light: #F5F9FC;
    --text-dark: #272c37;
    --text-gray: #51565e;
    --white: #ffffff;
    --border-color: #e1e5eb;
    --success-green: #2e7d32;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1em; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/*ul { list-style: none; }*/

img { max-width: 100%; height: auto; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--light-blue);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
        
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    /*z-index: 1000;*/
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-logo, .sl-logo {
    height: 60px;
    width: auto;
}

.logo-separator {
    font-size: 24px;
    color: #ccc;
    font-weight: 300;
}

.nav {
    /*display: flex;*/
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

.nav-link:hover {
    color: var(--primary-blue);
}





.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
}

.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 60px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-bullets {
    margin: 25px 0;
}

.hero-bullets li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-gray);
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.rating-stars {
    color: #ffc107;
    font-size: 18px;
}

.rating-text, .learners-text {
    font-size: 14px;
    color: var(--text-gray);
}

.rating-text strong, .learners-text strong {
    color: var(--text-dark);
}

.hero-image {
    position: relative;
}

.banner-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.play-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-left: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.key-features {
    background: var(--light-blue);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.key-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.key-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.key-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    flex-shrink: 0;
}

.key-feature-icon i {
    font-size: 26px;
    color: var(--white);
}

.key-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.key-feature-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.program-intro {
    background: var(--white);
    padding: 80px 0;
}

.intro-content {

    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.features {
    background: var(--light-blue);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.newfeatures-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.curriculum {
    background: var(--white);
    padding: 80px 0;
}

.courses-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.course-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.course-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.course-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    gap: 20px;
}

.course-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.course-header h3 {
    flex: 1;
    font-size: 16px;
    margin: 0;
}

.course-duration {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.tools-section {
    background: var(--dark-blue);
    padding: 80px 0;
}

.tools-section .section-title {
    color: var(--white);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.tool-item {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.career-section {
    background: var(--white);
    padding: 80px 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.job-card {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.job-card h4 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.job-card .salary {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.hiring-companies {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.hiring-companies h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.companies-list {
    font-size: 16px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.demand-section {
    background: var(--light-blue);
    padding: 80px 0;
}

.demand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demand-content1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
}


.demand-text h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}


.demand-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}



/*.demand-text1 h2, h3{*/
/*    color: var(--dark-blue);*/
/*    margin-bottom: 20px;*/
/*}*/


.demand-text1 h2,
.demand-text1 h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.demand-text1 p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
} 



.demand-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
}

.demand-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-section {
    background: var(--white);
    padding: 80px 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.partners-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    color: var(--white);
}

.partners-section .section-title {
    color: var(--white);
}

.partners-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.partner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partner-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.partner-benefits {
    display: inline-block;
    text-align: left;
}

.partner-benefits li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
}

.partner-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
}

.other-programs {
    background: var(--light-blue);
    padding: 80px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.program-card h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-section {
    background: var(--white);
    padding: 80px 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.pricing-card h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 10px;
}

.pricing-tagline {
    opacity: 0.9;
    margin-bottom: 30px;
}

.pricing-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.6;
}

.current-price {
    font-size: 48px;
    font-weight: 700;
}

.discount-badge {
    background: #ff9800;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-note {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.emi-info {
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 14px;
}

.pricing-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-logo-footer {
    height: 24px;
    filter: brightness(0) invert(1);
}

.sl-logo-footer {
    height: 24px;
    filter: brightness(0) invert(1);
}

.logo-x {
    color: #666;
}

.footer-links h4, .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

/* extra added */

ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
}

.social-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
}

.footer-legal a:hover {
    color: var(--white);
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 999;
    display: none;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
}

.sticky-emi {
    font-size: 13px;
    color: var(--text-gray);
}

.sticky-actions {
    display: flex;
    gap: 15px;
}

.btn-outline-white {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--light-blue);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-bullets {
        display: inline-block;
        text-align: left;
    }
    
    .hero-rating {
        justify-content: center;
    }
    
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demand-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .key-feature-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .key-feature-icon {
        margin: 0 auto 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .demand-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sticky-footer {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    
    /*added extra*/
    
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        gap: 15px;
        z-index: 1100;
    }
    
}




















@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-bullets li {
        font-size: 14px;
    }
    
    .pricing-amount {
        flex-wrap: wrap;
    }
    
    .current-price {
        font-size: 36px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .sticky-info {
        flex-direction: column;
        gap: 5px;
    }
}

.eligibility-section {
    background: var(--white);
    padding: 80px 0;
}

.eligibility-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.eligibility-card {
    background: var(--light-blue);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.eligibility-card h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-blue);
}

.eligibility-card ul {
    list-style: none;
}

.eligibility-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
}

.eligibility-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 20px;
}

.enrollment-section {
    background: var(--light-blue);
    padding: 80px 0;
}

.enrollment-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.cohort-info {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cohort-info h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.cohort-info p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0;
}

.salary-breakdown {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.salary-breakdown h3 {
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-size: 18px;
}

.salary-levels {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.salary-level {
    text-align: center;
}

.salary-level .level {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.salary-level .range {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}

.faq-view-more {
    text-align: center;
    margin-top: 30px;
}

.partner-image {
    margin-top: 40px;
}

.partner-image img {
    max-width: 100%;
    border-radius: 12px;
}

.placement-section {
    background: var(--white);
    padding: 80px 0;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.placement-card {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.placement-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.placement-card h3 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.placement-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .eligibility-content {
        grid-template-columns: 1fr;
    }
    
    .enrollment-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .enrollment-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .salary-levels {
        flex-direction: column;
        gap: 20px;
    }
    
    .placement-grid {
        grid-template-columns: 1fr;
    }
}







/* 
#contact {
    background: #f8f9fa;
} */

.card {
    border-radius: 15px;
    border: none;
}

/* .btn-primary {
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #0096c7);
} */

.form-control {
    border-radius: 10px;
    padding: 10px;
}

iframe {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


/***************************************************************** - Newly added ***********************************************************/



.about-profile p {
    /*border-left: 3px solid #0a3d62;*/
    padding-left: 15px;
}


.ai-program {
  background: #f8f9fa;
}

.ai-card {
  background: var(--light-blue);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  border: 1px solid var(--border-color);
}

.ai-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.ai-card h5 {
  /*font-weight: 400;*/
  margin-bottom: 10px;
  color: var(--dark-blue);
 
}

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

/* Hover Effect */
.ai-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Gradient Hover */
.ai-card:hover i {
  color: #6610f2;
}









.collaborators-section {
  background: #f8fafc;
}




.logo-box {
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  height: 70px;
  width: auto;
}



/*.logo-box {*/
  /*width: 180px;        */
  /*height: 80px;        */
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin: auto;*/
/*}*/

/*.logo-box img {*/
/* max-width: 100%;*/
/*  max-height: 100%;*/
/*  object-fit: contain;*/
/*}*/


/*.logo-box {*/
/*  background: #fff;*/
/*  padding: 20px;*/
/*  border-radius: 12px;*/
/*  transition: 0.3s;*/
/*  box-shadow: 0 5px 15px rgba(0,0,0,0.05);*/
/*}*/

/*.logo-box img {*/
/*  max-width: 100%;*/
/*  height: 50px;*/
/*  object-fit: contain;*/
/*  filter: grayscale(100%);*/
/*  transition: 0.3s;*/
}

/*.logo-box:hover {*/
/*  transform: translateY(-8px);*/
/*}*/

/*.logo-box:hover img {*/
/*  filter: grayscale(0%);*/
/*}*/






















/*logo-slider*/


/*.logo-slider {*/
/*  overflow: hidden;*/
/*  background: #fff;*/
/*  padding: 20px 0;*/
/*}*/

/*.logo-track {*/
/*  display: flex;*/
/*  width: calc(250px * 10);*/
/*  animation: scroll 20s linear infinite;*/
/*}*/

/*.logo-track img {*/
/*  width: 200px;*/
/*  height: 60px;*/
/*  object-fit: contain;*/
/*  margin: 0 25px;*/
/*  filter: grayscale(100%);*/
/*  transition: 0.3s;*/
/*}*/

/*.logo-track img:hover {*/
/*  filter: grayscale(0%);*/
/*  transform: scale(1.1);*/
/*}*/

/*@keyframes scroll {*/
/*  0% {*/
/*    transform: translateX(0);*/
/*  }*/
/*  100% {*/
/*    transform: translateX(-50%);*/
/*  }*/
/*}*/








/******************************************************************feature card*/

/*.feature-card {*/
/*    background: var(--white);*/
/*    padding: 35px;*/
/*    border-radius: 12px;*/
/*    box-shadow: var(--shadow-sm);*/
/*    text-align: center;*/
/*    transition: var(--transition);*/
/*}*/

/*.feature-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: var(--shadow-md);*/
/*}*/

/*.feature-icon {*/
/*    font-size: 48px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.feature-card h3 {*/
/*    font-size: 18px;*/
/*    margin-bottom: 12px;*/
/*    color: var(--dark-blue);*/
/*}*/

/*.feature-card p {*/
/*    font-size: 14px;*/
/*    color: var(--text-gray);*/
/*    margin: 0;*/
/*}*/




















/************************************************.jobs-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*    gap: 25px;*/
/*    margin-top: 40px;*/
/*}*/

/*.job-card {*/
/*    background: var(--light-blue);*/
/*    padding: 30px;*/
/*    border-radius: 12px;*/
/*    text-align: center;*/
/*    border: 1px solid var(--border-color);*/
/*}*/

/*.job-card h4 {*/
/*    font-size: 16px;*/
/*    color: var(--dark-blue);*/
/*    margin-bottom: 10px;*/
/*}*/

/*.job-card .salary {*/
/*    color: var(--primary-blue);*/
/*    font-weight: 600;*/
/*    font-size: 18px;*/
/*    margin: 0;*/
/*}*/




















