@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #001F3F;
    --secondary-color: #3c65e8;
    --accent-color: #ff6b6b;
    --hero-bg-color: #001F3F;
    --hero-text-color: #f0f0f0;
    --light-bg: #f6f9fc;
    --dark-bg: #1a1a2e;
    --dark-text: #333;
    --light-text: #ffffff;
    --navbar-height: 70px;
    --font-primary: 'Albert Sans', sans-serif;
    --font-headings: 'Albert Sans', sans-serif;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --pinkish-glow: #ff69b4;
    --pinkish-glow-rgb: 255,105,180;

    --fab-whatsapp-bg: #075E54;
    --fab-whatsapp-text: #ffffff;
    --fab-info-bg: var(--primary-color);
    --fab-info-text: #ffffff;
    --fab-call-bg: #D32F2F;
    --fab-call-text: #ffffff;

    --primary-color-rgb: 0, 31, 63;
    --secondary-color-rgb: 60, 101, 232;
    --accent-color-rgb: 255, 107, 107;
    --light-text-rgb: 255,255,255;
    --shadow-color-light: rgba(0, 31, 63, 0.05);
    --shadow-color-medium: rgba(0, 31, 63, 0.1);
    --shadow-color-dark: rgba(0, 31, 63, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --border-light: rgba(255, 255, 255, 0.2);
    --border-dark: rgba(0, 31, 63, 0.1);
    --box-shadow-light: 0 5px 15px var(--shadow-color-light);
    --box-shadow-dark: 0 8px 25px var(--shadow-color-medium);

    --navbar-link-color: #e0e0e0;
    --navbar-link-hover-color: var(--light-text);
    --navbar-link-active-color: var(--accent-color);

    /* AI & Project Page Specific Variables */
    --ai-glow-color: #00BFFF;
    --ai-glow-color-rgb: 0, 191, 255;
    --ai-accent-color: #8A2BE2; 
    --ai-accent-color-rgb: 138, 43, 226;
    --ai-bg-dark: #02040a;
    --ai-bg-light: #0d1117;
    --ai-border-color: rgba(var(--ai-glow-color-rgb), 0.3);
    --ai-text-primary: #c9d1d9;
    --ai-text-secondary: #8b949e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
    font-size: 16px;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { font-family: var(--font-headings); color: var(--primary-color); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.2; margin-bottom: 1rem;}
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem;}
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 0.8rem;}
h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); margin-bottom: 0.5rem;}
p { margin-bottom: 1rem; font-weight: 300; }
a { text-decoration: none; color: var(--secondary-color); transition: color 0.3s ease; }
a:hover { color: var(--accent-color); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.section-padding, .section-padding2 { padding: 70px 0; }
.light-bg { background-color: var(--light-bg); }
.dark-bg { background-color: var(--dark-bg); }
.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}
.section-title.light-text { color: var(--light-text); }
.section-title.light-text::after { background-color: var(--ai-glow-color); }
.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}
.light-text.subtitle { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.btn { display: inline-block; padding: 12px 28px; border-radius: 30px; font-weight: 600; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.8px; border: 2px solid transparent; cursor: pointer; }

/* Navbar Styles (unchanged) */
.navbar { background-color: var(--hero-bg-color); height: var(--navbar-height); display: flex; align-items: center; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.15); transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%;}
.nav-logo { font-family: var(--font-headings); font-size: 1.8rem; font-weight: 700; color: var(--light-text); }
/* ... other base styles ... */


/* --- PROJECT PAGE STYLES --- */
.project-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--ai-bg-dark);
    padding-top: var(--navbar-height);
}
.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(var(--ai-glow-color-rgb), 0.2) 0%, transparent 35%),
        radial-gradient(circle at 75% 70%, rgba(var(--ai-accent-color-rgb), 0.15) 0%, transparent 35%);
    background-size: 100% 100%;
    animation: floatingGlow 15s ease-in-out infinite alternate;
    z-index: 1;
}
@keyframes floatingGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.project-hero-content {
    position: relative;
    z-index: 2;
    background: rgba(var(--ai-bg-light), 0.5);
    border: 1px solid var(--ai-border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInGrow 1.2s ease-out;
}
.project-hero-caption {
    display: block;
    color: var(--ai-glow-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.project-hero-content h1 {
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(var(--ai-glow-color-rgb), 0.3);
}
.project-hero-description {
    color: var(--ai-text-primary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.project-main-content {
    background-color: var(--light-bg);
}
.spotlight-section { background-color: #fff; }
.spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.spotlight-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.spotlight-text-content p { color: #444; line-height: 1.7; }
.spotlight-visual-content img {
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.spotlight-visual-content img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.2);
}

.features-section {
    background: var(--ai-bg-dark);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.feature-card {
    background: rgba(var(--ai-bg-light), 0.7);
    border: 1px solid var(--ai-border-color);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--ai-glow-color);
    box-shadow: 0 0 25px rgba(var(--ai-glow-color-rgb), 0.2);
}
.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--ai-accent-color), var(--ai-glow-color));
    color: var(--light-text);
    font-size: 2rem;
    transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(10deg); }
.feature-card h3 { color: var(--ai-text-primary); margin-bottom: 0.75rem; }
.feature-card p { color: var(--ai-text-secondary); font-size: 0.9rem; margin-bottom: 0; }

.process-section { background-color: var(--light-bg); }
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0 auto;
}
.process-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--ai-glow-color), var(--ai-accent-color));
    box-shadow: 0 0 10px rgba(var(--ai-glow-color-rgb), 0.5);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}
.process-step {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.process-step::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--ai-glow-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    transition: background-color 0.3s ease;
}
.process-step:hover::after { background-color: var(--ai-glow-color); }
.process-step:nth-child(odd) { left: 0; text-align: right; }
.process-step:nth-child(even) { left: 50%; text-align: left; }
.process-step:nth-child(even)::after { left: -10px; }
.process-step-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    border: 1px solid #eee;
}
.process-step-content h4 { color: var(--primary-color); }
.process-step-content p { font-size: 0.95rem; color: #555; margin-bottom: 0; }

.community-section {
    background: linear-gradient(160deg, var(--ai-bg-dark), var(--ai-bg-light));
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.community-card {
    background: linear-gradient(145deg, rgba(var(--ai-bg-light), 0.5), rgba(var(--ai-bg-light), 0.2));
    border: 1px solid var(--ai-border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.community-icon {
    font-size: 2.5rem;
    color: var(--ai-glow-color);
    margin-bottom: 1rem;
}
.community-card h4 { color: var(--light-text); margin-bottom: 0.75rem; }
.community-card p { color: var(--ai-text-secondary); flex-grow: 1; margin-bottom: 1.5rem; }
.btn-community {
    border-color: var(--ai-glow-color);
    color: var(--ai-glow-color);
    background: transparent;
}
.btn-community:hover {
    background-color: var(--ai-glow-color);
    color: var(--ai-bg-dark);
    box-shadow: 0 0 15px rgba(var(--ai-glow-color-rgb), 0.5);
}

/* --- AI PAGE SPECIFIC STYLES --- */
.ai-course-page-layout { background-color: var(--ai-bg-dark); background-image: radial-gradient(circle at 10% 20%, rgba(var(--ai-glow-color-rgb), 0.15) 0%, transparent 40%), radial-gradient(circle at 85% 70%, rgba(var(--ai-accent-color-rgb), 0.1) 0%, transparent 40%); color: var(--ai-text-primary); }
.ai-course-page-layout > .container.ai-layout-grid { max-width: 100%; padding-left: 3vw; padding-right: 3vw; }
.ai-hero-section { background: linear-gradient(145deg, var(--ai-bg-dark) 0%, #050d21 100%); color: var(--hero-text-color); padding-top: calc(var(--navbar-height) + 60px); padding-bottom: 60px; position: relative; overflow: hidden; }
.ai-hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%230e2442' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-9h-4v-1h4v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h9v-4h1v4h4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; z-index: 0; }
.ai-hero-section .course-hero-content-wrapper { position: relative; z-index: 2; display: flex; align-items: center; gap: 3rem; }
.ai-hero-section .course-hero-text { flex: 1 1 55%; animation: slideInUpText 1s ease-out 0.2s backwards; }
.ai-hero-section .course-hero-caption { color: var(--ai-glow-color); font-weight: 700; }
.ai-hero-section h1 { color: var(--light-text); text-shadow: 0 0 15px rgba(var(--ai-glow-color-rgb), 0.3); }
.ai-hero-section .course-hero-description { color: var(--ai-text-primary); max-width: 600px; }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent); transition: left 0.6s ease-in-out; }
.btn-shine:hover::before { left: 100%; }
.ai-hero-section .btn-hero-primary { background-color: var(--ai-glow-color); color: var(--ai-bg-dark); border-color: var(--ai-glow-color); }
.ai-hero-section .btn-hero-primary:hover { background-color: transparent; color: var(--ai-glow-color); box-shadow: 0 0 20px rgba(var(--ai-glow-color-rgb), 0.5); }
.ai-hero-section .btn-hero-secondary { border-color: var(--ai-border-color); color: var(--ai-text-primary); }
.ai-hero-section .btn-hero-secondary:hover { background-color: var(--ai-border-color); color: var(--light-text); }
.ai-hero-image { flex: 1 1 45%; position: relative; animation: fadeInGrow 1.2s ease-out; }
.ai-hero-image img { border-radius: var(--border-radius-md); border: 1px solid var(--ai-border-color); box-shadow: 0 10px 30px rgba(0,0,0, 0.2), 0 0 25px rgba(var(--ai-glow-color-rgb), 0.25); position: relative; z-index: 1; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.ai-hero-image:hover img { transform: scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0, 0.25), 0 0 35px rgba(var(--ai-glow-color-rgb), 0.35); }
@keyframes slideInUpText { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInGrow { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.ai-layout-grid { display: grid; grid-template-columns: minmax(0, 2.5fr) 1fr; gap: 3rem; align-items: flex-start; }
.ai-main-content { display: flex; flex-direction: column; gap: 2.5rem; }
.ai-content-section { background: rgba(var(--primary-color-rgb), 0.15); border: 1px solid var(--ai-border-color); border-radius: var(--border-radius-md); padding: 30px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.ai-section-heading { color: var(--light-text); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 2rem; position: relative; padding-left: 20px; }
.ai-section-heading::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 100%; background: linear-gradient(180deg, var(--ai-glow-color), var(--ai-accent-color)); border-radius: 5px; }
.benefits-ai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.benefits-ai-item { background-color: rgba(var(--ai-bg-light), 0.5); padding: 25px; border-radius: var(--border-radius-md); border: 1px solid transparent; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.benefits-ai-item:hover { transform: translateY(-8px); border-color: var(--ai-glow-color); box-shadow: 0 0 20px rgba(var(--ai-glow-color-rgb), 0.2); }
.benefit-icon-wrap { width: 60px; height: 60px; margin: 0 auto 1rem auto; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--ai-accent-color), var(--ai-glow-color)); box-shadow: 0 4px 10px rgba(var(--ai-accent-color-rgb), 0.3); color: var(--light-text); font-size: 1.8rem; transition: transform 0.3s ease; }
.benefits-ai-item:hover .benefit-icon-wrap { transform: scale(1.1) rotate(5deg); }
.benefits-ai-item h3 { color: var(--ai-text-primary); font-size: 1.2rem; }
.benefits-ai-item p { color: var(--ai-text-secondary); font-size: 0.9rem; margin-bottom: 0; }
.topics-ai-accordion .accordion-item { border-bottom: 1px solid var(--ai-border-color); }
.topics-ai-accordion .accordion-item:last-child { border-bottom: none; }
.topics-ai-accordion .accordion-question { width: 100%; background: transparent; border: none; padding: 20px 10px; text-align: left; color: var(--ai-text-primary); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.topics-ai-accordion .accordion-question:hover { color: var(--ai-glow-color); }
.topics-ai-accordion .accordion-question i { transition: transform 0.3s ease; }
.topics-ai-accordion .accordion-item.active .accordion-question i { transform: rotate(180deg); }
.topics-ai-accordion .accordion-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out; color: var(--ai-text-secondary); }
.topics-ai-accordion .accordion-answer ul { padding: 0 10px 20px 30px; list-style-type: disc; margin-bottom: 0; }
.topics-ai-accordion .accordion-answer li { margin-bottom: 0.5rem; }
#ai-faq .faq-item { background: rgba(var(--ai-bg-light), 0.5); border: 1px solid var(--ai-border-color); border-radius: var(--border-radius-sm); margin-bottom: 1rem; overflow: hidden; }
#ai-faq .faq-question { width: 100%; background: transparent; border: none; padding: 15px 20px; text-align: left; color: var(--ai-text-primary); font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
#ai-faq .faq-question i { font-size: 1rem; color: var(--ai-glow-color); transition: transform 0.3s ease; }
#ai-faq .faq-item.active .faq-question i { transform: rotate(45deg); }
#ai-faq .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
#ai-faq .faq-answer p { padding: 0 20px 15px 20px; margin: 0; color: var(--ai-text-secondary); font-size: 0.95rem; }
.ai-sidebar { position: sticky; top: calc(var(--navbar-height) + 20px); align-self: start; display: flex; flex-direction: column; gap: 2rem; }
.ai-sidebar .sidebar-widget { background: linear-gradient(160deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--ai-accent-color-rgb), 0.05)); border: 1px solid var(--ai-border-color); border-radius: var(--border-radius-md); padding: 25px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.ai-sidebar .sidebar-widget h3 { color: var(--light-text); font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--ai-border-color); padding-bottom: 0.75rem; }
.ai-sidebar .sidebar-widget h3 i { color: var(--ai-glow-color); }
.ai-details-widget ul { list-style: none; padding: 0; }
.ai-details-widget li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; font-size: 0.95rem; color: var(--ai-text-secondary); }
.ai-details-widget li i { color: var(--ai-glow-color); margin-top: 4px; font-size: 1.1em; width: 20px; text-align: center; }
.ai-details-widget li strong { color: var(--ai-text-primary); font-weight: 600; }
.btn-glow { background: var(--ai-glow-color); color: var(--ai-bg-dark); border-color: var(--ai-glow-color); box-shadow: 0 0 15px rgba(var(--ai-glow-color-rgb), 0.4); }
.btn-glow:hover { background: transparent; color: var(--ai-glow-color); box-shadow: 0 0 25px rgba(var(--ai-glow-color-rgb), 0.6); }
.btn-glow-light { background: transparent; color: var(--ai-text-primary); border-color: var(--ai-border-color); }
.btn-glow-light:hover { color: var(--light-text); border-color: var(--ai-glow-color); background: rgba(var(--ai-glow-color-rgb), 0.15); }
.ai-details-widget .btn-block { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.ai-tags-widget .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.ai-tags-widget .tag-cloud a { background-color: rgba(var(--ai-glow-color-rgb), 0.1); color: var(--ai-glow-color); padding: 6px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; border: 1px solid transparent; transition: all 0.3s ease; }
.ai-tags-widget .tag-cloud a:hover { background-color: var(--ai-glow-color); color: var(--ai-bg-dark); border-color: var(--ai-glow-color); transform: translateY(-2px); }
.ai-similar-programs .similar-program-card { background: rgba(var(--ai-bg-light), 0.4); border-radius: var(--border-radius-sm); overflow: hidden; margin-bottom: 1.5rem; border: 1px solid var(--ai-border-color); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.ai-similar-programs .similar-program-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.ai-similar-programs .similar-program-card:last-child { margin-bottom: 0; }
.ai-similar-programs .similar-program-card img { height: 120px; object-fit: cover; opacity: 0.8; transition: opacity 0.3s ease; }
.ai-similar-programs .similar-program-card:hover img { opacity: 1; }
.ai-similar-programs .similar-program-card h4 { color: var(--ai-text-primary); padding: 15px 15px 5px 15px; margin-bottom: 0; font-size: 1rem; }
.ai-similar-programs .btn-learn-more-sidebar { color: var(--ai-glow-color); padding: 0 15px 15px 15px; display: inline-block; font-size: 0.85rem; }
.ai-similar-programs .btn-learn-more-sidebar i { margin-left: 5px; transition: transform 0.2s ease; }
.ai-similar-programs .btn-learn-more-sidebar:hover i { transform: translateX(4px); }


/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .spotlight-grid, .community-grid { grid-template-columns: 1fr; }
    .spotlight-text-content { text-align: center; }
    .process-timeline::after { left: 30px; }
    .process-step { width: 100%; padding-left: 70px; padding-right: 15px; text-align: left !important; }
    .process-step:nth-child(even) { left: 0; }
    .process-step::after { left: 20px; }
    .ai-hero-section .course-hero-content-wrapper, .course-hero-content-wrapper { flex-direction: column-reverse; text-align: center; }
    .ai-hero-section .course-hero-text, .course-hero-text { flex-basis: 100%; }
    .ai-hero-image, .course-hero-image-container { margin-bottom: 2rem; max-width: 450px; }
    .ai-layout-grid, .course-layout-container { grid-template-columns: 1fr; }
    .ai-sidebar, .course-sidebar { position: static; max-height: none; margin-top: 1.5rem; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .section-padding, .section-padding2 { padding: 50px 0; }
    .container { padding-left: 15px; padding-right: 15px; }
    .ai-course-page-layout > .container.ai-layout-grid { padding-left: 15px; padding-right: 15px; }
    .nav-menu { position: fixed; left: -100%; top: var(--navbar-height); flex-direction: column; background-color: var(--primary-color); width: 100%; height: calc(100vh - var(--navbar-height)); text-align: center; transition: 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding-top: 20px; overflow-y: auto; }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 20px 0; }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .btn-hero-primary, .btn-hero-secondary { display: block; width: 80%; max-width: 300px; margin: 15px auto; }
    .ai-content-section { padding: 20px; }
    .ai-section-heading { padding-left: 15px; }
    .ai-hero-section .btn-hero-primary, .ai-hero-section .btn-hero-secondary { display: block; margin-left: auto; margin-right: auto; max-width: 300px; }
    .process-timeline::after { left: 15px; }
    .process-step { padding-left: 50px; }
    .process-step::after { left: 5px; }
    .community-grid { grid-template-columns: 1fr; }
}