@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Color Palette (Placeholder for Logo Colors) */
    --primary-color: #0d47a1;
    /* Deep Blue representing Supply Chain & Logistics */
    --primary-dark: #0a3d8a;
    --primary-light: #4c8ec6;

    --secondary-color: #c62828;
    /* Professional Red Accent */
    --secondary-dark: #a52727;

    --accent-color: #ffd600;
    /* Energy & Attention - Gold/Yellow */

    /* Neutral Colors */
    --text-main: #2c3e50;
    --text-muted: #607d8b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Transitions */
    --section-padding: 80px 0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

a {
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--primary-color);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Utility Classes */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.section-padding {
    padding: var(--section-padding);
}

/* Tiered Navigation Redesign */
.utility-nav {
    background: #fdfdfd;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-family: var(--font-body);
}

.utility-links li a {
    transition: var(--transition-smooth);
    font-weight: 500;
}

.utility-links li a:hover {
    color: var(--primary-color) !important;
}

.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.main-navbar.sticky-top {
    top: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.main-navbar .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.main_nav_logo{
    width: 64px !important;
    height: auto;
}


.footer_main_logo{
    height: 80px !important;
    width: auto;
}

/* Mega Menu Styles */
.dropdown-mega .mega-menu-content {
    width: 100vw;
    max-width: 1140px;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) !important;
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
}

@media (min-width: 992px) {
    .dropdown-mega:hover .mega-menu-content {
        transform: translateX(-50%) translateY(0) !important;
        opacity: 1;
        visibility: visible;
    }
}

.mega-list li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
}

.mega-list li a:hover {
    background-color: rgba(13, 71, 161, 0.05) !important;
    color: var(--primary-color) !important;
    padding-left: 15px !important;
}

.btn-pill-elite {
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
    transition: all 0.4s ease;
}

.btn-pill-elite:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.3);
}

.uppercase-tracking {
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Premium Footer Redesign */
.footer-elite {
    background-color: #050a15 !important;
    font-family: var(--font-body);
}

.logo-box-elite {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }

.social-icon-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-heading-elite {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading-elite::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-nav-elite li {
    margin-bottom: 12px;
}

.footer-nav-elite li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-elite li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-contact-elite li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-elite {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

.gray-scale-hover span {
    transition: all 0.3s ease;
}

.gray-scale-hover:hover span {
    opacity: 1;
    color: #fff;
}

/* Animations & Spacing Fixes */
.w-fit { width: fit-content; }
/* The uppercase-tracking class is already defined above, removing duplicate */
/* .uppercase-tracking { text-transform: uppercase; letter-spacing: 1.5px; } */

@media (max-width: 768px) {
    .footer-elite {
        text-align: center;
    }
    .footer-brand-elite .d-flex, .social-grid {
        justify-content: center;
    }
    .footer-heading-elite::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-nav-elite li a:hover {
        padding-left: 0;
    }
    .footer-contact-elite li {
        justify-content: center;
    }
    .accreditation-strip {
        justify-content: center !important;
        margin-top: 20px;
    }
}

/* Mobile Nav Adjustments */
@media (max-width: 991px) {
    .main-navbar .navbar-collapse {
        background: white;
        margin-top: 15px;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .dropdown-mega .mega-menu-content {
        position: static !important;
        transform: none !important;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 !important;
    }

    .main-navbar.sticky-top{
        position: static;
    }

    .mega_menu_wrap{
        padding: 10px;
        margin-top: 10px;
    }

    .mega-menu-content.shadow-lg{
        box-shadow: 0 0rem 0.1rem rgba(0, 0, 0, 0.175);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Card Styling */
.domain-card {
    border: none;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.domain-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Feature Cards (Why Choose Us) */
.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
}

/* ==========================================================================
   About Page Styles Start
   ========================================================================== */

.page-hero {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.9)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.vision-mission-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-top: 5px solid var(--primary-color);
    transition: var(--transition-smooth);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.philosophy-bg {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px;
    border-left: 8px solid var(--primary-color);
}

.industry-item {
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.industry-item:hover {
    background: var(--primary-color);
    color: white !important;
}

.industry-item:hover i {
    color: white;
}

.industry-item span {
    font-weight: 600;
}

/* ==========================================================================
   About Page Styles End
   ========================================================================== */

/* ==========================================================================
   Programs Page Styles Start
   ========================================================================== */

.program-overview-card {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-feature-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
    height: 100%;
}

.overview-feature-box:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--primary-color);
}

.overview-feature-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.overview-feature-box h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.overview-feature-box p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.program-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.program-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.program-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
}

.program-card .btn-details {
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.program-card .btn-details:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.program-feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.program-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Program Details Page Styles */
.program-sidebar {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-info-item i {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.topic-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-color);
}

.topic-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.topic-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.ideal-audience-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.ideal-audience-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-banner {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

/* ==========================================================================
   Programs Page Styles End
   ========================================================================== */

/* ==========================================================================
   Modal Forms Styles
   ========================================================================== */

.modal-content-custom {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.modal-header-custom {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border: none;
}

.modal-body-custom {
    padding: 40px;
}


.form-label-custom {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-control-custom {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.1);
    outline: none;
}

.input-group-text-custom {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: var(--primary-color);
    padding: 0 15px;
}

.input-group-text-custom+.form-control-custom {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.btn-modal-submit {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

/* delivery mode css start */

.delivery-mode-integrated {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee !important;
}

.delivery-mode-integrated:hover {
    transform: scale(1.01);
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.mode-icon-box {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.delivery-mode-integrated:hover .mode-icon-box {
    background: var(--primary-color);
}

.delivery-mode-integrated:hover .mode-icon-box i {
    color: #fff !important;
}

.bg-primary-subtle {
    background: rgba(var(--bs-primary-rgb), 0.1);
}

.bg-success-subtle {
    background: rgba(var(--bs-success-rgb), 0.1);
}

.bg-warning-subtle {
    background: rgba(var(--bs-warning-rgb), 0.1);
}

.bg-danger-subtle {
    background: rgba(var(--bs-danger-rgb), 0.1);
}

.bg-info-subtle {
    background: rgba(var(--bs-info-rgb), 0.1);
}

.bg-subtle {
    background-color: #fcfcfd;
}

/* delivery mode css end */

/* copoprate trainning page start */

.corporate-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.corporate-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.corporate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.corporate-card:hover::before {
    height: 100%;
}

.executive-section {
    margin: 40px 0;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(13, 71, 161, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.corporate-card:hover .feature-icon-circle {
    background: var(--primary-color);
    color: #fff;
}

.program-focus-list {
    padding-left: 0;
    list-style: none;
}

.program-focus-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.program-focus-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(13, 71, 161, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.corporate-visual {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid rgba(0,0,0,0.05); */
}

.corporate-visual:hover {
    /* transform: scale(1.02); */
    background-color: #fff !important;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.06); */
}

.corporate-visual i.display-1 {
    pointer-events: none;
    transition: all 0.5s ease;
}

.corporate-visual:hover i.display-1 {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    opacity: 0.15 !important;
}

.executive-card {
    background: #fff;
    border: 1px solid rgba(13, 71, 161, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.executive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.06);
    border-color: rgba(13, 71, 161, 0.15);
}

.executive-card .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(13, 71, 161, 0.04);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.executive-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
}

.executive-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.executive-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.executive-card .accent-line {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.executive-card:hover .accent-line {
    width: 60px;
}

.resource-hub-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.resource-hub-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(13, 71, 161, 0.08);
    border-color: var(--primary-color);
}

.resource-hub-card .icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    background: rgba(13, 71, 161, 0.05);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.resource-hub-card:hover .icon-badge {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.resource-hub-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

.resource-hub-card .resource-meta {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.resource-hub-card .accent-pill {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.resource-hub-card:hover .accent-pill {
    transform: scale(2.5);
    opacity: 0.05;
}

.resource-category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f8fbff;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* copoprate trainning page end */

/* Industry Hub (Bento Grid) Layout */
.industry-hub-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
    background: #555;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 1;
}

.industry-hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.6s ease;
    z-index: -1;
}

.industry-hub-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.95) 0%, rgba(13, 71, 161, 0.4) 50%, transparent 100%);
    z-index: -1;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.industry-hub-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.industry-hub-card:hover::before {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.1);
}

.industry-hub-card:hover::after {
    background: linear-gradient(to top, var(--primary-color) 0%, rgba(13, 71, 161, 0.8) 100%);
    opacity: 1;
}

.industry-hub-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-hub-card:hover .card-icon {
    background: #fff;
    color: var(--primary-color);
    transform: scale(1.1);
}

.industry-hub-card h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.industry-hub-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.industry-hub-card .hover-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.industry-hub-card:hover .hover-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 1.5rem;
}

.industry-hub-card .focus-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.7rem;
    color: #fff;
    margin-right: 5px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Specific background images for industry cards */
.card-mfg::before {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=1000');
}

.card-retail::before {
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&q=80&w=1000');
}

.card-logistics::before {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1000');
}

.card-health::before {
    background-image: url('../images/health_farma_img.jpg');
}

.card-construction::before {
    background-image: url('../images/const_inf.jpg');
}

.card-energy::before {
    background-image: url('../images/energ_utl.jpg');
}

.card-public::before {
    background-image: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&q=80&w=1000');
}

/* Large card variant for Bento */
.industry-hub-card.card-featured {
    min-height: 450px;
}

.industry-hub-card.card-featured h3 {
    font-size: 2.2rem;
}

/* Mobile Optimizations for Industry Hub */
@media (max-width: 991px) {
    .industry-hub-card {
        min-height: 380px;
    }

    .industry-hub-card .hover-details {
        max-height: 500px;
        opacity: 1;
        margin-top: 1.5rem;
    }

    .industry-hub-card::after {
        opacity: 0.95;
        height: 85%;
    }

    .industry-hub-card.card-featured {
        min-height: 400px;
    }

    .industry-hub-card.card-featured h3 {
        font-size: 1.8rem;
    }
}

/* Clients & Partnerships Visual Polish */
.client-logo-grid .logo-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.client-logo-grid .logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.client-logo-grid .logo-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.partnership-glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.shape-glow-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.testimonial-elite-card {
    background: #fff;
    border-radius: 2rem;
    padding: 4rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-elite-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
}

/* career development page start */
.career-path-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.career-path-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.career-path-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.career-path-item .step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.05;
}

.roadmap-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.roadmap-card:hover {
    background: var(--bg-dark);
    color: #fff;
}

.roadmap-card:hover h4 {
    color: #fff;
}

.roadmap-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.roadmap-card:hover .icon-circle {
    background: var(--primary-color);
    color: #fff;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.eco-item {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.eco-item:hover {
    border-color: var(--info-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.eco-1 {
    grid-column: span 8;
}

.eco-2 {
    grid-column: span 4;
}

.eco-3 {
    grid-column: span 4;
}

.eco-4 {
    grid-column: span 8;
}

@media (max-width: 991px) {

    .eco-1,
    .eco-2,
    .eco-3,
    .eco-4 {
        grid-column: span 12;
    }
}

/* career development page end */

/* contact page css start */

.contact-method-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-align: center;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.contact-method-card .icon-box {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.form-container-elite {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.floating-input-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control-elite {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control-elite:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.contact-accent-shape {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

/* contact page css end */

/* policy page css start */
.policy-glass-container {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.policy-section-card {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    margin-bottom: 50px;
}

.policy-section-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.policy-section-card p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.policy-section-card ul {
    list-style: none;
    padding-left: 0;
}

.policy-section-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.policy-section-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* policy page css end */

/* Footer Styling */
footer {
    background: var(--bg-dark);
    color: #ecf0f1;
    padding: 80px 0 20px;
    overflow: hidden;
}

.footer_logo_text{
    color: rgba(255, 255, 255, 0.5);
}

footer h5 {
    color: white;
    margin-bottom: 25px;
}

.footer-link {
    display: block;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary-light);
    padding-left: 5px;
}
/* ==========================================================================
   Program Categories Section Styles
   ========================================================================== */

.category-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft, premium shadow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-header {
    padding: 2.5rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Specific Gradients for Categories */
/* Professional Certifications: Blue Gradient */
.category-card:nth-child(1) .category-header {
    background: linear-gradient(135deg, #0d47a1 0%, #42a5f5 100%);
}

/* Advanced Modules: Cyan/Teal Gradient */
.category-card:nth-child(2) .category-header {
    background: linear-gradient(135deg, #006064 0%, #00acc1 100%);
}

/* Corporate & Executive: Red/Crimson Gradient */
.category-card:nth-child(3) .category-header {
     background: linear-gradient(135deg, #b71c1c 0%, #e57373 100%);
}

.category-header i {
    font-size: 3.5rem;
    opacity: 0.2;
    position: absolute;
    right: 5px;
    transform: rotate(15deg);
    transition: all 0.5s ease;
}

.category-card:hover .category-header i {
    opacity: 0.4;
    transform: rotate(0deg) scale(1.1);
}

.category-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list li a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(0,0,0,0.01);
}

.category-list li a:hover {
    background: rgba(13, 71, 161, 0.05); /* Subtle blue tint on hover */
    color: var(--primary-color);
    padding-left: 18px;
}

.category-list li a i {
    font-size: 0.8rem;
    margin-right: 10px;
    opacity: 0.7;
    transition: margin-right 0.2s;
}

.category-list li a:hover i {
    margin-right: 15px;
    opacity: 1;
}

