/* =========================================================
   KAS EDUCATION - CTR DESIGN (CLEAN VERSION)
   Colors: Orange #F15A24
========================================================= */

:root {
    --primary: #F15A24;
    --primary-dark: #E04A14;
    --dark: #1A2C3E;
    --gray: #5D6F7F;
    --light: #F8F9FA;
    --border: #E9ECEF;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   HEADER - Transparent
========================================================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    position: fixed;
    background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.main-header.scrolled .nav-link {
    color: var(--dark) !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand img {
    height: 55px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px !important;
    border-radius: 10px;
    transition: 0.3s;
}

.main-header.scrolled .nav-link {
    color: var(--dark) !important;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(255,255,255,0.1);
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--dark);
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

.header-btn {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 10px;
    margin-left: 10px;
}

.header-btn:hover {
    background: var(--primary-dark) !important;
}

.language-switch {
    display: flex;
    gap: 6px;
    margin-left: 15px;
}

.language-switch a {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.main-header.scrolled .language-switch a {
    background: var(--light);
    color: var(--dark);
}

.language-switch a.active,
.language-switch a:hover {
    background: var(--primary);
    color: var(--white);
}

.topbar {
    display: none;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(115deg, #9dccff 0%, #2f5fb8 40%, #9b3f64 70%, #f15a24 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-top-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding-top: 80px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    background: var(--primary);
    color: var(--white);
    border: none;
}

.hero-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

/* =========================================================
   CONTACT INFO - VERTICAL LEFT
========================================================= */

.hero-contact-vertical {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-contact-vertical a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    transition: 0.3s;
}

.hero-contact-vertical a i {
    font-size: 18px;
}

.hero-contact-vertical a:hover {
    color: var(--primary);
}

/* =========================================================
   COMPACT COURSE CARDS - EXACTLY LIKE CTR SCREENSHOT
========================================================= */

.hero-training-cards {
    position: relative;
    z-index: 5;
    padding: 20px 0 80px;
    width: 100%;
}

.hero-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
}

/* Card - Compact like screenshot */
.hero-training-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

.hero-training-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Badge - small orange pill */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(241, 90, 36, 0.15);
    color: #F15A24;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Title - compact */
.card-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* Date - small with icon */
.card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-bottom: 12px;
}

.card-date i {
    color: #F15A24;
    font-size: 11px;
}


/* Button - pill shape (ellipse) with text inside */
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 8px 18px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: auto;
    cursor: pointer;
}

.card-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.card-btn:hover {
    background: #F15A24;
    border-color: #F15A24;
    color: white;
    gap: 10px;
}

.card-btn:hover i {
    transform: translateX(3px);
}
/* Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* =========================================================
   CATEGORIES SECTION
========================================================= */

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin: 15px 0 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.categories-section {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: 0.3s;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(241,90,36,0.1);
}

.category-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.category-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--primary);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.6;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-card-wrapper {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-contact-vertical {
        display: none;
    }
    
    .navbar-nav {
        background: var(--dark);
        padding: 20px;
        border-radius: 16px;
        margin-top: 20px;
    }
    
    .main-header.scrolled .navbar-nav {
        background: var(--white);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 140px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 200px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-top-content {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
}
/* =========================================================
   FIX: Increase vertical space between header and hero content
========================================================= */

.hero-top-content {
    padding-top: 130px !important;  /* Increased from 80px */
}

/* Fix: Correct the huge font-size mistake on mobile */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px !important;  /* was incorrectly 140px */
    }
}
/* =========================================================
   FIX: Restore vertical spacing on homepage hero
========================================================= */
.hero-top-content {
    padding-top: 120px !important;
}

/* Fix mobile font size (was broken) */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px !important;
    }
}
/* =========================================================
   HEADER - Centered navigation within container bounds
========================================================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}

/* The "red lines" - container with max-width */
.main-header .container {
    max-width: 1280px;  /* Your boundary lines */
    margin: 0 auto;
    padding: 0 24px;
}

.main-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-header .navbar-brand {
    flex-shrink: 0;
}

/* Make the collapse wrapper take available space */
.main-header .navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: center;  /* Center the navigation */
}

/* Center the nav items */
.main-header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin: 0 auto;
}

/* Keep language and CTA button on the right */
.main-header .navbar-nav .nav-item:last-child,
.main-header .navbar-nav .header-btn {
    margin-left: auto;
}

.main-header .language-switch {
    margin-left: 0.5rem;
}
/* =========================================================
   HEADER - Transparent with container constraint
========================================================= */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.3s ease;
}

/* Add this - Constrain the header content between "red lines" (max-width container) */
.main-header .container {
    max-width: 1280px;  /* This creates the "red line" boundaries */
    margin: 0 auto;
    padding: 0 24px;
}

/* Make navbar full width within the container */
.main-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Ensure navbar-brand and navbar-collapse stay within bounds */
.main-header .navbar-brand {
    flex-shrink: 0;
}

.main-header .navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
}

/* Navigation items stay right-aligned within the constrained area */
.main-header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

/* Make language switcher part of the flow */
.main-header .language-switch {
    margin-left: 0.5rem;
}
.sidebar-hero{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    background: #fff;
    aspect-ratio: 4 / 3;
}

.sidebar-hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sidebar-hero:hover img{
    transform: scale(1.05);
}

.image-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.training-sidebar{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* IMAGE */
.sidebar-image img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

/* BUTTONS */
.sidebar-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* BUTTON STYLE */
.btn-primary,
.btn-secondary{
    text-align:center;
    padding:14px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{ background:#b50000; color:#fff; }
.btn-secondary{ background:#1e3a5f; color:#fff; }

/* CARD */
.sidebar-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-card li{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #f1f5f9;
}
/* Sidebar Styles - Image on top, buttons under, then details cards */
.training-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Training Details Card */
.training-details-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    margin-bottom: 25px;
}

.details-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f6;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list strong {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.details-list span {
    color: var(--gray);
    font-size: 14px;
}

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eef2f6;
}

.contact-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-info p i {
    color: var(--primary);
    width: 20px;
}

.details-content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

.training-content-list ul,
.training-content-list ol {
    padding-left: 20px;
    margin: 10px 0;
}

.training-content-list li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .training-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .training-details-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .details-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .contact-info p {
        font-size: 12px;
    }
}
/* =========================================================
   TRAINING DETAILS PAGE - FORCED LAYOUT FIX
   DO NOT REMOVE - OVERRIDES ALL CONFLICTS
========================================================= */

/* Force the training detail page layout */
.training-detail-wrapper .container {
    max-width: 1280px !important;
    width: 100% !important;
    padding: 0 24px !important;
}

/* Override any conflicting grid */
.training-detail-wrapper .row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
}

/* LEFT COLUMN (8) - Content */
.training-detail-wrapper .col-lg-8 {
    flex: 1 !important;
    max-width: none !important;
    width: calc(100% - 420px) !important;
    order: 1 !important;
}

/* RIGHT COLUMN (4) - Sidebar with Image */
.training-detail-wrapper .col-lg-4 {
    width: 380px !important;
    flex: none !important;
    max-width: 380px !important;
    order: 2 !important;
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
}

/* Sidebar image - Full width */
.training-detail-wrapper .sidebar-image {
    width: 100% !important;
    margin-bottom: 20px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.training-detail-wrapper .sidebar-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Buttons under image */
.training-detail-wrapper .sidebar-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
}

/* Details card */
.training-detail-wrapper .training-details-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    border: 1px solid #eef2f6 !important;
}

/* Remove any conflicting styles */
.training-sidebar {
    position: static !important;
    display: block !important;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .training-detail-wrapper .row {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    
    .training-detail-wrapper .col-lg-8,
    .training-detail-wrapper .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .training-detail-wrapper .col-lg-4 {
        position: static !important;
        margin-top: 30px !important;
    }
}
/* =========================================================
   FINAL FIX - Header Spacing & Top Bar (No Phone/Email)
========================================================= */

/* Hide phone and email from top bar */
.topbar-left {
    display: none !important;
}

/* Show only social media icons on the right */
.topbar-right {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.topbar {
    display: block !important;
    background: var(--dark) !important;
    padding: 8px 0 !important;
    font-size: 12px !important;
}

.topbar a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.topbar a:hover {
    color: var(--primary) !important;
}

.topbar-right a {
    margin: 0 10px !important;
    font-size: 16px !important;
}

/* Fix header spacing - RED CIRCLE AREA */
.main-header {
    padding: 15px 0 !important;
    background: transparent !important;
}

/* When scrolled */
.main-header.scrolled {
    padding: 8px 0 !important;
    background: var(--white) !important;
}

/* Logo size */
.navbar-brand img {
    height: 45px !important;
    width: auto !important;
}

/* Reduce nav items gap */
.navbar-nav {
    gap: 2px !important;
}

.nav-link {
    padding: 6px 12px !important;
    font-size: 13px !important;
}

/* Header button */
.header-btn {
    padding: 6px 16px !important;
    font-size: 13px !important;
}

/* Language switcher */
.language-switch a {
    padding: 4px 8px !important;
    font-size: 11px !important;
}

/* Force clean header */
.main-header .container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

.main-header .navbar {
    min-height: auto !important;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .topbar {
        display: none !important;
    }
    
    .main-header {
        padding: 12px 0 !important;
    }
    
    .navbar-brand img {
        height: 38px !important;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0 !important;
    }
    
    .navbar-brand img {
        height: 35px !important;
    }
}
/* =========================================================
   FORCE SMALL TRAINING IMAGE - OVERRIDE ALL CONFLICTS
========================================================= */

.training-sidebar-right .sidebar-image {
    max-width: 90px !important;
    width: 90px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.training-sidebar-right .sidebar-image img {
    width: 100% !important;
    height: 60px !important;
    object-fit: cover !important;
    display: block !important;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: transparent;
}

.hero-wave svg {
    display: none;
}
/* =========================================================
   TRAINING DETAILS - PROFESSIONAL IMAGE SIZE FIX
========================================================= */

.training-detail-wrapper .training-image-container,
.training-detail-wrapper .sidebar-image,
.training-detail-content .training-image-container {
    max-width: 460px !important;
    width: 100% !important;
    margin: 0 auto 18px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.training-detail-wrapper .training-detail-image,
.training-detail-wrapper .sidebar-image img,
.training-detail-content .training-detail-image {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 14px !important;
}