*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#222;
    line-height:1.6;
}
.logo-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color:white;
}
.image img{
    width: auto;
    height: 60px;
    display: block;
}
.ticker-wrapper{
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 10px 0;
    white-space: nowrap;
}
.ticker-text{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color:black;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left{
    0%{
        transform: translate3d(0,0,0);
    }
    100%{
       transform: translate3d(-100%,0,0); 
    }
}
/* CTA Buttons Section */

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 40px; /* Reduced from 400px */
    flex-wrap: wrap;
    margin-top: 40px;
}

.action-column {
    display: flex;
    justify-content: center;
}

.hero-btn {
    display: inline-block;
    padding: 30px 40px;
    background: #fcb215;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #ffca45;
    transform: translate(-5px);
    box-shadow: 0 10px 25px rgba(232, 141, 14, 0.15);
}

/* Statistics Section */

.hero-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 40px 0 40px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    min-width: 180px;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    color: #fcb215;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #0e0d0d;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-number {
        font-size: 32px;
    }
}


/* Hover actuation wrapper rule mapping for right container module */
.workshops-sidebar-card:hover {
    transform: translateY(-5px); /* Synchronized matching -5px layout displacement parameter rules */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sidebar-icon {
    width: 24px;
    height: 24px;
    color: #ffb703; /* Matching tool item color asset */
}

.sidebar-header h3 {
    margin: 0;
    color: #ffb703; /* Side panel headline identifier color */
    font-size: 18px;
    font-weight: 700;
}

.sidebar-desc {
    font-size: 13.5px;
    color: #040404;
    margin: 0 0 12px 0;
}

/* Bullet item layout matrices overrides */
.points-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.points-list li {
    position: relative;
    padding-left: 24px;
    font-size: 13px;
    color: #080808;
    line-height: 1.3;
}

/* Pure CSS matching diamond custom index bullets rendering */
.points-list li::before {
    content: "◆"; 
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb703; /* Orange/Gold custom list index glyph marker color */
    font-size: 11px;
}

/* ==========================================================================
   Inner Certification Callout Subframe Block
   ========================================================================== */
.certification-box {
    background-color: #ffffff; /* Underneath nested cutout space backdrop container overlay */
    border: 3px dashed rgba(255, 183, 3, 0.25);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-sizing: border-box;
}

.certification-box h4 {
    margin: 0 0 4px 0;
    color: #ffb703;
    font-size: 15px;
    font-weight: 700;
}

.certification-box p {
    margin: 0;
    font-size: 13px;
    color: #000000;
    line-height: 1.4;
}

/* ==========================================================================
   Media Adaptive Breakpoint Viewport Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
    .takeaways-layout {
        grid-template-columns: 1fr; /* Collapses layout split track columns cleanly downward into 1 list flow */
        gap: 30px;
    }
    .takeaways-section {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .takeaways-header h2 {
        font-size: 32px;
    }
    .workshops-sidebar-card {
        padding: 30px 20px;
    }
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── LOGOS STRIP ── */
  .logos-strip {
    background: rgba(197, 20, 20, 0.03);
    background-color: #e67e22;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 48px 20px 0px;
    display: flex; align-items: center; gap: 16px;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .logos-strip .label {
    font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
    padding:0 24px 0 48px; border-right: 1px solid var(--border);
    color: #f5f7fa; 
    position: relative;
    z-index: 2;
    background-color: #e67e22;
    
  }
  .logos-scroll {
    display: flex; gap: 40px; align-items: center;
    animation: scroll-logos 30s linear infinite;
    white-space: nowrap;
    position: relative;
    z-index: 1;
  }
  .logos-scroll span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 0.95rem; letter-spacing: 2px;
    color: rgba(252, 247, 247, 0.912); text-transform: uppercase;
    flex-shrink: 0;
  }
  @keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
.nav-header{
     position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    width: 100vw; /* Forces navbar to occupy absolute edge-to-edge browser layout width */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    box-sizing: border-box;
    z-index: 9999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    margin: 0;
}

/* Logo Styling */
.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
}

/* ==========================================================================
   3. Content Container (Exact 40px Margin Layout Specified)
   ========================================================================== */
.main-content {
    margin: 40px; /* Applies 40px margin from all sides to structural contents beneath the navbar */
    box-sizing: border-box;
}

/* ==========================================================================
   4. Top-Level Menu Elements
   ========================================================================== */
.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    text-decoration: none;
    color: #001829;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 0;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.menu-item:hover > a {
    color: #ffb703;
}

/* Indicators */
.arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #001829;
    display: inline-block;
    transition: transform 0.2s ease, border-top-color 0.2s ease;
}

.menu-item:hover > a .arrow {
    transform: rotate(180deg);
    border-top-color: #fefefd;
}

.right-arrow {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #4a5568;
}

.nested-item:hover > a .right-arrow {
    transform: rotate(0deg);
    border-left-color: #0056b3;
}

/* ==========================================================================
   5. Multi-Level Dropdowns
   ========================================================================== */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.submenu-right {
    left: auto;
    right: 0;
}

.menu-item.has-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s;
}

.submenu li a:hover {
    background-color: #f7fafc;
    color: #0056b3;
}

.nested-item {
    position: relative;
}

.sub-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background-color: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0 0 0 5px;
    padding: 8px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nested-item:hover > .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Badges & Animations */
.link-badge {
    background-color: #e6ffea;
    color: #24d336;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.link-badge-inline {
    background-color: #ffebeb;
    color: #e53e3e;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
}

@keyframes twinkleGlow {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(36, 211, 54, 0.4); }
    50% { opacity: 0.4; box-shadow: 0 0 0 6px rgba(36, 211, 54, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(36, 211, 54, 0); }
}

.twinkle {
    animation: twinkleGlow 1.8s infinite ease-in-out;
}

.hero{
    height:650px;
    position:relative;
    background:url("adobe background.jpeg")
    center/cover;
    display:flex;
    align-items:center;
    padding: 10%;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:700px;
}

.badge{
    display:inline-block;
    background:#ff9800;
    padding:8px 16px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.hero h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn{
    background:#ff9800;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:6px;
    font-weight:bold;
}

.btn-outline{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:12px 28px;
    border-radius:6px;
}

.section{
    padding:40px 0;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
    color:#003b70;
}
.container{
    max-width:1400px;
    margin:auto;
}

/* =====================
   HERO SECTION
===================== */
.capacity-section{
    padding:10px 0 20px;
}

.main-title{
    text-align:center;
    font-size:2.8rem;
    font-weight:800;
    margin-bottom:5px;
}

.highlight-title{
    text-align:center;
    font-size:2.4rem;
    color:#e0a91f;
    font-weight:800;
    margin-bottom:5px;
}

.subtitle{
    text-align:center;
    font-size:1.4rem;
    margin-bottom:20px;
}

.feature-section{
    margin-left: 40px;
    margin-right: 40px;
}
.feature-grid{
    margin-top: 30px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    margin-bottom:20px;
    justify-items: center;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.feature-item img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0px;
    
}


.feature-item h4{
    font-size:18px;
    margin-top:6px;
    line-height: 1.2;
}

.content-box{
    background:#fff;
    border:2px solid #d4b04c;
    border-radius:0 50px 0 0;
    padding:40px;
    margin-top: 20px;
}

.content-box h3{
    font-size:1.6rem;
    margin-bottom:10px;
}

.content-box p{
    font-size:0.95rem;
    line-height:1.5;
}
/* =====================
   CARDS SECTION
===================== */

.feature-section{
    margin-top:20px;
}

.grid-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.card{
    background:#efefef;
    border-radius:16px;
    border-color: #efc016;
    border-width: 2px;
    padding:40px;
    transition:all .3s ease;
}

.card:hover{
    
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.large-card{
    max-width: 100%;
    min-height:160px;
}

.small-card{
    min-height:160px;
}

.card h3{
    font-size:1rem;
    font-weight:800;
    margin-bottom:10px;
    line-height:1.4;
}

.card p{
    font-size:.9rem;
    line-height:1.5;
    color:#555;
}

.icon{
    font-size:24px;
    margin-bottom:10px;
}

.tech{
    color:#a88bc0;
}

.institute{
    color:#666;
}

.education{
    color:#5a2b7c;
}

.startup{
    color:#ff4b81;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}

.tags span{
    background:#f5ead6;
    padding:6px 12px;
    border-radius:50px;
    font-size:.7rem;
    font-weight:700;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:440px){

    .feature-grid{
        grid-template-columns:repeat(3,2fr);
       
    }

    .grid-container{
        grid-template-columns:2fr;
    }
}

@media(max-width:440px){

    .main-title{
        font-size:2rem;
    }

    .highlight-title{
        font-size:1.6rem;
    }

    .subtitle{
        font-size:1rem;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .feature-grid{
        grid-template-columns:1fr;
        margin-top: 40px;
    }
}

.lead{
    text-align:center;
    max-width:1000px;
    margin:auto;
    font-size:18px;
}

.gray{
    background:#fff;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
}
.heading{
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; 
    line-height: 1.1;
    letter-spacing: -0.01em; 
    margin-bottom: 1rem;
    color: #002b36; /* Matching deep slate blue */
}
.subheading{
    color: #fca311;
}
.container3 p{
    font-size: 1rem;
    margin-bottom: 50px;
}
.card{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    border: 2px solid #e5a913; /* Mustard Yellow */
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(6, 6, 6, 0.15);
}

.card h3{
    color:orange;
    margin-bottom:0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.container3 {
    margin: 0 40px;
    padding: 0;
}

/* Header Section */
.training-section {
    width: 100%;
}

.section-title1 {
    font-size: 3rem;
    color: #1a2530;
    margin-bottom: 5px;
    font-weight: 700;
}

.section-subtitle1 {
    font-size: 2.2rem;
    color: #d99116; /* Gold accent color from the image */
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
}

.group-title {
    font-size: 1.8rem;
    color: #1a2530;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #d99116;
    display: inline-block;
    padding-bottom: 5px;
}

.module-group {
    margin-bottom: 50px;
}

.group-description {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 1000px;
}

:root {
    --ore:       #C98A1A;
    --ore-light: #E8A825;
    --ore-dim:   #7A5310;
    --coal:      #1A1A1A;
    --seam:      #2C2C2C;
    --slate:     #3D3D3D;
    --dust:      #F5F2EC;
    --white:     #FFFFFF;
    --muted:     #8A8A8A;
    --border:    #E0DBD0;

    --cat1: #1D4E8F;   /* Mining Technical — deep mine-shaft blue */
    --cat2: #C98A1A;   /* Mining 4.0 — gold/ore */
    --cat3: #2D6A4F;   /* Software — forest/earth green */
    --cat4: #7B2D2D;   /* Managerial — deep red/iron */

    --ff-display: 'Barlow Condensed', sans-serif;
    --ff-body:    'Inter', sans-serif;
    --ff-mid:     'Barlow', sans-serif;
}

/* CATEGORY SECTION */
.category {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    scroll-margin-top: 130px;
}

.category-header {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center;
    gap: 0.5rem; 
    margin-bottom: 3.5rem;
}

.cat-label {
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--ff-mid); 
    font-size: 0.72rem; 
    font-weight: 600;
    letter-spacing: 0.18em; 
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cat-label-bar {
    height: 14px; 
    width: 4px; 
    border-radius: 1px;
}

.category h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; 
    line-height: 1.1;
    letter-spacing: -0.01em; 
    margin-bottom: 1rem;
    color: #002b36; /* Matching deep slate blue */
}

.category h2 .accent-text {
    color: #fca311; /* Matching brand gold accent */
}

.category-desc {
    font-size: 1.05rem; 
    color: var(--slate); 
    max-width: 800px; 
    line-height: 1.7;
    margin: 0 auto;
}

.cat-badge {
    display: none;
}

/* COURSE GRID */
.course-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* Increased gap for a cleaner, non-grid look */
    background: transparent;
    border: none;
    margin-bottom: 0;
}

.course-card {
    flex: 0 1 400px;
    min-width: 340px;
    background: transparent;
    padding: 0;
    display: flex; 
    flex-direction: column;
    transition: all 0.2s;
    position: relative; /* Added for popup positioning */
    border: 1px solid var(--border); /* Subtle border instead of grid background */
    border-radius: 12px;
    overflow: hidden;
}

.course-card:hover { 
    z-index: 5; 
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-color: var(--ore); 
}

.course-card-top {
    padding: 1.6rem 1.6rem 1.2rem;
    border-bottom: 1px solid var(--border);
    flex: 1;
}

.course-tag {
    display: inline-block;
    font-family: var(--ff-mid); 
    font-size: 0.65rem; 
    font-weight: 600;
    letter-spacing: 0.12em; 
    text-transform: uppercase;
    padding: 0.25rem 0.6rem; 
    border-radius: 2px;
    margin-bottom: 0.9rem;
}

.course-title {
    font-family: var(--ff-display); 
    font-size: 1.3rem; 
    font-weight: 700;
    line-height: 1.15; 
    margin-bottom: 0.6rem; 
    letter-spacing: 0.01em;
}

.course-summary {
    font-size: 0.82rem; 
    color: var(--slate); 
    line-height: 1.65;
}

/* COURSE MODULES POPUP STYLE */
.course-modules {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.6rem;
    background: var(--white); /* Match body color */
    z-index: 10;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.course-modules.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.modules-label {
    font-family: var(--ff-mid); 
    font-size: 0.65rem; 
    font-weight: 600;
    letter-spacing: 0.14em; 
    text-transform: uppercase;
    color: var(--muted); 
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-popup {
    font-size: 1rem;
    cursor: pointer;
    color: var(--muted);
    transition: color 0.2s;
    padding: 0 5px;
}

.close-popup:hover {
    color: var(--coal);
}

.module-list { 
    list-style: none; 
}

.module-list li {
    font-size: 0.78rem; 
    color: var(--slate); 
    line-height: 1.5;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; 
    align-items: flex-start; 
    gap: 0.5rem;
}

.module-list li:last-child { 
    border-bottom: none; 
}

.module-list li::before {
    content: '—'; 
    color: var(--muted); 
    font-size: 0.65rem;
    flex-shrink: 0; 
    margin-top: 0.15rem;
}

.course-footer {
    padding: 0.85rem 1.6rem;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    border-top: 1px solid var(--border);
    gap: 0.5rem;
}

.course-duration {
    font-family: var(--ff-mid); 
    font-size: 0.72rem; 
    font-weight: 600;
    color: var(--muted); 
    letter-spacing: 0.05em; 
    text-transform: uppercase;
}

.course-level {
    font-family: var(--ff-mid); 
    font-size: 0.6rem; 
    font-weight: 600;
    letter-spacing: 0.05em; 
    text-transform: uppercase;
    padding: 0.2rem 0.4rem; 
    border-radius: 2px;
    border: 1px solid currentColor;
    white-space: nowrap;
}

/* KNOW MORE BUTTON */
.know-more-btn {
    font-family: var(--ff-mid);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.know-more-btn:hover {
    background: var(--coal);
    color: var(--white);
    border-color: var(--coal);
}

/* CATEGORY COLOR THEMES */
.c1 .cat-label { color: var(--cat1); }
.c1 .cat-label-bar { background: var(--cat1); }
.c1 .cat-badge { color: var(--cat1); }
.c1 .course-tag { background: rgba(29,78,143,0.08); color: var(--cat1); }
.c1 .course-level { color: var(--cat1); }
.c1 .module-list li::before { color: var(--cat1); }

.c2 .cat-label { color: var(--ore-dim); }
.c2 .cat-label-bar { background: var(--ore); }
.c2 .cat-badge { color: var(--ore); }
.c2 .course-tag { background: rgba(201,138,26,0.1); color: var(--ore-dim); }
.c2 .course-level { color: var(--ore-dim); }
.c2 .module-list li::before { color: var(--ore); }

.c3 .cat-label { color: var(--cat3); }
.c3 .cat-label-bar { background: var(--cat3); }
.c3 .cat-badge { color: var(--cat3); }
.c3 .course-tag { background: rgba(45,106,79,0.08); color: var(--cat3); }
.c3 .course-level { color: var(--cat3); }
.c3 .module-list li::before { color: var(--cat3); }

.c4 .cat-label { color: var(--cat4); }
.c4 .cat-label-bar { background: var(--cat4); }
.c4 .cat-badge { color: var(--cat4); }
.c4 .course-tag { background: rgba(123,45,45,0.08); color: var(--cat4); }
.c4 .course-level { color: var(--cat4); }
.c4 .module-list li::before { color: var(--cat4); }

.fade-up {
    opacity: 0; 
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible { 
    opacity: 1; 
    transform: translateY(0); 
}
/* ── ABOUT ── */
 .about { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }

/* --- 1. PILLAR CARDS --- */
.pillar {
    margin-left: 20px;
  margin-top: 40px;
  background-color: #f1f1f0;
  border: 1px solid rgba(226, 225, 224, 0.15);
  border-radius: 8px;
  padding: 24px 20px;
  transition: all 0.2s ease; /* Smoothes out background, transform, and text changes */
}

/* Pillar Hover State */
.pillar:hover {
  background-color: #ffcc00; 
  border-color: transparent; /* Removes the border completely */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Changes pillar text to dark when hovered for contrast */
.pillar:hover h4,
.pillar:hover p {
  color: #111111;
}

.pillar-icon { font-size: 1.6rem; margin-bottom: 10px; }

.pillar h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; 
  font-size: 1rem; 
  letter-spacing: 1px;
  text-transform: uppercase; 
  margin-bottom: 6px;
  color: #111111; /* Set a default fallback color */
}

.pillar p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }


/* --- 2. ABOUT CARDS --- */
.about-right { position: relative; }

.about-card {
    margin-right: 20px;
  background-color: #f1f1f0;
  border: 1px solid var(--border);
  border-radius: 12px; 
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.2s ease; /* Smooth transition for background, border, and text */
}

/* About Card Hover State */
.about-card:hover {
   background-color: #ffcc00; 
  border-color: transparent; /* Removes the border completely */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Changes text inside about-card to dark on hover */
.about-card:hover h3,
.about-card:hover p {
  color: #111111;
}

.about-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; 
  font-size: 1rem; 
  letter-spacing: 1px;
  text-transform: uppercase; 
  margin-bottom: 6px;
  color: #111111; /* Set a default fallback color */ 
}

.about-card p { font-size: 0.9rem; color: rgba(16, 15, 15, 0.7); line-height: 1.65; }


/* --- 3. TAGS --- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.tag {
  font-size: 0.72rem; 
  font-weight: 600; 
  letter-spacing: 1px;
  text-transform: uppercase; 
  padding: 4px 12px; 
  border-radius: 100px;
  background: rgba(245,166,35,0.12); 
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
}

.about-grid{
    margin-left: 20px;
}
  /* ── SECTIONS ── */
  section { padding: 20px 48px; }
  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem; letter-spacing: 3px; text-transform: uppercase;
    color:gold; margin-bottom: 14px;
    
  }
  h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8 rem, 4vw, 3.4rem);
    font-weight: 800; line-height: 1.05;
    margin-bottom: 20px;
  }
  h2 span { color: var(--gold); }
  .section-intro {
    font-size: 1.05rem; font-weight: 300; color: rgba(4, 4, 4, 0.7);
    line-height: 1.75; max-width: 640px; margin-bottom: 60px;
  }

  /* --- portfolio --- */
  .container{
   width: 100%;
   padding-left: 40px;
   padding-right: 40px;
  }
  .lead{
    margin-bottom: 20px;
  }
  /* ==========================================================================
   6. Delivery Layout Content
   ========================================================================== */
.delivery-section {
    padding: 80px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.delivery-section .section-header {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center;
    gap: 0.5rem; 
    width: 100%;
}

.delivery-section h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; 
    line-height: 1.1;
    letter-spacing: -0.01em; 
    margin-bottom: 1rem;
    color: #002b36;
    text-align: center;
}

.delivery-section .accent-text {
    color: var(--cat4); /* Managerial deep red/iron */
    color: #fca311;
}

.delivery-section .section-subtitle {
    font-size: 1.2rem; 
    color: var(--slate); 
    max-width: 900px; 
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    padding: 0 40px;
}

.delivery-card h3 {
    color: var(--cat4); /* Managerial deep red/iron */
    font-size: 1.3rem; 
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
    font-family: var(--ff-display);
}

.delivery-card p {
    font-size: 0.82rem; 
    color: var(--slate); 
    line-height: 1.65;
    text-align: left;
}

/* ==========================================================================
   7. Delivery Cards & Transitions
   ========================================================================== */
.delivery-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid transparent; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: #edf2f7;
    box-shadow: 0 10px 25px rgba(0, 43, 54, 0.08);
}

.delivery-card h3 {
    color: #fca311;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 14px 0;
}

.delivery-card p {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Media Breakpoint Thresholds */
@media (max-width: 1000px) {
    .delivery-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .main-content { margin: 24px; } /* Scales margin down elegantly on smaller tablets */
}

@media (max-width: 768px) {
    .delivery-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 34px; }
    .section-subtitle { font-size: 22px; }
    .main-content { margin: 15px; }
}
/* ==========================================================================
   Takeaways Combined Section (Image + Card Side-by-Side)
   ========================================================================== */
.takeaways-combined-section {
    padding: 10px 0 20px;
}

.takeaways-combined-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start; /* Changed from stretch to allow shorter card */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.takeaways-image-container {
    margin-top:-30px;
    width: 100%;
}

.takeaways-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.workshops-sidebar-card {
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px; /* Reduced from 20px */
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Workshop Slider/Collage Section */
.workshop-slider {
   
    padding: 60px 0;
    background: #f9f9f9;
}

.slider-relative {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-slides {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.workshop-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.workshop-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.collage-container {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    grid-template-rows: auto;
    gap: 5px;
    margin-bottom: 30px;
}

.collage-item {
    margin-left: 40px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: hsl(0, 100%, 100%); /* Dark background to fill gaps if images are different sizes */
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-item.large {
    grid-row: span 2;
    height: 520px;
}

.collage-item.small {
    height: 250px;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 18px 22px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slider-nav:hover {
    background: rgba(252, 178, 21, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: -40px;
}

.slider-nav.next {
    right: -20px;
    margin-right: 40px;
}

@media (max-width: 1400px) {
    .slider-nav.prev { left: 20px; }
    .slider-nav.next { right: 20px; }
}

.workshop-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2530;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.4;
    font-family: 'Barlow Condensed', sans-serif;
}

@media (max-width: 768px) {
    .collage-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .collage-item.large {
        grid-row: span 1;
        height: 300px;
    }
    .collage-item.small {
        height: 200px;
    }
    .workshop-title {
        font-size: 22px;
    }
}
.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Styling */
.section-header {
    margin-bottom: 50px;
    max-width: 900px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
}

.section-header .highlight {
    color: #f2a900; /* The golden yellow color from the image */
}

.section-header p {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

/* Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* Card Styling */
.team-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover effect for polish */
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.image-wrapper {
    width: 100%;
    height: 300px; /* Adjust height based on your original images */
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions clean without stretching */
}

/* Member Info Styling */
.member-info {
    padding: 20px 15px;
}

.member-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
}

.member-info .role {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .container {
        padding: 40px 15px;
    }
}
.enroll-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0,80px 20px;
  text-align: center;
}

.container {
  max-width: 1400px;
  width: 100%;
}

/* Headings & Text */
.heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
}

.highlight {
  color: #e5a913; /* The distinct TEXMiN Gold/Yellow */
}

.description1 {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #0b0b0b;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 40px;
}

/* Button & Email Links */
.action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.btn-enquiry {
  display: inline-block;
  background-color: #e5a913;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 44px;
  border-radius: 30px; /* Smooth rounded pill look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-enquiry:hover {
  background-color: #cb940e;
  transform: translateY(-1px);
}

.email-link {
  color: #e5a913;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: #cb940e;
  text-decoration: underline;
}
/* ==========================================================================
   Centres of Excellence Layout
   ========================================================================== */
.coe-section {
    padding: 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.coe-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* ==========================================================================
   Section Typography
   ========================================================================== */
.coe-header {
    margin-bottom: 50px;
    text-align: center;
}

.coe-header h2 {
    color: #002b36; /* Matching deep slate blue/teal header font */
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.coe-header .accent-text {
    color: #fca311; /* Matching brand gold accent */
}

.coe-subtitle {
    color: #4a5568; /* Soft readable description grey */
    font-size: 24px;
    line-height: 1.6;
    margin: 24px auto 0 auto;
    max-width: 1000px;
}

/* ==========================================================================
   4-Column Card Grid System 
   ========================================================================== */
.coe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ==========================================================================
   Coe Cards Setup & Match Hover Transformations
   ========================================================================== */
.coe-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #edf2f7;
    box-sizing: border-box;
    
    /* Global required transition metrics */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.coe-card:hover {
    transform: translateY(-5px); /* Smooth -5px vertical translate lift on hover */
    box-shadow: 0 12px 25px rgba(0, 43, 54, 0.08); /* Soft matching drop shadow */
}

/* Image Containers Adjustments */
.coe-image-wrapper {
    width: 100%;
    height: 180px; /* Standardized card layout frame height */
    background-color: #edf2f7; /* Underlay fallback background color */
    overflow: hidden;
    position: relative;
}

.coe-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops images beautifully inside frame sizes without squeezing */
    display: block;
}

/* Card Content Blocks */
.coe-card-content {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.coe-card h3 {
    color: #fca311; /* Header texts match brand gold */
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    min-height: 50px; /* Maintains clean structural alignment across varying header sizes */
}

.coe-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* ==========================================================================
   Media Breakpoint Adjustments
   ========================================================================== */
@media (max-width: 1200px) {
    .coe-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid setup on smaller tablet viewports */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .coe-grid {
        grid-template-columns: 1fr; /* Single column layout stack on mobile displays */
    }
    .coe-header h2 {
        font-size: 34px;
    }
    .coe-subtitle {
        font-size: 18px;
    }
    .coe-image-wrapper {
        height: 200px;
    }
}
/* Base Layout Config */
.footer {
    background-color: #0d0f11; /* Sleek dark background matching your photo */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr 1fr; /* Custom widths for balanced spacing */
    gap: 40px;
}

/* Headings */
.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Brand Column (Logo + LinkedIn) */
.brand-col .image img {
    max-width: 220px;
    height: auto;
    margin-bottom: 25px;
}

.social-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.linkedin-link {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.linkedin-link:hover {
    color: #0077b5; /* Official LinkedIn Blue */
}

/* Contact Info Column */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item .icon {
    color: #f39c12; /* Golden orange icon accents */
    font-size: 18px;
    margin-top: 3px;
}

.info-item .label {
    display: block;
    font-size: 13px;
    color: #a0a5ad;
    margin-bottom: 2px;
}

.info-item p, .info-item a {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
}

/* Link Columns */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.links-col ul li a:hover {
    color: #f39c12;
}

/* Copyright Row */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #1f242c; /* Subtle break line */
}

.footer-bottom p {
    font-size: 13px;
    color: #717781;
}

/* Responsive Tweaks for Tablets and Phones */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Switches to 2x2 grid on smaller viewports */
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stacks vertically on mobile screens */
    }
}

/* Category Navigation Bar */
.course-category-nav {
    position: sticky;
    background: #ffffff;
    top: 72px; /* Sticks below the main navbar */
    padding: 15px 0;
    z-index: 990;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.nav-links-container {
    max-width: 100%;
    padding: 0 60px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.cat-link {
    text-decoration: none;
    color: #444;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.cat-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fca311;
    transition: width 0.3s ease;
}

.cat-link:hover, .cat-link.active {
    color: #fca311;
}

.cat-link:hover:after, .cat-link.active:after {
    width: 100%;
}

@media (max-width: 768px) {
    .course-category-nav {
        overflow-x: auto;
        padding: 15px 20px;
    }
    
    .nav-links-container {
        justify-content: flex-start;
        gap: 25px;
        width: max-content;
    }
    
    .cat-link {
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.delivery-section1 {
    margin-top: -60px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.delivery-section1 .section-header {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center;
    gap: 0.5rem; 
    width: 100%;
}

.delivery-section1 h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800; 
    line-height: 1.1;
    letter-spacing: -0.01em; 
    margin-bottom: 1rem;
    color: #002b36;
    text-align: center;
}

.delivery-section1 .accent-text {
    color: var(--cat4); /* Managerial deep red/iron */
    color: #fca311;
}

.delivery-section1 .section-subtitle {
    font-size: 1.2rem; 
    color: var(--slate); 
    max-width: 900px; 
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
}

/* ==========================================================================
   Full Page Responsiveness Updates
   ========================================================================== */

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #001829;
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.05);
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 10000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .menu-item {
        width: 100%;
    }

    .main-nav .menu-item > a {
        padding: 15px 0;
        width: 100%;
        justify-content: space-between;
    }

    .submenu, .sub-submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 20px !important;
        display: none;
        width: 100% !important;
    }

    .menu-item.active > .submenu,
    .nested-item.active > .sub-submenu {
        display: block;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* About Section & Pillars */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-pillars {
        grid-template-columns: 1fr 1fr;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .logo-container {
        padding: 10px 20px;
    }
}

/* Course Grid Adjustments */
@media (max-width: 480px) {
    .course-card {
        min-width: 100%;
    }
    .section-title1 {
        font-size: 2.2rem;
    }
    .section-subtitle1 {
        font-size: 1.6rem;
    }
}

/* Who Can Enroll Grid */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Logos Strip */
@media (max-width: 768px) {
    .logos-strip .label {
        padding: 0 15px;
        font-size: 0.8rem;
    }
}
.dropdown{
    position:relative;
    display:flex;
    align-items:stretch;
}
.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background-color:white;
    min-width:240px;
    box-shadow:0 8px 24px rgba(0,0,0,0.2);
    z-index:1000;
    border-radius:6px;
    padding:6px 0;
    margin-top:4px;
}
.dropdown:hover .dropdown-content{
    display:block;
}
.dropdown-content a{
    color:#333;
    padding:10px 20px;
    text-decoration:none;
    display:block;
    font-size:14px;
    font-weight:500;
    transition:background-color 0.2s;
}
.dropdown-content a:hover{
    background-color:#f5f5f5;
    color:#111;
}
.many-more{
    color:#6e6e6d;
    font-size:14px;
    font-weight:600;
    padding:10px 20px;
    display:block;
    text-align:right;
    }