/* Custom Design Token Definitions */
:root {
    --primary: #190556;
    --secondary: #ff0000;
    --primary-light: rgba(25, 5, 86, 0.05);
    --secondary-light: rgba(255, 0, 0, 0.05);
    --surface: #ffffff;
    --text-main: #1e1b29;
    --text-muted: #625f70;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(25, 5, 86, 0.08);
    --shadow-sm: 0 4px 12px rgba(25, 5, 86, 0.03);
    --shadow-md: 0 12px 34px -10px rgba(25, 5, 86, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-full: 100px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #f8f9fc;
    color: var(--text-main);
}

/* ==================== 1. Top Utility Bar ==================== */
.top-utility-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 12px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-links a:hover {
    color: #ffffff;
}

.contact-links i {
    color: var(--secondary);
    margin-right: 6px;
}

.divider {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
}

.location-badge i {
    color: var(--secondary);
    margin-right: 6px;
}

/* ==================== 2. Main Header (Glassmorphic) ==================== */
.main-header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Brand Identity */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), #2a0b8a);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.2);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-subtext {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navigation Menu */
.nav-links-wrapper {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.modern-nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-nav-link:hover, .modern-nav-link.active {
    color: var(--primary);
    background-color: var(--primary-light);
}

.drop-arrow {
    font-size: 11px;
    transition: var(--transition-smooth);
}

.mega-dropdown-trigger:hover .drop-arrow {
    transform: rotate(180deg);
}

/* ==================== 3. Grid Mega Dropdown Panel ==================== */
.mega-dropdown-trigger {
    position: relative;
}

.services-mega-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 720px;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mega-dropdown-trigger:hover .services-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.mega-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    display: flex;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.service-card:hover {
    background-color: #fafbfe;
    border-color: rgba(25, 5, 86, 0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sc-icon.blue-theme {
    background-color: var(--primary-light);
    color: var(--primary);
}

.sc-icon.red-theme {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.sc-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.sc-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==================== 4. Modern Header CTA Button ==================== */
.cta-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.cta-header-btn:hover {
    background-color: var(--primary);
    box-shadow: 0 6px 20px rgba(25, 5, 86, 0.2);
    transform: translateY(-2px);
}

.cta-header-btn i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.cta-header-btn:hover i {
    transform: translateX(4px);
}

/* ==================== 5. Hamburger & Responsive Architecture ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

@media (max-width: 1024px) {
    .services-mega-panel {
        width: 600px;
    }
}

@media (max-width: 912px) {
    .top-utility-bar {
        display: none; /* Streamlines real-estate on tablets/phones */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Transformation to slide-out structural layer */
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--surface);
        box-shadow: -10px 0 40px rgba(0,0,0,0.05);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 16px;
        transition: var(--transition-smooth);
    }

    .nav-links-wrapper.is-open {
        right: 0;
    }

    .modern-nav-link {
        width: 100%;
        font-size: 18px;
        padding: 14px;
    }

    .header-action-wrapper {
        display: none; /* Accessible inside mobile side panels or content sections instead */
    }

    /* Interactive UI adjustments for Mobile Dropdown state */
    .services-mega-panel {
        position: static;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0 0 0 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease-out;
    }

    .mega-dropdown-trigger.mobile-expanded .services-mega-panel {
        max-height: 1000px;
        margin-top: 10px;
    }

    .mega-panel-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Hamburger Animation States */
    .mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* =========================================================
   RESPONSIVE DESIGN SYSTEM
========================================================= */

/* ========== Extra Large Devices (1600px+) ========== */
@media (min-width: 1600px) {

    .nav-container,
    .utility-container {
        max-width: 1550px;
    }

    .brand-name {
        font-size: 26px;
    }

    .modern-nav-link {
        font-size: 16px;
        padding: 12px 22px;
    }

    .cta-header-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .services-mega-panel {
        width: 820px;
    }

    .mega-panel-grid {
        gap: 20px;
    }
}

/* ========== Large Laptop Devices (1400px - 1599px) ========== */
@media (max-width: 1599px) {

    .nav-container,
    .utility-container {
        max-width: 1350px;
    }

    .services-mega-panel {
        width: 760px;
    }
}

/* ========== Standard Laptop Devices (1200px - 1399px) ========== */
@media (max-width: 1399px) {

    .nav-container,
    .utility-container {
        padding-left: 4%;
        padding-right: 4%;
    }

    .services-mega-panel {
        width: 680px;
    }

    .modern-nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    .cta-header-btn {
        padding: 11px 20px;
    }
}

/* ========== Small Laptops (1025px - 1199px) ========== */
@media (max-width: 1199px) {

    .brand-name {
        font-size: 20px;
    }

    .brand-subtext {
        font-size: 10px;
    }

    .modern-nav-link {
        font-size: 14px;
        padding: 10px 13px;
    }

    .services-mega-panel {
        width: 620px;
        padding: 20px;
    }

    .sc-info h4 {
        font-size: 13px;
    }

    .sc-info p {
        font-size: 11px;
    }

    .cta-header-btn {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* ========== Tablet Landscape (913px - 1024px) ========== */
@media (max-width: 1024px) {

    .nav-container,
    .utility-container {
        padding-left: 3%;
        padding-right: 3%;
    }

    .services-mega-panel {
        width: 560px;
    }

    .mega-panel-grid {
        gap: 14px;
    }

    .service-card {
        padding: 12px;
    }

    .logo-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .brand-name {
        font-size: 19px;
    }
}

/* ========== Tablet Portrait & Mobile Large (912px and below) ========== */
@media (max-width: 912px) {

    .top-utility-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background-color: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 95px 28px 40px;
        gap: 14px;
        overflow-y: auto;
        z-index: 1000;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    }

    .nav-links-wrapper.is-open {
        right: 0;
    }

    .modern-nav-link {
        width: 100%;
        font-size: 17px;
        padding: 14px;
        border-radius: 10px;
    }

    .header-action-wrapper {
        display: none;
    }

    .services-mega-panel {
        position: static;
        transform: none !important;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0 0 0 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.35s ease;
    }

    .mega-dropdown-trigger.mobile-expanded .services-mega-panel {
        max-height: 1000px;
        margin-top: 10px;
    }

    .mega-panel-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 12px;
    }

    .mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ========== Large Mobile Devices (768px and below) ========== */
@media (max-width: 768px) {

    .nav-container {
        padding: 14px 5%;
    }

    .brand-logo {
        gap: 10px;
    }

    .logo-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-subtext {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .nav-links-wrapper {
        width: 88%;
        padding: 90px 24px 30px;
    }

    .modern-nav-link {
        font-size: 16px;
        padding: 13px;
    }

    .service-card {
        gap: 12px;
    }

    .sc-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ========== Standard Mobile Devices (576px and below) ========== */
@media (max-width: 576px) {

    .nav-container {
        padding: 12px 4%;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-subtext {
        display: none;
    }

    .logo-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 10px;
    }

    .mobile-menu-toggle {
        width: 22px;
        height: 16px;
    }

    .nav-links-wrapper {
        width: 92%;
        max-width: 100%;
        padding: 85px 20px 25px;
    }

    .modern-nav-link {
        font-size: 15px;
        padding: 12px;
    }

    .service-card {
        flex-direction: row;
        align-items: flex-start;
        padding: 10px;
    }

    .sc-info h4 {
        font-size: 13px;
    }

    .sc-info p {
        font-size: 11px;
    }
}

/* ========== Small Mobile Devices (420px and below) ========== */
@media (max-width: 420px) {

    .nav-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-name {
        font-size: 15px;
    }

    .logo-icon-wrapper {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .modern-nav-link {
        font-size: 14px;
        padding: 11px;
    }

    .nav-links-wrapper {
        padding: 80px 18px 20px;
    }

    .service-card {
        gap: 10px;
    }

    .sc-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .sc-info h4 {
        font-size: 12px;
    }

    .sc-info p {
        font-size: 10px;
        line-height: 1.5;
    }
}

/* ========== Ultra Small Devices (360px and below) ========== */
@media (max-width: 360px) {

    .brand-name {
        font-size: 14px;
    }

    .logo-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .modern-nav-link {
        font-size: 13px;
    }

    .nav-links-wrapper {
        width: 100%;
        border-radius: 0;
    }
}

/* ==================== Hero Slider Architecture ==================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(90vh - 120px); /* Adjust based on top bar + navbar height */
    min-height: 550px;
    overflow: hidden;
    background-color: #fcfdfe;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide Structure */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    z-index: 1;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background Optimization with Hardware Acceleration */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Slide Grid Content Container */
.slide-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.slide-content {
    max-width: 650px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

/* SEO Keyword Badge */
.keyword-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(25, 5, 86, 0.06);
}

.keyword-badge i {
    color: var(--secondary);
}

/* Headline Typography Typography */
.slide-content h1, 
.slide-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.slide-content h1 span,
.slide-content h2 span {
    color: var(--secondary);
    position: relative;
}

.slide-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
}

/* Premium Interactive Button Assemblies */
.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(25, 5, 86, 0.15);
}

.btn-primary:hover {
    background-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

/* Navigation Controls (Dots) */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(25, 5, 86, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.control-dot:hover {
    background-color: var(--primary);
}

.control-dot.active {
    width: 32px;
    background-color: var(--secondary);
}

/* ==================== Responsive Control Layer ==================== */
@media (max-width: 912px) {
    .hero-slider-section {
        height: auto;
        min-height: auto;
        padding: 80px 0;
    }
    
    .slide {
        position: relative;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    
    .slide.active {
        display: flex;
    }
    
    .slide-bg {
        transform: none !important;
        background-image: linear-gradient(180deg, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0.85) 100%) !important;
    }

    .slide-content h1, 
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slide-content h1, 
    .slide-content h2 {
        font-size: 28px;
    }
    
    .hero-btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
}

/* ==================== About Section Styles ==================== */
.about-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* --- Left Column: Layout & Visual elements --- */
.about-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

/* Floating Conversion Badge */
.floating-trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 45px rgba(25, 5, 86, 0.12);
    border: 1px solid var(--glass-border);
    animation: floatingAnimation 4s ease-in-out infinite;
}

@keyframes floatingAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.badge-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.badge-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.badge-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Micro Stats Grid Layout */
.highlights-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-stat-card {
    background-color: var(--primary-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(25, 5, 86, 0.03);
    transition: var(--transition-smooth);
}

.highlight-stat-card:hover {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    border-color: var(--glass-border);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* --- Right Column: Text & Pillars typography --- */
.about-content-block {
    display: flex;
    flex-direction: column;
}

.section-tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.section-title span {
    color: var(--secondary);
}

.about-lead-text {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-secondary-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Structural Layout for Value Pillars */
.value-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background-color: #f4f5f9;
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-item:hover .pillar-icon {
    background-color: var(--primary);
    color: #ffffff;
}

.pillar-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.pillar-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Action Trigger Elements */
.about-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(25, 5, 86, 0.15);
    transition: var(--transition-smooth);
}

.about-cta-btn:hover {
    background-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.about-contact-verify {
    display: flex;
    flex-direction: column;
}

.verify-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.verify-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.verify-link:hover {
    color: var(--secondary);
}

/* ==================== Responsive Queries ==================== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .main-image-wrapper {
        height: 380px;
    }
    
    .floating-trust-badge {
        right: 0;
    }
}

@media (max-width: 580px) {
    .about-section {
        padding: 80px 5%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .floating-trust-badge {
        position: static;
        margin-top: -86px;
        animation: none;
    }
    
    .highlights-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .about-action-row {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .about-cta-btn {
        justify-content: center;
    }
}

/* ==================== Vision & Mission Layout ==================== */
.vision-mission-section {
    padding: 120px 5%;
    background-color: #fafbfe;
    position: relative;
}

.vm-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Centered Header Mechanics */
.vm-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 12px;
}

/* Row-Based Flex Framework */
.vm-grid-rows {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.vm-row-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

/* Reverse layout modifier for alternating rows */
.vm-row-item.reverse {
    grid-template-columns: 1fr 1fr;
}

/* Card Presentation Architecture */
.vm-content-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.vm-content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-indicator-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.vm-row-item.reverse .card-indicator-icon {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.vm-content-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-lead {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 16px;
}

.card-detail {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Bullet Checklists */
.keyword-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.keyword-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.keyword-checklist i {
    color: #10b981; /* Premium Emerald Accent for Checklist confirmations */
    font-size: 16px;
}

/* Image Panel Construction */
.vm-image-panel {
    width: 100%;
    height: 440px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid #ffffff;
}

.vm-img-frame {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.vm-row-item:hover .vm-img-frame {
    transform: scale(1.04);
}

/* ==================== Responsive Control Layer ==================== */
@media (max-width: 1024px) {
    .vm-row-item, .vm-row-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Force structural image down below content blocks on tablets */
    .vm-row-item.reverse .vm-image-panel {
        grid-row: 2;
    }
    
    .vm-content-card {
        padding: 35px;
    }
    
    .vm-image-panel {
        height: 320px;
    }
}

@media (max-width: 580px) {
    .vision-mission-section {
        padding: 80px 5%;
    }
    
    .vm-header-block {
        margin-bottom: 50px;
    }
    
    .vm-grid-rows {
        gap: 60px;
    }
    
    .vm-content-card h3 {
        font-size: 22px;
    }
}

/* ==================== Services Grid Framework ==================== */
.services-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Text Alignments */
.services-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Primary Services Grid CSS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-main-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-main-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 5, 86, 0.12);
}

/* Card Header Layer Elements */
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.s-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-smooth);
}

.s-icon-box.blue-theme {
    background-color: var(--primary-light);
    color: var(--primary);
}

.s-icon-box.red-theme {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.service-main-card:hover .s-icon-box.blue-theme {
    background-color: var(--primary);
    color: #ffffff;
}

.service-main-card:hover .s-icon-box.red-theme {
    background-color: var(--secondary);
    color: #ffffff;
}

.service-index {
    font-size: 16px;
    font-weight: 800;
    color: rgba(25, 5, 86, 0.15);
    letter-spacing: 0.5px;
}

/* Service Card Typography Elements */
.service-main-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.service-main-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Inner Mini Bullets */
.service-card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    margin-top: auto; /* Pushes content down elegantly */
}

.service-card-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.service-card-bullets i {
    color: var(--secondary);
    font-size: 12px;
}

/* Anchor Trigger Actions */
.service-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-action-link:hover {
    color: var(--secondary);
}

.service-action-link i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.service-action-link:hover i {
    transform: translateX(4px);
}

/* ==================== Responsive Layer Control ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-main-card {
        padding: 30px;
    }
}

@media (max-width: 580px) {
    .services-section {
        padding: 80px 5%;
    }
    
    .services-header-block {
        margin-bottom: 50px;
    }
}

/* ==================== Simulator Banner Styles ==================== */
.simulator-banner-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fc 100%);
    position: relative;
    overflow: hidden;
}

.simulator-container {
    max-width: 1400px;
    margin: 0 auto;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content Column Styles */
.simulator-content-info {
    display: flex;
    flex-direction: column;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: max-content;
}

.simulator-content-info .section-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.simulator-content-info .section-heading span {
    color: var(--secondary);
}

.simulator-content-info .section-paragraph {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Features Matrix Assembly */
.simulator-features-matrix {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.matrix-card {
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.matrix-card:hover {
    transform: translateX(4px);
    border-color: rgba(25, 5, 86, 0.1);
}

.matrix-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.matrix-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.matrix-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Action Execution System */
.btn-primary-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(25, 5, 86, 0.12);
    transition: var(--transition-smooth);
}

.btn-primary-action:hover {
    background-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.18);
    transform: translateY(-2px);
}

/* Right Visual Mockup Column */
.simulator-visual-showcase {
    position: relative;
    width: 100%;
}

.visual-card-wrapper {
    position: relative;
    width: 100%;
}

.tech-glow-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: radial-gradient(circle, rgba(25,5,86,0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.simulator-display-frame {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    border: 6px solid #ffffff;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.live-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(25, 5, 86, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* Floating Component Pill */
.floating-stat-pill {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(25, 5, 86, 0.1);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.pill-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pill-title h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.pill-title p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==================== Responsive Mechanics ==================== */
@media (max-width: 1024px) {
    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .simulator-display-frame {
        height: 320px;
    }
}

@media (max-width: 580px) {
    .simulator-banner-section {
        padding: 80px 5%;
    }
    
    .simulator-content-info .section-heading {
        font-size: 28px;
    }
    
    .floating-stat-pill {
        position: static;
        margin-top: 20px;
    }
    
    .btn-primary-action {
        width: 100%;
        justify-content: center;
    }
}


/* ==================== Training Process Section Framework ==================== */
.process-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Timeline Layout Engine */
.process-timeline-wrapper {
    position: relative;
    width: 100%;
}

/* Background Connecting Graphic Line for desktop viewports */
.timeline-connecting-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light) 0%, rgba(255, 0, 0, 0.1) 100%);
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Individual Step Presentation Blocks */
.process-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 5, 86, 0.08);
}

/* Large Floating Counter Indexes */
.process-step-num {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 16px rgba(25, 5, 86, 0.15);
    transition: var(--transition-smooth);
}

.process-card:hover .process-step-num {
    background-color: var(--secondary);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.2);
}

/* Text and Inner Badge Frameworks */
.process-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.timeline-pill {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: max-content;
    margin-top: auto; /* Aligns neatly at the bottom baseline */
}

/* ==================== Responsive Timeline Adjustments ==================== */
@media (max-width: 1100px) {
    .timeline-connecting-line {
        display: none; /* Strip line background asset on tablet grid conversions */
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 650px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section {
        padding: 80px 5%;
    }
    
    .process-card {
        padding: 24px;
    }
    
    .process-header-block {
        margin-bottom: 50px;
    }
}


/* ==================== Syllabus Section Framework ==================== */
.syllabus-section {
    padding: 120px 5%;
    background-color: #f8fafc; /* Subtle off-white backdrop differentiation */
    position: relative;
}

.syllabus-container {
    max-width: 1400px;
    margin: 0 auto;
}

.syllabus-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Two-Column Split Architecture */
.syllabus-split-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.syllabus-column-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

/* Structural Badges */
.column-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.column-badge.primary-accent {
    background-color: var(--primary-light);
    color: var(--primary);
}

.column-badge.secondary-accent {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.syllabus-column-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.column-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    border-bottom: 1px dashed var(--glass-border);
    padding-bottom: 20px;
}

/* Syllabus Checklist System */
.syllabus-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.syllabus-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-check {
    font-size: 20px;
    color: #10b981; /* Solid green success icon verification */
    margin-top: 2px;
    flex-shrink: 0;
}

.item-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.item-text p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Compliance Bottom Strip */
.syllabus-footer-note {
    text-align: center;
    margin-top: 60px;
    background-color: #ffffff;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    display: width;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.syllabus-footer-note p {
    font-size: 13px;
    color: var(--text-main);
}

.syllabus-footer-note i {
    color: var(--primary);
    margin-right: 6px;
}

/* ==================== Responsive Configurations ==================== */
@media (max-width: 1024px) {
    .syllabus-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .syllabus-column-card {
        padding: 35px;
    }
}

@media (max-width: 650px) {
    .syllabus-section {
        padding: 80px 5%;
    }
    
    .syllabus-header-block {
        margin-bottom: 50px;
    }
    
    .syllabus-footer-note {
        border-radius: var(--radius-md);
        padding: 16px 20px;
    }
}

/* ==================== Facilities Section Styles ==================== */
.facilities-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.facilities-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Three-Column Asset Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.facility-display-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden; /* Ensures image boundaries wrap cleanly */
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.facility-display-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 5, 86, 0.1);
}

/* Image Wrapper Positioning Rules */
.facility-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* Fixed aspect ratio prevents layout shifts */
    overflow: hidden;
    background-color: #e2e8f0;
}

.facility-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.facility-display-card:hover .facility-img {
    transform: scale(1.06); /* Sophisticated subtle zoom transformation */
}

/* Category Overlay Floating Pills */
.facility-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(25, 5, 86, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Info Body Block Elements */
.facility-info-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.facility-info-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.facility-info-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Multi-Amenity Tag Strip */
.facility-amenities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto; /* Aligns neatly to card bases */
}

.facility-amenities-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.facility-amenities-row i {
    font-size: 11px;
    color: var(--secondary);
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-section {
        padding: 80px 5%;
    }
    
    .facility-info-body {
        padding: 24px;
    }
    
    .facilities-header-block {
        margin-bottom: 50px;
    }
}


/* ==================== Practical Training Section Framework ==================== */
.practical-section {
    padding: 120px 5%;
    background-color: #fafbfe; /* Subtle light background to create section contrast */
    position: relative;
}

.practical-container {
    max-width: 1400px;
    margin: 0 auto;
}

.practical-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Three-Column Dynamic Grid Layout */
.practical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.practical-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px 35px 35px 35px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden; /* Contains the colored accent bar cleanly */
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.practical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 5, 86, 0.08);
}

/* Brand Identity Accent Bars */
.p-card-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.p-card-accent-bar.blue-bg { background-color: var(--primary); }
.p-card-accent-bar.red-bg { background-color: var(--secondary); }

/* Icon Presentations */
.p-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #f1f3f9;
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.practical-card:hover .p-icon-circle {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* Card Typography Components */
.practical-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.practical-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Micro Meta Metrics Tags */
.p-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    background-color: #f8fafc;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    width: max-content;
    margin-top: auto; /* Keeps all metadata pills perfectly aligned at the bottom */
    border: 1px solid #f1f5f9;
}

.p-meta-tag i {
    color: var(--secondary);
    font-size: 11px;
}

/* ==================== Grid Responsive Architecture ==================== */
@media (max-width: 1100px) {
    .practical-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .practical-grid {
        grid-template-columns: 1fr;
    }
    
    .practical-section {
        padding: 80px 5%;
    }
    
    .practical-card {
        padding: 30px 24px 24px 24px;
    }
    
    .practical-header-block {
        margin-bottom: 50px;
    }
}


/* ==================== FAQ Section Framework ==================== */
.faq-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.faq-container {
    max-width: 900px; /* Narrower width optimizes scannability for text-heavy content */
    margin: 0 auto;
}

.faq-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* Accordion Component Stack */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #f8fafc;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Native Details/Summary Reset Configurations */
.faq-trigger {
    padding: 24px 30px;
    list-style: none; /* Strips default native triangle markers */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-trigger::-webkit-details-marker {
    display: none; /* Webkit browser override reset */
}

.faq-trigger h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    padding-right: 20px;
}

/* Animated Interaction Indicator Markers */
.faq-icon-marker {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
    flex-shrink: 0;
}

.faq-item:hover .faq-trigger {
    background-color: rgba(25, 5, 86, 0.02);
}

/* Active State Styles via Native Attributes */
.faq-item[open] {
    background-color: #ffffff;
    border-color: rgba(25, 5, 86, 0.12);
    box-shadow: var(--shadow-md);
}

.faq-item[open] .faq-trigger {
    background-color: #ffffff;
    border-bottom: 1px dashed var(--glass-border);
}

.faq-item[open] .faq-icon-marker {
    transform: rotate(180deg); /* Flips the chevron upward smoothly */
    background-color: var(--secondary);
    color: #ffffff;
}

/* Descriptive Expanded Content Panel */
.faq-content-body {
    padding: 24px 30px;
    background-color: #ffffff;
    animation: slideDownFade 0.4s ease-out;
}

.faq-content-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CSS Animation for Native Summary Reveal Actions */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive Cleanups ==================== */
@media (max-width: 650px) {
    .faq-section {
        padding: 80px 5%;
    }
    
    .faq-header-block {
        margin-bottom: 40px;
    }
    
    .faq-trigger {
        padding: 20px;
    }
    
    .faq-content-body {
        padding: 20px;
    }
    
    .faq-trigger h3 {
        font-size: 15px;
    }
}

/* ==================== Testimonials Section Framework ==================== */
.testimonials-section {
    padding: 120px 5%;
    background-color: #f8fafc; /* Alternating light layout grid separation */
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Three-Column Review Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 5, 86, 0.08);
}

/* Rating Component Vector Colors */
.rating-stars {
    color: #ffb703; /* Clean golden yellow star accentuation */
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

/* Quote Text Presentation styling rules */
.testimonial-text {
    font-size: 14.5px;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

/* Metadata Footer Card Layer */
.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.author-avatar.blue-theme {
    background-color: var(--primary-light);
    color: var(--primary);
}

.author-avatar.red-theme {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.author-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.verified-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #10b981; /* Standard trust verified profile status green */
    margin-bottom: 4px;
}

.verified-tag i {
    font-size: 10px;
}

.course-tag {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 750px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 80px 5%;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonials-header-block {
        margin-bottom: 50px;
    }
}

/* ==================== Book a Slot Section Framework ==================== */
.booking-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Two-Column Split Architecture */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Left Narrative Column Content Elements */
.booking-info-block .section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.booking-info-block .section-title span {
    color: var(--secondary);
}

.booking-info-block .section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Value Indicators Positioning Rules */
.trust-indicators-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-item i {
    color: #10b981; /* Trust validation verified marker indicator green */
    font-size: 20px;
    margin-top: 2px;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Right Interactive Input Form Column Box */
.booking-form-wrapper {
    background-color: #f8fafc;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 45px;
    box-shadow: var(--shadow-sm);
}

.interactive-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Horizontal Field Splits for Desktop Screen Viewports */
.form-row.split-row {
    flex-direction: row;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Pure Forms Typography Elements & Reset Layout Controls */
.form-group label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(25, 5, 86, 0.05);
}

/* Custom Textarea Override Configuration */
.form-group textarea {
    resize: vertical;
}

/* Core Form Submission Operational Trigger Element */
.form-submit-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-security-disclaimer {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 10px;
}

.form-security-disclaimer i {
    color: #64748b;
    margin-right: 4px;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 650px) {
    .booking-section {
        padding: 80px 5%;
    }
    
    .booking-info-block .section-title {
        font-size: 28px;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row.split-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-submit-btn {
        width: 100%;
    }
}

/* ==================== Structural Footer Section Framework ==================== */
.main-footer {
    background-color: #0f172a; /* Sophisticated deep slate dark background layer */
    color: #94a3b8;
    padding: 80px 5% 30px 5%;
    border-top: 4px solid var(--secondary); /* Vibrant top accent divider strip */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Four-Column Split Grid Core */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Summary Presentation Column Rules */
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--secondary);
}

.brand-pitch {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #94a3b8;
}

/* Interactive Social Icon Vectors Container */
.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    background-color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-social-links a:hover {
    background-color: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Column Header Styling Typography Setup */
.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
}

/* Navigation Lists Layout resets */
.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link-list a i {
    font-size: 12px;
    color: #64748b;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-link-list a:hover i {
    color: var(--secondary);
}

/* Complex Contact Parameters Layout Tree */
.footer-contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-details li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact-details li i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-details span {
    display: block;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-contact-details strong a {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-details strong a:hover {
    color: var(--secondary);
}

.footer-contact-details p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #cbd5e1;
}

/* ==================== Bottom Compliance Bar ==================== */
.footer-bottom-bar {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 13px;
    color: #64748b;
}

.footer-compliance-links {
    display: flex;
    gap: 24px;
}

.footer-compliance-links a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-compliance-links a:hover {
    color: #ffffff;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .main-footer {
        padding: 60px 5% 30px 5%;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-compliance-links {
        justify-content: center;
        gap: 16px;
    }
}


/* ==================== Packages Pricing Section Framework ==================== */
.packages-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
}

.packages-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

/* Three-Column Structural Pricing Grid Matrix */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Base Card Layout Tree Architecture */
.package-card {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(25, 5, 86, 0.08);
}

/* Header Presentation Typography Node Elements */
.package-header {
    margin-bottom: 30px;
}

.package-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    background-color: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.package-target {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Pricing Presentation Elements Grid Row */
.package-pricing-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 35px;
    border-bottom: 1px dashed var(--glass-border);
    padding-bottom: 25px;
}

.package-pricing-row .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-right: 4px;
}

.package-pricing-row .price-amount {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1;
}

.package-pricing-row .price-tenure {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 6px;
    font-weight: 500;
}

/* Feature Item Lists Layout Configurations */
.package-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.package-features-list li {
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.package-features-list li i {
    font-size: 14px;
    margin-top: 2px;
}

.package-features-list li i.fa-check {
    color: #10b981; /* Success Check Vector Green Accent */
}

/* Disabled Row Parameters */
.package-features-list li.disabled-feature {
    color: #94a3b8;
    text-decoration: line-through;
}

.package-features-list li i.fa-xmark {
    color: #cbd5e1;
}

/* Action Trigger Structural Button Elements */
.package-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    border-radius: var(--radius-full);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.package-cta-btn.line-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.package-cta-btn.line-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* ==================== Featured Card Style Overrides ==================== */
.package-card.featured-card {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
}

.package-card.featured-card .package-icon {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.package-cta-btn.solid-btn {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.15);
}

.package-card.featured-card:hover {
    border-color: var(--secondary);
}

.package-card.featured-card .package-cta-btn.solid-btn:hover {
    background-color: var(--secondary);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.2);
}

/* Top Banner Accent Ribbon Node Component */
.popular-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    /* Let the high-margin combo card span full on medium screens if odd item count */
    .package-card:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 750px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card:nth-child(3) {
        grid-column: span 1;
    }
    
    .packages-section {
        padding: 80px 5%;
    }
    
    .package-card {
        padding: 40px 24px;
    }
    
    .packages-header-block {
        margin-bottom: 50px;
    }
    
    .package-pricing-row .price-amount {
        font-size: 38px;
    }
}

/* ==================== Two-Wheeler Training Layout Framework ==================== */
.two-wheeler-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.two-wheeler-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Asymmetric 1.2fr to 1fr Row Balance Layout */
.tw-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Narrative Stream Styling */
.tw-content-column .section-paragraph {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 24px;
}

.tw-content-column .section-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

/* Internal Informational Features Stack Layout */
.tw-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.pillar-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.pillar-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Call to Action Module Alignment */
.tw-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tw-primary-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
}

.tw-primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.tw-meta-note {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.tw-meta-note i {
    color: var(--primary);
}

/* Right Structural Specifications Sticky Sidebar */
.tw-specs-column {
    position: sticky;
    top: 40px;
}

.specs-sticky-card {
    background-color: #f8fafc;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.specs-card-header {
    margin-bottom: 24px;
}

.specs-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.specs-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Data Table Presentation Rules */
.tw-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.tw-spec-table th,
.tw-spec-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.5;
}

.tw-spec-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tw-spec-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.tw-spec-table tbody tr:last-child {
    border-bottom: none;
}

.tw-spec-table td strong {
    color: var(--primary);
}

.specs-card-footer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .tw-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tw-specs-column {
        position: static; /* Disables sticky parameters on vertical tablet stack flows */
    }
}

@media (max-width: 650px) {
    .two-wheeler-section {
        padding: 80px 5%;
    }
    
    .tw-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .tw-primary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-sticky-card {
        padding: 24px 16px;
    }
    
    .tw-spec-table th,
    .tw-spec-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* ==================== Four-Wheeler Training Layout Framework ==================== */
.four-wheeler-section {
    padding: 120px 5%;
    background-color: #f8fafc; /* Alternates clean layout grids across sections */
    position: relative;
}

.four-wheeler-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Asymmetric 1.2fr to 1fr Row Balance Layout */
.fw-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Narrative Stream Styling */
.fw-content-column .section-paragraph {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 24px;
}

.fw-content-column .section-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

/* Internal Informational Features Stack Layout */
.fw-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.pillar-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.pillar-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Call to Action Module Alignment */
.fw-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.fw-primary-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
}

.fw-primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.fw-meta-note {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.fw-meta-note i {
    color: var(--primary);
}

/* Right Structural Specifications Sticky Sidebar */
.fw-specs-column {
    position: sticky;
    top: 40px;
}

.specs-sticky-card {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.specs-card-header {
    margin-bottom: 24px;
}

.specs-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.specs-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Data Table Presentation Rules */
.fw-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.fw-spec-table th,
.fw-spec-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.5;
}

.fw-spec-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fw-spec-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.fw-spec-table tbody tr:last-child {
    border-bottom: none;
}

.fw-spec-table td strong {
    color: var(--primary);
}

.specs-card-footer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .fw-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .fw-specs-column {
        position: static; /* Disables sticky positioning on stacked layouts */
    }
}

@media (max-width: 650px) {
    .four-wheeler-section {
        padding: 80px 5%;
    }
    
    .fw-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .fw-primary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-sticky-card {
        padding: 24px 16px;
    }
    
    .fw-spec-table th,
    .fw-spec-table td {
        padding: 12px;
        font-size: 13px;
    }
}


/* ==================== Heavy Vehicle Training Layout Framework ==================== */
.heavy-vehicle-section {
    padding: 120px 5%;
    background-color: #ffffff; /* Alternates back to bright workspace layouts across pages */
    position: relative;
}

.heavy-vehicle-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Asymmetric 1.2fr to 1fr Row Balance Layout */
.hv-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Narrative Stream Styling */
.hv-content-column .section-paragraph {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 24px;
}

.hv-content-column .section-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

/* Internal Informational Features Stack Layout */
.hv-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.pillar-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.pillar-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Call to Action Module Alignment */
.hv-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hv-primary-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
}

.hv-primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.hv-meta-note {
    font-size: 12.5px;
    color: #b91c1c; /* Prominent warning red to cleanly flag statutory licensing barriers */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    flex: 1;
    min-width: 280px;
    line-height: 1.4;
}

.hv-meta-note i {
    font-size: 14px;
    flex-shrink: 0;
}

/* Right Structural Specifications Sticky Sidebar */
.hv-specs-column {
    position: sticky;
    top: 40px;
}

.specs-sticky-card {
    background-color: #f8fafc;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.specs-card-header {
    margin-bottom: 24px;
}

.specs-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.specs-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Data Table Presentation Rules */
.hv-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.hv-spec-table th,
.hv-spec-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.5;
}

.hv-spec-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hv-spec-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.hv-spec-table tbody tr:last-child {
    border-bottom: none;
}

.hv-spec-table td strong {
    color: var(--primary);
}

.specs-card-footer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .hv-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hv-specs-column {
        position: static; /* Disables sticky positioning adjustments on tablet viewports */
    }
}

@media (max-width: 650px) {
    .heavy-vehicle-section {
        padding: 80px 5%;
    }
    
    .hv-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hv-primary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-sticky-card {
        padding: 24px 16px;
    }
    
    .hv-spec-table th,
    .hv-spec-table td {
        padding: 12px;
        font-size: 13px;
    }
}


/* ==================== Trailer Training Layout Framework ==================== */
.trailer-section {
    padding: 120px 5%;
    background-color: #f8fafc; /* Alternates to match sequential landing blocks */
    position: relative;
}

.trailer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Asymmetric 1.2fr to 1fr Row Balance Layout */
.tr-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Narrative Stream Styling */
.tr-content-column .section-paragraph {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 24px;
}

.tr-content-column .section-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

/* Internal Informational Features Stack Layout */
.tr-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.pillar-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.pillar-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Call to Action Module Alignment */
.tr-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tr-primary-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
}

.tr-primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.tr-meta-note {
    font-size: 12.5px;
    color: #1e3a8a; /* Clean deep operational blue for strict commercial entry flags */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    flex: 1;
    min-width: 280px;
    line-height: 1.4;
}

.tr-meta-note i {
    font-size: 14px;
    flex-shrink: 0;
}

/* Right Structural Specifications Sticky Sidebar */
.tr-specs-column {
    position: sticky;
    top: 40px;
}

.specs-sticky-card {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.specs-card-header {
    margin-bottom: 24px;
}

.specs-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.specs-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Data Table Presentation Rules */
.tr-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.tr-spec-table th,
.tr-spec-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.5;
}

.tr-spec-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tr-spec-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.tr-spec-table tbody tr:last-child {
    border-bottom: none;
}

.tr-spec-table td strong {
    color: var(--primary);
}

.specs-card-footer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .tr-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tr-specs-column {
        position: static; /* Drops sticky layout features on compressed tablet screens */
    }
}

@media (max-width: 650px) {
    .trailer-section {
        padding: 80px 5%;
    }
    
    .tr-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .tr-primary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-sticky-card {
        padding: 24px 16px;
    }
    
    .tr-spec-table th,
    .tr-spec-table td {
        padding: 12px;
        font-size: 13px;
    }
}


/* ==================== Learner's Licence Assistance Layout Framework ==================== */
.ll-section {
    padding: 120px 5%;
    background-color: #ffffff; /* Sets a bright, clean baseline for data readability */
    position: relative;
}

.ll-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Asymmetric 1.2fr to 1fr Row Balance Layout */
.ll-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Narrative Stream Styling */
.ll-content-column .section-paragraph {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 24px;
}

.ll-content-column .section-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

/* Internal Informational Features Stack Layout */
.ll-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.pillar-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.pillar-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Call to Action Module Alignment */
.ll-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ll-primary-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
}

.ll-primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.ll-meta-note {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.ll-meta-note i {
    color: #10b981; /* Verified green icon indicator */
}

/* Right Structural Specifications Sticky Sidebar */
.ll-specs-column {
    position: sticky;
    top: 40px;
}

.specs-sticky-card {
    background-color: #f8fafc;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.specs-card-header {
    margin-bottom: 24px;
}

.specs-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.specs-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Data Table Presentation Rules */
.ll-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.ll-spec-table th,
.ll-spec-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.5;
}

.ll-spec-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ll-spec-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.ll-spec-table tbody tr:last-child {
    border-bottom: none;
}

.ll-spec-table td strong {
    color: var(--primary);
}

.specs-card-footer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .ll-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ll-specs-column {
        position: static; /* Drops sticky layout behavior on smaller screens */
    }
}

@media (max-width: 650px) {
    .ll-section {
        padding: 80px 5%;
    }
    
    .ll-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .ll-primary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-sticky-card {
        padding: 24px 16px;
    }
    
    .ll-spec-table th,
    .ll-spec-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* ==================== Permanent Driving Licence Support Framework ==================== */
.dl-support-section {
    padding: 120px 5%;
    background-color: #f8fafc; /* Alternates to soft contrast backdrop for visual hierarchy */
    position: relative;
}

.dl-support-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Asymmetric 1.2fr to 1fr Row Balance Layout */
.dl-support-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left Narrative Stream Styling */
.dl-support-content-column .section-paragraph {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 24px;
}

.dl-support-content-column .section-paragraph strong {
    color: var(--primary);
    font-weight: 700;
}

/* Internal Informational Features Stack Layout */
.dl-support-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.pillar-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--secondary);
    color: #ffffff;
}

.pillar-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Call to Action Module Alignment */
.dl-support-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.dl-support-primary-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
}

.dl-support-primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.dl-support-meta-note {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    flex: 1;
    min-width: 260px;
    line-height: 1.4;
}

.dl-support-meta-note i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

/* Right Structural Specifications Sticky Sidebar */
.dl-support-specs-column {
    position: sticky;
    top: 40px;
}

.specs-sticky-card {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.specs-card-header {
    margin-bottom: 24px;
}

.specs-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.specs-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Data Table Presentation Rules */
.dl-support-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.dl-support-spec-table th,
.dl-support-spec-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 13.5px;
    line-height: 1.5;
}

.dl-support-spec-table th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dl-support-spec-table tbody tr {
    border-bottom: 1px solid var(--glass-border);
}

.dl-support-spec-table tbody tr:last-child {
    border-bottom: none;
}

.dl-support-spec-table td strong {
    color: var(--primary);
}

.specs-card-footer p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    font-style: italic;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1100px) {
    .dl-support-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .dl-support-specs-column {
        position: static; /* Drops sticky layout updates on stacked mobile viewports */
    }
}

@media (max-width: 650px) {
    .dl-support-section {
        padding: 80px 5%;
    }
    
    .dl-support-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .dl-support-primary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .specs-sticky-card {
        padding: 24px 16px;
    }
    
    .dl-support-spec-table th,
    .dl-support-spec-table td {
        padding: 12px;
        font-size: 13px;
    }
}

/* ==================== Interactive Image Gallery Layout Frame ==================== */
.gallery-section {
    padding: 120px 5%;
    background-color: #ffffff;
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* Horizontal Interactive Filter Pill Row */
.gallery-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #f1f5f9;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.15);
}

/* Bento-Inspired Responsive Grid Matrix */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Individual Image Card Node Structural Configurations */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    transition: transform var(--transition-smooth), opacity 0.4s ease;
}

.gallery-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Accent Layer Vectors */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(25, 5, 86, 0.9) 0%, rgba(25, 5, 86, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay-text {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
}

.overlay-text h3 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
}

/* Hover Phase Event Triggers */
.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-text {
    transform: translateY(0);
}

/* Filter Behavior Class Modifiers */
.gallery-item.hide-item {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-section {
        padding: 80px 5%;
    }
    
    .gallery-filter-wrapper {
        gap: 8px;
        margin-bottom: 35px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .gallery-overlay {
        padding: 20px;
    }
    
    .overlay-text h3 {
        font-size: 16px;
    }
}

/* ==================== Local Schema Contact & Booking Engine Layout ==================== */
.contact-section {
    padding: 120px 5%;
    background-color: #f8fafc; /* Matches alternative background tiers for sharp layout balance */
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Two-Column Form and Info Split Layout Matrix */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

/* Left Narrative Text Stream Configuration */
.contact-narrative {
    font-size: 15.5px;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-details-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

/* Informational Info Row Element Nodes */
.detail-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.detail-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.detail-text p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.contact-link:hover {
    color: var(--secondary);
}

.days-label {
    font-weight: 600;
    color: var(--text-main);
}

/* Interactive Map Frame Wrapper Group */
.map-embed-frame {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
}

.map-embed-frame iframe {
    display: block;
}

/* Right Side Registration Form Sheet Layout Rules */
.form-wrapper-card {
    background-color: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 45px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Custom Interactive Input Fields Architectures */
.enrollment-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.input-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Custom Multiline Notes Configuration Row updates */
.text-area-wrapper i {
    top: 16px;
}

.input-wrapper textarea {
    resize: vertical;
}

/* User Accent Interactive Feedback Updates */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(25, 5, 86, 0.08);
}

/* High-Visibility Action Trigger Elements */
.submit-enrollment-btn {
    background-color: var(--primary);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(25, 5, 86, 0.1);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.submit-enrollment-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.15);
}

.form-privacy-disclaimer {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 5px;
}

.form-privacy-disclaimer i {
    color: #22c55e;
    font-size: 13px;
    margin-top: 2px;
}

/* ==================== Grid Responsive Layers ==================== */
@media (max-width: 1150px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 650px) {
    .contact-section {
        padding: 80px 5%;
    }

    .form-wrapper-card {
        padding: 30px 20px;
    }

    .form-row-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==================== Structural Local SEO Breadcrumb Pathway Frame ==================== */
.breadcrumb-nav-banner {
    background-color: #f1f5f9; /* Soft background tint line framework */
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 5%;
    position: relative;
    z-index: 10;
}

.breadcrumb-inner-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Individual Pathway Element Styles */
.breadcrumb-item-node {
    display: inline-flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 600;
}

/* Parent Anchor Traversal Properties */
.breadcrumb-anchor-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.breadcrumb-anchor-link:hover {
    color: var(--primary);
}

.home-node-icon {
    font-size: 12.5px;
    transform: translateY(-0.5px);
}

/* Visual Path Component Separators */
.breadcrumb-path-separator {
    color: #94a3b8;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* Terminal Active Endpoint Configurations */
.breadcrumb-current-active {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.2px;
    cursor: default;
}

/* ==================== Breadcrumb Responsive Tuning Layers ==================== */
@media (max-width: 650px) {
    .breadcrumb-nav-banner {
        padding: 14px 5%;
    }
    
    .breadcrumb-inner-wrapper {
        gap: 8px;
    }
    
    .breadcrumb-item-node {
        font-size: 12.5px;
    }
    
    .home-node-icon {
        font-size: 11.5px;
    }
    
    .breadcrumb-path-separator {
        font-size: 10px;
    }
}

/* ==========================================================================
   Premium Floating Glass Pillar Social Track
   ========================================================================== */

/* Base Pillar Styling (Desktop View Only) */
.modern-social-pillar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* Glassmorphism Body Effect */
.pillar-glass-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

/* Icon Link Base Styles */
.pillar-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    font-size: 20px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Hover Scaling Effect */
.pillar-icon-link:hover {
    transform: scale(1.15);
    color: #ffffff !important; /* Forces text to white on hover */
}

/* --- Brand Specific Original Colors --- */

/* WhatsApp: #25D366 */
.link-whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

/* Facebook: #1877F2 */
.link-facebook:hover {
    background: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

/* Instagram: Original Gradient */
.link-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.5);
}

/* YouTube: #FF0000 */
.link-youtube:hover {
    background: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* --- Dynamic CSS Tooltip --- */
.pillar-icon-link::after {
    content: attr(data-label);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.pillar-icon-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* ==========================================================================
   Responsive Breakpoints (Hiding on Mobile & Tablet)
   ========================================================================== */

/* Target screens smaller than laptops (1024px width down to mobile) */
@media (max-width: 1024px) {
    .modern-social-pillar {
        display: none !important;
    }
}


