/* Main Stylesheet for AI Education Website */
/* ================================================ */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Account for fixed header */
}

/* Base Typography and RTL Support */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation - Beautiful Design */
.main-nav {
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 70px;
    gap: 20px;
}

.logo {
    text-align: center;
    flex: 1;
}

.nav-menu {
    grid-column: 1;
    justify-self: start;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #F18F01, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo a {
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav-menu {
    position: relative;
    display: flex;
    flex: 1;
    justify-content: flex-start;
}

.nav-list {
    display: flex;
    flex-direction: row-reverse;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #F18F01, #ff9800);
    border-radius: 25px;
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 143, 1, 0.3);
}

.nav-link.active {
    font-weight: 600;
}

/* Hamburger Menu (for mobile) - Enhanced Design */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
        transition: all 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        margin-bottom: 0.5rem;
    }
    
    .logo {
        grid-column: 2;
        justify-self: center;
    }
    
    .hamburger {
        display: flex;
        grid-column: 3;
        justify-self: end;
    }
}

/* Hero Section - Enhanced Design */
.hero {
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 50%, #A23B72 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    text-align: right;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Buttons - Enhanced Design */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #F18F01, #ff9800);
    color: white;
    border-color: #F18F01;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d67a00, #f57c00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(241, 143, 1, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #2E86AB;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #2E86AB;
    border-color: #2E86AB;
}

.btn-outline:hover {
    background: #2E86AB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

/* Main Content Sections */
section {
    padding: 3rem 0;
}

.page-header {
    background: #f8f9fa;
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2E86AB;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Placeholder Styles */
.content-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

.content-placeholder h2 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.content-placeholder ul {
    text-align: right;
    max-width: 600px;
    margin: 2rem auto;
}

.content-placeholder li {
    margin: 0.5rem 0;
    color: #555;
}

.coming-soon {
    background: #2E86AB;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 2rem;
    font-weight: 600;
}

/* Grid Layouts */
.dimensions-grid,
.areas-grid,
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Cards - Beautiful Design */
.dimension-card,
.area-card,
.link-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 134, 171, 0.1);
}

.dimension-card::before,
.area-card::before,
.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E86AB, #F18F01, #A23B72);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dimension-card:hover,
.area-card:hover,
.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.dimension-card:hover::before,
.area-card:hover::before,
.link-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.card-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 15px rgba(46, 134, 171, 0.3));
    transition: transform 0.3s ease;
}

.dimension-card:hover .card-icon img,
.area-card:hover .card-icon img {
    transform: scale(1.1) rotate(5deg);
}

.dimension-card h3,
.area-card h3 {
    color: #2E86AB;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.dimension-card p,
.area-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-link {
    color: #F18F01;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.card-link::after {
    content: ' ←';
    transition: transform 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: #d67a00;
}

.card-link:hover::after {
    transform: translateX(-5px);
}

/* Link Cards */
.link-card {
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.link-card h3 {
    color: #2E86AB;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.link-card p {
    color: #666;
    line-height: 1.5;
}

.link-card:hover {
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
}

.link-card:hover h3,
.link-card:hover p {
    color: white;
}

.link-card.featured {
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
    border: 2px solid #F18F01;
    position: relative;
    overflow: hidden;
}

.link-card.featured::before {
    content: '⭐';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    opacity: 0.8;
}

.link-card.featured h3 {
    color: white;
    margin-top: 2rem;
}

.link-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.link-card.featured:hover {
    background: linear-gradient(135deg, #1c5f7a 0%, #2E86AB 100%);
    border-color: #ffa726;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #F18F01;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Documents Page Styling */
.documents-tools {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 2px solid #e9ecef;
}

.search-filter-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-box input {
    padding: 12px 20px;
    border: 2px solid #2E86AB;
    border-radius: 25px;
    font-size: 1rem;
    width: 300px;
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.2);
    border-color: #F18F01;
}

.search-btn {
    padding: 12px 20px;
    background: #2E86AB;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #1c5f7a;
    transform: translateY(-2px);
}

.filter-options {
    display: flex;
    gap: 1rem;
}

.filter-options select {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-options select:focus {
    outline: none;
    border-color: #2E86AB;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.2);
}

/* Document Cards */
.documents-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.document-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E86AB, #F18F01);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.document-card:hover::before {
    transform: scaleX(1);
}

.document-preview {
    text-align: center;
    margin-bottom: 1.5rem;
}

.document-preview img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 10px rgba(46, 134, 171, 0.3));
}

.document-info h3 {
    color: #2E86AB;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.document-author {
    color: #3498db;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 500;
    border-right: 3px solid #3498db;
    padding-right: 12px;
    font-style: italic;
}

.document-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: justify;
}

.document-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.document-meta span {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.document-meta .category {
    background: rgba(46, 134, 171, 0.1);
    color: #2E86AB;
}

.document-meta .language {
    background: rgba(241, 143, 1, 0.1);
    color: #F18F01;
}

.document-meta .institute {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.document-meta .budget {
    background: rgba(255, 152, 0, 0.1);
    color: #e65100;
    font-weight: 600;
}

.document-meta .date {
    background: rgba(156, 39, 176, 0.1);
    color: #7b1fa2;
}

.document-meta .year {
    background: rgba(63, 81, 181, 0.1);
    color: #3f51b5;
}

.document-meta .pages {
    background: rgba(96, 125, 139, 0.1);
    color: #607d8b;
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #2E86AB, #1c5f7a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.download-btn:hover {
    background: linear-gradient(45deg, #1c5f7a, #2E86AB);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

/* Four Dimensions Page Styles */
.dimensions-overview {
    background: #f8f9fa;
    padding: 3rem 0;
}

.overview-intro h2 {
    color: #2E86AB;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.overview-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Dimensions Navigation */
.dimensions-navigation {
    margin-top: 2rem;
}

.dimensions-navigation h3 {
    color: #2E86AB;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.15);
    border-color: #2E86AB;
    text-decoration: none;
    color: inherit;
}

.nav-card:hover .nav-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(46, 134, 171, 0.4));
}

.nav-card:hover .nav-content h4 {
    color: #1c5f7a;
}

.nav-icon {
    flex-shrink: 0;
}

.nav-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(46, 134, 171, 0.3));
}

.nav-content h4 {
    color: #2E86AB;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.nav-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-card {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .nav-icon img {
        width: 40px;
        height: 40px;
    }
    
    .nav-content h4 {
        font-size: 1rem;
    }
    
    .nav-content p {
        font-size: 0.85rem;
    }
}

.dimension-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.dimension-section:nth-child(even) {
    background: #f8f9fa;
}

.dimension-content {
    max-width: 1000px;
    margin: 0 auto;
}

.dimension-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dimension-icon {
    flex-shrink: 0;
}

.dimension-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 10px rgba(46, 134, 171, 0.3));
}

.dimension-header h2 {
    color: #2E86AB;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.dimension-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0.5rem 0 0 0;
}

.dimension-body {
    line-height: 1.7;
}

.lead-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(46, 134, 171, 0.05);
    border-right: 4px solid #2E86AB;
    border-radius: 8px;
}

.dimension-body h3 {
    color: #2E86AB;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.dimension-body p {
    margin-bottom: 1.2rem;
    color: #555;
    text-align: justify;
}

.references {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid #e9ecef;
}

.references h4 {
    color: #2E86AB;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.references ul {
    list-style: none;
    padding: 0;
}

.references li {
    margin-bottom: 0.8rem;
    padding-right: 1.5rem;
    position: relative;
}

.references li:before {
    content: "📄";
    position: absolute;
    right: 0;
    top: 0;
}

.references a {
    color: #2E86AB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references a:hover {
    color: #1c5f7a;
    text-decoration: underline;
}

.conclusion-section {
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.conclusion-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.conclusion-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.call-to-action {
    margin-top: 3rem;
}

.call-to-action h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Dimensions */
@media (max-width: 768px) {
    .dimension-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .dimension-icon img {
        width: 60px;
        height: 60px;
    }
    
    .dimension-header h2 {
        font-size: 1.8rem;
    }
    
    .lead-paragraph {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
    }
}

/* Document Statistics */
.document-stats {
    background: linear-gradient(135deg, #2E86AB, #1c5f7a);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F18F01;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Form Styling */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E86AB;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.contact-info-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: #F18F01;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .dimensions-grid,
    .areas-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-container {
        grid-template-columns: 1fr;
    }
    
    .search-filter-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================ */
/* Future Educator & Lecturer Pages Specific Styles */
/* ================================================ */

/* Introduction Section */
.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.intro-content .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Dimension Navigation Cards */
.dimensions-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    margin: 3rem 0;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #2E86AB;
}

.nav-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.nav-card h3 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.nav-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Dimension Content Sections */
.dimension-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.dimension-section:last-of-type {
    border-bottom: none;
}

.dimension-content h2 {
    color: #2E86AB;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dimension-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Knowledge Components */
.knowledge-components {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-right: 4px solid #2E86AB;
}

.knowledge-item h3 {
    color: #2E86AB;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.knowledge-item p {
    line-height: 1.6;
    color: #555;
}

.knowledge-item ul {
    margin-top: 1rem;
    padding-right: 1.5rem;
}

.knowledge-item li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Attitudes Grid */
.attitudes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.attitude-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #28a745;
    transition: transform 0.3s ease;
}

.attitude-card:hover {
    transform: translateY(-3px);
}

.attitude-card h3 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.attitude-card p {
    line-height: 1.6;
    color: #555;
}

/* Skills Categories */
.skills-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #fd7e14;
}

.skill-category h3 {
    color: #fd7e14;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-right: 1.5rem;
}

.skill-category li:last-child {
    border-bottom: none;
}

.skill-category li:before {
    content: "✓";
    color: #fd7e14;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-right: 4px solid #6f42c1;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
}

.value-item h3 {
    color: #6f42c1;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item p {
    line-height: 1.6;
    color: #555;
}

/* Training Section */
.training-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.training-content h2 {
    text-align: center;
    color: #2E86AB;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.training-recommendations {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.recommendation-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-right: 5px solid #dc3545;
}

.recommendation-item h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.recommendation-item p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.recommendation-item ul {
    padding-right: 1.5rem;
    margin-top: 1rem;
}

.recommendation-item li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Academic Specific Styles */
.guidance-approaches,
.teaching-evolution,
.research-areas,
.institutional-changes {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item,
.evolution-stage,
.research-area,
.change-area {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-right: 4px solid #17a2b8;
}

.approach-item h3,
.evolution-stage h3,
.research-area h3,
.change-area h3 {
    color: #17a2b8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-item p,
.evolution-stage p,
.research-area p,
.change-area p {
    line-height: 1.6;
    color: #555;
}

/* Ethics Section */
.ethics-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.ethics-content h2 {
    text-align: center;
    color: #856404;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.ethics-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c5700;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
}

.ethics-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #ffc107;
}

.principle-item h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-item p {
    line-height: 1.6;
    color: #6c5700;
}

/* Summary Section */
.summary-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
}

.summary-content h2 {
    text-align: center;
    color: #0c5460;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.summary-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border-right: 5px solid #17a2b8;
}

.summary-box p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.call-to-action {
    background: #e7f3ff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-right: 4px solid #007bff;
}

.call-to-action p {
    margin: 0;
    color: #004085;
    font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .nav-cards {
        grid-template-columns: 1fr;
    }
    
    .attitudes-grid,
    .skills-categories,
    .values-grid,
    .ethics-principles {
        grid-template-columns: 1fr;
    }
    
    .dimension-content h2 {
        font-size: 1.8rem;
    }
    
    .summary-box {
        padding: 2rem;
    }
    
    .intro-content .lead {
        font-size: 1.1rem;
    }
}

/* ================================================ */
/* Blog Page Styles (Engineering x10) */
/* ================================================ */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.blog-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

.blog-date, .blog-category {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Video Section */
.video-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Blog Content */
.blog-content {
    padding: 3rem 0;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-section {
    margin-bottom: 3rem;
}

.blog-section .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #2E86AB;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #2E86AB;
    padding-bottom: 0.5rem;
}

.blog-section p {
    margin-bottom: 1.5rem;
}

.blog-section strong {
    color: #2E86AB;
    font-weight: 600;
}

/* Collaboration Grid */
.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.collaboration-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid;
}

.collaboration-item.engineer {
    border-top-color: #28a745;
}

.collaboration-item.ai {
    border-top-color: #fd7e14;
}

.collab-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.collaboration-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.collaboration-item ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.collaboration-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-right: 1.5rem;
}

.collaboration-item li:last-child {
    border-bottom: none;
}

.collaboration-item li:before {
    content: "▶";
    color: #2E86AB;
    position: absolute;
    right: 0;
    font-size: 0.8rem;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border-right: 5px solid #ffc107;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.warning-box p {
    color: #6c5700;
    margin: 0;
}

/* Process Steps */
.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-right: 4px solid #17a2b8;
}

.step-number {
    background: #17a2b8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #17a2b8;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #555;
}

/* Result Box */
.result-box {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border-right: 5px solid #17a2b8;
}

.result-box h4 {
    color: #0c5460;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-box p {
    color: #0c5460;
    margin: 0;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.app-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #6f42c1;
    transition: transform 0.3s ease;
}

.app-item:hover {
    transform: translateY(-3px);
}

.app-item h4 {
    color: #6f42c1;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.app-item p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

.emphasis {
    text-align: center;
    font-size: 1.2rem;
    color: #2E86AB;
    font-weight: 600;
    margin: 2rem 0;
}

/* Role Definition */
.role-definition {
    background: #e7f3ff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-right: 4px solid #007bff;
}

.role-definition h4 {
    color: #004085;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.role-tasks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.task {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    color: #28a745;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Future Insights */
.future-insights {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.insight-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-right: 4px solid #dc3545;
}

.insight-item h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.insight-item p {
    color: #555;
    margin: 0;
}

/* Conclusion */
.conclusion {
    margin-top: 4rem;
}

.conclusion-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.conclusion-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.big-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-red {
    background: rgba(220, 53, 69, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    color: #dc3545;
    font-weight: 600;
}

.highlight-green {
    background: rgba(40, 167, 69, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    color: #28a745;
    font-weight: 600;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-subtitle {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .collaboration-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .role-tasks {
        grid-template-columns: 1fr;
    }
    
    .video-wrapper {
        padding-bottom: 60%; /* Adjust for mobile */
    }
    
    .blog-post {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* ================================================ */
/* Training Program Page Styles */
/* ================================================ */

/* Program Overview Section */
.program-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2E86AB;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.overview-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.overview-card h3 {
    color: #2E86AB;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

/* Target Audiences Section */
.target-audiences {
    padding: 4rem 0;
}

.audience-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    color: #2E86AB;
    border: 2px solid #2E86AB;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #2E86AB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    color: #2E86AB;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.audience-details {
    display: grid;
    gap: 2rem;
}

.detail-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-right: 4px solid #F18F01;
}

.detail-section h4 {
    color: #F18F01;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.detail-section ul {
    padding-right: 1.5rem;
}

.detail-section li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Four Dimensions Framework */
.four-dimensions {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
}

.four-dimensions h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dimension-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dimension-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dimension-card .dimension-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.dimension-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dimension-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.dimension-list li {
    margin-bottom: 0.8rem;
    padding-right: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.dimension-list li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #F18F01;
    font-weight: bold;
}

/* Detailed Syllabus Section */
.detailed-syllabus {
    padding: 4rem 0;
}

.detailed-syllabus h2 {
    text-align: center;
    color: #2E86AB;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.syllabus-section {
    background: white;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-top: 5px solid #2E86AB;
}

.syllabus-section h3 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2E86AB;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.module-content {
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.module-topics,
.module-activities,
.module-assessment {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-right: 4px solid;
}

.module-topics {
    border-right-color: #28a745;
}

.module-activities {
    border-right-color: #fd7e14;
}

.module-assessment {
    border-right-color: #dc3545;
}

.module-topics h4 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.module-activities h4 {
    color: #fd7e14;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.module-assessment h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.module-topics ul,
.module-activities ul {
    padding-right: 1.5rem;
}

.module-topics li,
.module-activities li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.module-assessment p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Implementation Plan */
.implementation-plan {
    padding: 4rem 0;
    background: #f8f9fa;
}

.implementation-plan h2 {
    text-align: center;
    color: #2E86AB;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2E86AB;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 2;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #2E86AB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-right: 4px solid #F18F01;
}

.timeline-content h3 {
    color: #2E86AB;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content ul {
    padding-right: 1.5rem;
    margin: 0;
}

.timeline-content li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
}

/* Resources and Support */
.resources-support {
    padding: 4rem 0;
}

.resources-support h2 {
    text-align: center;
    color: #2E86AB;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.resource-card:nth-child(1) {
    border-top-color: #2E86AB;
}

.resource-card:nth-child(2) {
    border-top-color: #28a745;
}

.resource-card:nth-child(3) {
    border-top-color: #fd7e14;
}

.resource-card:nth-child(4) {
    border-top-color: #dc3545;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.resource-card .resource-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    color: #2E86AB;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.resource-card li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.5;
    padding-right: 1.5rem;
    position: relative;
}

.resource-card li:before {
    content: "→";
    position: absolute;
    right: 0;
    color: #2E86AB;
    font-weight: bold;
}

/* Success Metrics */
.success-metrics {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.success-metrics h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.metrics-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.metric-category {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid;
}

.metric-category:nth-child(1) {
    border-top-color: #2E86AB;
}

.metric-category:nth-child(2) {
    border-top-color: #28a745;
}

.metric-category:nth-child(3) {
    border-top-color: #F18F01;
}

.metric-category h3 {
    color: #0d47a1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.metrics-list {
    list-style: none;
    padding: 0;
}

.metrics-list li {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.metrics-list strong {
    color: #0d47a1;
    font-weight: 600;
    min-width: 80px;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    color: #ccc;
}

/* Three Levels Design - New Homepage Styles */

/* Levels Overview Section */
.levels-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.levels-overview .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.levels-overview .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.level-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid;
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.user-level {
    border-color: #28a745;
}

.practical-level {
    border-color: #ffc107;
}

.depth-level {
    border-color: #dc3545;
}

.level-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.level-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.level-subtitle {
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.level-content {
    text-align: right;
}

.level-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.level-content h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.level-features {
    list-style: none;
    margin: 1rem 0;
}

.level-features li {
    margin-bottom: 0.75rem;
    padding-right: 1rem;
    position: relative;
    line-height: 1.5;
}

.level-features li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.level-features strong {
    color: #2c3e50;
}

.level-button {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.level-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Framework Benefits Section */
.framework-benefits {
    padding: 4rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Discussion Platform Section */
.discussion-platform {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaf6 100%);
}

.discussion-platform h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.platform-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-link:hover {
    background: #007bff;
    color: white;
}

/* Main CTA Section */
.main-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2E86AB 0%, #1c5f7a 100%);
    color: white;
    text-align: center;
}

.main-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.main-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #F18F01;
    color: white;
    border-color: #F18F01;
}

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2E86AB;
}

/* Updated Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F18F01;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F18F01;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .levels-overview .section-title {
        font-size: 2rem;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .level-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Training Program Responsive Design */
@media (max-width: 768px) {
    .overview-grid,
    .dimensions-grid,
    .resources-grid,
    .metrics-categories {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .audience-details {
        grid-template-columns: 1fr;
    }
    
    .module-content {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        right: 25px;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #2E86AB;
    border-right-color: #2E86AB;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        border-radius: 4px;
    }
    
    .dropdown-link {
        color: white;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #F18F01;
    }
}

/* Policy Document Banner */
.policy-banner {
    background: linear-gradient(135deg, #F18F01 0%, #ffa726 100%);
    color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
    min-width: 250px;
}

.banner-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.banner-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.banner-action {
    flex-shrink: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: white;
    color: #F18F01;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Banner */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .banner-text {
        min-width: auto;
    }
    
    .banner-text h3 {
        font-size: 1.2rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
}

/* QR Code Styles */
.signup-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.button-option {
    flex: 1;
    min-width: 250px;
}

.qr-option {
    flex: 0 0 auto;
}

.qr-code {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.qr-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Responsive QR Code */
@media (max-width: 768px) {
    .signup-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .button-option {
        min-width: auto;
    }
    
    .qr-code img {
        width: 120px;
        height: 120px;
    }
}