p{
    font-weight:normal !important;
    }
      /* Modern CSS with animations and responsive design */
      .unc-banner-section {
        position: relative;
        padding: 5rem 0 0 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        overflow: hidden;
      }
      
      .unc-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }
      
      .unc-banner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
      
      .unc-banner-content {
        position: relative;
        z-index: 2;
      }
      
      .unc-badge {
           display: inline-block;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        color: white;
        padding: 5px 10px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 10px;
        box-shadow: 0 4px 6px rgba(255, 84, 33, 0.2);
        animation: pulse 2s infinite;
      }
      
      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }
    
      
      .unc-gradient-text {
        background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      
      /* .unc-subheading {
        font-size: 1.25rem;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 2rem;
      } */
      
      .unc-ratings-wrapper {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2.5rem;
      }
      
      .unc-rating-card {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
      
      .unc-stars {
        color: #f59e0b;
        font-size: 1.25rem;
      }
      
      .unc-rating-text {
        font-weight: 600;
        color: #334155;
      }
      
      .unc-platform-ratings {
        display: flex;
        gap: 1rem;
      }
      
      .unc-platform {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #475569;
      }
      .unc-platform img{
        height: auto;
      }
      
      .unc-cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
      }
      
      .unc-primary-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
      }
      
      .unc-primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
      }
      
      .unc-secondary-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(255, 84, 33, 0.2);
      }
      
      .unc-secondary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(255, 84, 33, 0.3);
      }
      
      .unc-outline-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
        color: #2563eb;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid #2563eb;
        transition: all 0.3s ease;
      }
      
      .unc-outline-btn:hover {
        background: rgba(37, 99, 235, 0.05);
        transform: translateY(-2px);
      }
      
     
      
      .unc-feature-item {
        background: white;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      
      .unc-feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      }
      
      .unc-feature-icon {
        font-size: 1.5rem;
        background: #e0e7ff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
      }
      
      .unc-feature-text {
        display: flex;
        flex-direction: column;
      }
      
      .unc-feature-count {
        font-weight: 700;
        color: #1e293b;
        font-size: 1.25rem;
      }
      
      .unc-feature-text span:last-child {
        font-size: 0.875rem;
        color: #64748b;
      }
      
      .unc-banner-image {
        position: relative;
        z-index: 2;
      }
      
      .unc-image-wrapper {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
      }
      
      .unc-image-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg);
      }
      
      .unc-main-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
      }
      
      .unc-image-badge {
        position: absolute;
        top: -5rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.9);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        color: #2563eb;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      
      .unc-banner-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }
      
      .unc-shape-1 {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 100%);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        animation: float 8s ease-in-out infinite;
      }
      
      .unc-shape-2 {
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: linear-gradient(45deg, rgba(255, 84, 33, 0.1) 0%, rgba(255, 84, 33, 0) 100%);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        animation: float 6s ease-in-out infinite reverse;
      }
      
      .unc-shape-3 {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 150px;
        height: 150px;
        background: linear-gradient(45deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 100%);
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        animation: float 10s ease-in-out infinite;
      }
      
      @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(20px, 20px) rotate(5deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
      }
      
      /* Responsive Design */
      @media (max-width: 1024px) {
        .unc-banner-grid {
          grid-template-columns: 1fr;
        }
        
        .unc-banner-image {
          order: -1;
          max-width: 600px;
          margin: 0 auto;
        }
        
        .unc-heading {
          font-size: 2.5rem;
        }
      }
      
      @media (max-width: 768px) {
        .unc-banner-section {
          padding: 9rem 0 0 0;
        }
        #placed-candidates {
            margin: 0px 0px 0 10px;
        }
        .unc-placed-student{
            margin: 2rem 0 0 0;
        }
        .unc-heading {
          font-size: 2rem;
        }
        
        .unc-subheading {
          font-size: 1.1rem;
        }
        
        .unc-ratings-wrapper {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
        }
        
     
      }
      
      @media (max-width: 480px) {
        .unc-cta-buttons {
          flex-direction: column;
        }
        
        .unc-primary-btn,
        .unc-secondary-btn,
        .unc-outline-btn {
          width: 100%;
          justify-content: center;
        }
      }
    
      /* Ultra-Modern Styling with Animations */
      .unc-course-section {
        position: relative;
        padding: 20px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        overflow: hidden;
        isolation: isolate;
      }
    
      .unc-container-fluid {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
      }
    
      .unc-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 10;
      }
    
     
    
      .unc-heading {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.2;
        color: #1e293b;
        margin-bottom: 1.5rem;
        position: relative;
       display: block
    ;
       text-align: center;
    gap: 10px;
      }
    
      /* .unc-heading:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        border-radius: 2px;
      } */
    
      .unc-highlight {
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
      }
    
      .unc-subheading {
        color: #ff5421;
        position: relative;
        display: flex
    ;
        gap: 5px;
        justify-content: center;
        max-width: 1100px;
        margin: 0 auto 2rem auto;
        text-align: center !important;
      }
    
      /* Content Cards */
      .unc-content-card {
        background: #fff;
        border-radius: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 3rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
    
      .unc-content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }
    
      .unc-content-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        transition: height 0.4s ease;
      }
    
      .unc-content-card:hover:before {
        height: 10px;
      }
    
      /* Course Content */
      .unc-course-description {
        font-size: 1.125rem;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 10px;  
   
      }
      .unc-about-description {
        font-size: 16px !important;
        line-height: 1.7;
        color: #475569;
        margin-bottom: 10px;  
   
      }
      .unc-course-description-main{
        padding: 20px 40px !important;
      }
.who-can{
    margin: 4rem 0 0 0;
}
.data1 {
    display: grid
;
    grid-template-columns: auto auto;
    padding: 15px;
}
    .curriculum p{
        padding: 0 10px 20px;
    }
      /* Benefits List */
      .unc-benefits-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
      }
    
      .unc-benefits-list li {
        position: relative;
        padding-left: 2.5rem;
        margin-bottom: 1rem;
        font-size: 1.125rem;
        line-height: 1.6;
        color: #475569;
        transition: all 0.3s ease;
        font-weight: normal;
      }
    
      .unc-benefits-list li:hover {
        color: #1e293b;
        transform: translateX(5px);
      }
    
      .unc-benefit-icon {
        position: absolute;
        left: 0;
        top: 0.25rem;
        color: #ff5421;
        font-size: 1.25rem;
      }
    
      /* Read More Button */
      .unc-read-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        color: white;
        padding: 0.875rem 1.75rem;
        border-radius: 50px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 4px 15px rgba(255, 84, 33, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
        font-size: 20px;
      }
    
      .unc-read-more-btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, #ff8c42 0%, #ff5421 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
      }
    
      .unc-read-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 84, 33, 0.4);
      }
    
      .unc-read-more-btn:hover:before {
        opacity: 1;
      }
    
      .unc-btn-icon {
        transition: transform 0.3s ease;
      }
    
      .unc-read-more-btn[aria-expanded="true"] .unc-btn-icon {
        transform: rotate(180deg);
      }
    
      /* Hidden Content */
      .unc-hidden-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
      }
    
      .unc-hidden-content.unc-show {
        max-height: 1000px;
      }
    
      /* Certification Badge */
      .unc-certification-badge {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 1rem;
        margin-top: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #e2e8f0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
    
      .unc-certification-badge img {
        width: 115px;
        height: auto;
        object-fit: contain;
        font-size: 12px;
        font-weight: normal;
        border-radius: 10px;
        border: 3px solid #ff5421;
      }
    
      .unc-certification-badge span {
        font-weight: 600;
        color: #1e293b;
        font-size: 16px;
      }
    
      /* Floating Background Elements */
      .unc-floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }
    
      .unc-floating-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(45deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 100%);
        filter: blur(20px);
      }
    
      .unc-shape-1 {
        top: 10%;
        left: 10%;
        width: 300px;
        height: 300px;
        animation: float 12s ease-in-out infinite;
      }
    
      .unc-shape-2 {
        bottom: 10%;
        right: 10%;
        width: 400px;
        height: 400px;
        animation: float 15s ease-in-out infinite reverse;
      }
    
      .unc-shape-3 {
        top: 50%;
        left: 50%;
        width: 200px;
        height: 200px;
        animation: float 10s ease-in-out infinite alternate;
      }
    
      @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(30px, 30px) rotate(5deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
      }
    
      /* Responsive Design */
      @media (max-width: 1024px) {
        .unc-heading {
          font-size: 2.5rem;
        }
        
        .unc-content-card {
          padding: 2rem;
        }
      }
    
      @media (max-width: 768px) {
        .unc-course-section {
          padding: 2rem 0;
        }
        .who-can{
            margin: 0;
        }
        .certificate{
            padding: 0 !important;
        }
        .unc-heading {
            font-size: 22px !important;
            display: block;
            text-align: center;
            line-height: 1.8;
        }
        
        .unc-image-badge {
           top: -31px;
            padding: 3px 6px;
            font-size: 12px;
        }
        .unc-subheading {
          font-size: 1.25rem;
        }
        
        .unc-content-card {
          border-radius: 1.5rem;
          padding: 1.5rem;
          margin: 0;
        }
        
        .unc-certification-badge {
          flex-direction: column;
          text-align: center;
        }
      }
    
      @media (max-width: 576px) {
        .unc-heading {
          font-size: 1.75rem;
        }
        
        .unc-container {
          padding: 0 1.5rem;
        }
        
        .unc-benefits-list li {
          font-size: 1rem;
          padding-left: 2rem;
        }
        
        .unc-benefit-icon {
          font-size: 1rem;
          top: 0.15rem;
        }
      }
    
    
      /* Reusing existing CSS classes from previous layouts */
      .unc-key-features {
        position: relative;
        padding: 20px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        overflow: hidden;
        isolation: isolate;
      }
    
      .unc-features-card {
        background: #fff;
        border-radius: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 3rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
    
      .unc-features-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }
    
      .unc-features-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        transition: height 0.4s ease;
      }
    
      .unc-features-card:hover:before {
        height: 10px;
      }
    
      .unc-features-content {
        margin-bottom: 2rem;
      }
    
      .unc-features-intro,
      .unc-features-desc {
        font-size: 1.125rem;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 1.5rem;
      }
    
      .unc-features-grid {
        margin-top: 2rem;
      }
    
      .unc-feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 84, 33, 0.05);
        border-radius: 12px;
        transition: all 0.3s ease;
      }
    
      .unc-feature-item:hover {
        background: rgba(255, 84, 33, 0.1);
        transform: translateX(5px);
      }
    
      .unc-feature-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
      }
    
      .unc-apply-btn {
        text-align: center;
        margin-top: 2rem;
      }
    
      /* Responsive adjustments */
      @media (max-width: 768px) {
      
        
        .unc-features-card {
          padding: 2rem;
          border-radius: 1.5rem;
        }
      }
    
      @media (max-width: 576px) {
        .unc-features-card {
          padding: 1.5rem;
        }
        
        .unc-feature-item {
          padding: 0.75rem 1rem;
        }
      }
    
      /* Tools Section Styling */
      .unc-tools-section {
        position: relative;
        padding: 20px 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f7fafe 100%);
        overflow: hidden;
        isolation: isolate;
      }
    
      .unc-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 10;
      }
    
      /* Header Styling */
      .unc-section-header {
        text-align: center;
        margin-bottom: 4rem;
      }
    
      .unc-section-title {
        font-size: 32px;
        font-weight: 800;
        line-height: 1.2;
        color: #1e293b;
        margin-bottom: 1.5rem;
      }
    
      .unc-subtitle{
        text-align: center !important;
      }
      /* .unc-highlight {
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      } */
    
      /* .unc-section-divider {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        margin: 0 auto;
        border-radius: 2px;
      } */
    
      /* Tools Grid */
      .unc-tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
      }
    
      .unc-tool-card {
        background: white;
        border-radius: 1rem;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
      }
    
      .unc-tool-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 84, 33, 0.3);
      }
    
      .unc-tool-img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
      }
    
      .unc-tool-card:hover .unc-tool-img {
        transform: scale(1.1);
      }
    
      .unc-tool-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        margin: 0;
      }
    
      /* Apply Button */
      .unc-apply-btn {
        text-align: center;
      }
    
      .unc-primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, #ff5421 0%, #ff8c42 100%);
        color: white;
        /* padding: 1rem 2rem; */
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 4px 15px rgba(255, 84, 33, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
        /* min-width: 200px; */
      }
    
      .unc-primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 84, 33, 0.4);
      }
    
      /* Floating Background Elements */
      .unc-floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }
    
      .unc-floating-shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(45deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0) 100%);
        filter: blur(20px);
      }
    
      .unc-shape-1 {
        top: 10%;
        left: 10%;
        width: 300px;
        height: 300px;
        animation: float 12s ease-in-out infinite;
      }
    
      .unc-shape-2 {
        bottom: 10%;
        right: 10%;
        width: 400px;
        height: 400px;
        animation: float 15s ease-in-out infinite reverse;
      }
    
      @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(20px, 20px) rotate(5deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
      }
    
      /* Responsive Design */
      @media (max-width: 1024px) {
        .unc-section-title {
          font-size: 2.5rem;
        }
        
        .unc-tools-grid {
          grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
          gap: 1.5rem;
        }
      }
    
      @media (max-width: 768px) {
        .unc-tools-section {
          padding: 2rem 0 0 0;
        }
        
        .unc-section-title {
          font-size: 2rem;
          margin: 0;
        }
        #ace-interview {
            margin: 3rem 0 0 0 !important;
        }
        
        #know-uncodemy{
            margin: 3rem auto 0 auto !important ;
        }
        .cour {
            width: auto !important;
        }
        .unc-tools-grid {
          grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
          gap: 1rem;
        }
        
        .unc-tool-card {
          padding: 1rem 0.5rem;
        }
        
        .unc-tool-img {
          width: 50px;
          height: 50px;
        }
        
        .unc-tool-name {
          font-size: 1rem;
        }
      }
    
      @media (max-width: 576px) {
        .unc-container {
          padding: 0 1.5rem;
        }
        
        .unc-section-title {
          font-size: 1.8rem;
        }
        
        .unc-tools-grid {
          grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        }
      }








      .unc-interview-prep {
        padding: 60px 0;
        position: relative;
        overflow: hidden;
      }
      
      .unc-section-title {
        margin-bottom: 50px;
      }
      
    
      
      .unc-highlight {
        color: #ff5421;
        position: relative;
      }
      
      .unc-highlight:after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(255, 84, 33, 0.2);
        z-index: -1;
        border-radius: 4px;
      }
      
      .unc-subtitle {
        font-size: 1.1rem;
        color: #4a5568;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }
      
      .unc-interview-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
      }
      
      .unc-interview-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      
      .unc-interview-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      }
      
      .unc-card-image {
        height: 160px;
        overflow: hidden;
      }
      
      .unc-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      
      .unc-interview-card:hover .unc-card-image img {
        transform: scale(1.05);
      }
      
      .unc-card-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      
      .unc-card-content h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #2d3748;
      }
      
      .unc-card-content p {
        font-size: 0.95rem;
        color: #4a5568;
        line-height: 1.5;
        margin-bottom: 0;
        flex: 1;
      }
      
      .unc-highlight-card {
        position: relative;
        overflow: hidden;
      }
      
      .unc-highlight-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #8b2cf5 0%, #c154ff 100%);
        z-index: 1;
      }
      
      .unc-highlight-card .unc-card-content h3 {
        color: #8b2cf5;
      }
      
      /* Responsive adjustments */
      @media (max-width: 1200px) {
        .unc-interview-features {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      
      @media (max-width: 992px) {
        .unc-heading {
          font-size: 2.2rem;
        }
        
        .unc-interview-features {
          gap: 25px;
        }
        
        .unc-card-image {
          height: 140px;
        }
      }
      
      @media (max-width: 768px) {
        .fr {
          margin: 60rem 0 0 !important;
      }
        .unc-interview-prep {
          padding: 40px 0;
        }
        
        .unc-heading {
          font-size: 1.8rem;
        }
        
        .unc-interview-features {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }
        
        .unc-card-image {
          height: 120px;
        }
        
        .unc-card-content {
          padding: 15px;
        }
        
        .unc-card-content h3 {
          font-size: 1.1rem;
        }
        
        .unc-card-content p {
          font-size: 0.9rem;
        }
      }
      
      @media (max-width: 576px) {
        .unc-interview-features {
          grid-template-columns: 1fr;
          max-width: 400px;
          margin: 0 auto;
        }
        
        .unc-card-image {
          height: 150px;
        }
        
        .unc-heading {
          font-size: 1.6rem;
        }
        
        .unc-subtitle {
          font-size: 1rem;
        }
      }







    .unc-instructors-advanced {
      padding: 20px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      position: relative;
      overflow: hidden;
      margin: 2rem 0 3rem 0;
    }
    .sec{
        padding: 0;
    }
    
    
    .unc-section-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }
    
    .unc-main-title {
      font-size: 32px;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 1rem;
      line-height: 1.2;
      background: linear-gradient(90deg, #1e293b, #334155);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      display: inline-block;
    }
    
    /* .unc-highlight {
      color: #ff5421;
      position: relative;
      display: inline-block;
    } */
    
    .unc-highlight:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #ff5421, #ff8c42);
      border-radius: 4px;
      transform-origin: left;
      animation: highlightUnderline 2s ease-in-out infinite alternate;
    }
    
    @keyframes highlightUnderline {
      0% {
        transform: scaleX(0.8);
        opacity: 0.7;
      }
      100% {
        transform: scaleX(1);
        opacity: 1;
      }
    }
    
    .unc-section-description {
      font-size: 1.15rem;
      color: #475569;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }
    
    .unc-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-bottom: 4rem;
    }
    
    .unc-feature-card {
      background: white;
      border-radius: 12px;
      padding: 1.5rem 1rem;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(0,0,0,0.05);
    }
    
    .unc-feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      border-color: rgba(255,84,33,0.2);
    }
    
    .unc-feature-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      display: inline-block;
      transition: transform 0.3s ease;
    }
    
    .unc-feature-card:hover .unc-feature-icon {
      transform: scale(1.2) rotate(5deg);
    }
    
    .unc-feature-card h3 {
      font-size: 1.05rem;
      margin: 0;
      color: #1e293b;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    
    .unc-feature-card:hover h3 {
      color: #ff5421;
    }
    
    .unc-instructors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }
    
    .unc-instructor-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid rgba(0,0,0,0.05);
    }
    
    .unc-instructor-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      border-color: rgba(255,84,33,0.3);
    }
    
    .unc-instructor-image {
      position: relative;
      height: 250px;
      overflow: hidden;
    }
    
    .unc-instructor-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      filter: grayscale(20%);
    }
    
    .unc-instructor-card:hover .unc-instructor-image img {
      transform: scale(1.1) rotate(1deg);
      filter: grayscale(0%);
    }
    
    .unc-expertise-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(255,84,33,0.9);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      backdrop-filter: blur(5px);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.4s ease;
    }
    
    .unc-instructor-card:hover .unc-expertise-badge {
      transform: translateY(0);
      opacity: 1;
    }
    
    .unc-instructor-info {
      padding: 1.8rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background: white;
      position: relative;
      z-index: 2;
    }
    
    .unc-instructor-info h3 {
      font-size: 1.4rem;
      margin: 0 0 0.5rem;
      color: #1e293b;
      font-weight: 700;
      position: relative;
      display: inline-block;
    }
    
    .unc-instructor-info h3:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #ff5421, #ff8c42);
      border-radius: 3px;
    }
    
    .unc-company {
      font-size: 0.9rem;
      color: #64748b;
      margin-bottom: 1.2rem;
      font-weight: 500;
    }
    
    .unc-expertise, .unc-tools {
      margin-bottom: 1.2rem;
    }
    
    .unc-expertise span, .unc-tools span {
      font-weight: 600;
      color: #475569;
      display: block;
      margin-bottom: 0.7rem;
      font-size: 0.95rem;
    }
    
    .unc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .unc-tags span {
      background: #f1f5f9;
      color: #334155;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .unc-instructor-card:hover .unc-tags span {
      background: #ffede5;
      color: #ff5421;
    }
    
    .unc-instructor-details {
      margin-top: auto;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #475569;
    }
    
    .unc-project {
      margin-bottom: 0.5rem;
    }
    
    .unc-project span {
      font-weight: 600;
      color: #334155;
      display: block;
      margin-bottom: 0.5rem;
    }
    
    .unc-project p {
      margin: 0;
    }
    
    /* Advanced Animations */
    @keyframes float {
      0% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
      100% {
        transform: translateY(0px);
      }
    }
    
    [data-aos] {
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    [data-aos="fade-up"] {
      opacity: 0;
      transform: translateY(30px);
    }
    
    [data-aos="fade-up"].aos-animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    [data-aos="flip-up"] {
      opacity: 0;
      transform: perspective(1000px) rotateX(30deg) translateY(50px);
      transform-origin: bottom;
    }
    
    [data-aos="flip-up"].aos-animate {
      opacity: 1;
      transform: perspective(1000px) rotateX(0) translateY(0);
    }
    
    /* Floating Background Elements */
    .unc-instructors-advanced:before {
      content: '';
      position: absolute;
      top: 10%;
      left: 5%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255,84,33,0.1) 0%, rgba(255,84,33,0) 70%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
    }
    
    .unc-instructors-advanced:after {
      content: '';
      position: absolute;
      bottom: 10%;
      right: 5%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(139,44,245,0.1) 0%, rgba(139,44,245,0) 70%);
      border-radius: 50%;
      animation: float 10s ease-in-out infinite reverse;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
      .unc-instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      }
    }
    
    @media (max-width: 992px) {
      .unc-main-title {
        font-size: 2.5rem;
      }
      
     
      
      .unc-instructor-image {
        height: 220px;
      }
    }
    
    @media (max-width: 768px) {
      .unc-instructors-advanced {
        padding: 4rem 0;
      }
      .sylla{
        width: 100vw;
      }
      /* .syllabus-content span, p{
        font-size: 18px !important;
        font-weight: 700 !important;
      } */
      .unc-features-grid {
        grid-template-columns: auto;
        display: grid;
      }
      .unc-main-title {
        font-size: 2.2rem;
      }
      
      .unc-section-description {
        font-size: 1.05rem;
      }
      
      .unc-instructors-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }
    }
    
    @media (max-width: 576px) {
      .unc-main-title {
        font-size: 1.8rem;
      }
      
     
      
      .unc-instructor-image {
        height: 200px;
      }
      
      .unc-instructor-info {
        padding: 1.5rem;
      }
    }
    