/* STRATEVITA for SAIT Presentation Styles */

:root {
    --primary-purple: #6a1b9a;
    --primary-blue: #1976d2;
    --gradient-start: #6a1b9a;
    --gradient-end: #0d4e8f;
    --dark-bg: #1a1a2e;
    --light-bg: #f5f7fa;
    --text-dark: #333;
    --text-light: #f5f7fa;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Presentation Header */
.presentation-header {
    padding: 15px 0;
    background-color: rgba(26, 26, 46, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.presentation-header img {
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.85)), url('../images/SAIT_Heart_Building_2.jpg');
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
    color: white;
    position: relative;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-img {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-graphic {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(106, 27, 154, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(106, 27, 154, 0.4);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(106, 27, 154, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(106, 27, 154, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.challenge-graphic, .gap-graphic, .solution-graphic {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.challenge-graphic:hover, .gap-graphic:hover, .solution-graphic:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Challenge Section */
.challenge-perspective {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.challenge-perspective:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.perspective-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.challenge-item {
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-purple);
    padding-left: 15px;
}

.challenge-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-purple);
}

.challenge-content p {
    color: #666;
    margin-bottom: 0;
}

/* Make all sections full viewport height */
.section-padding {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Current System Section */
.current-system-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.current-system-content p {
    color: #666;
    margin-bottom: 15px;
}

/* Solution Section */
.solution-vision h3 {
    font-weight: 700;
    color: var(--primary-purple);
}

.solution-vision p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.solution-feature {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.solution-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.solution-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
    font-weight: 700;
}

.solution-feature p {
    color: #666;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 28px;
}

.solution-impact h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.solution-impact p {
    font-size: 1.2rem;
    color: #444;
}

/* Implementation Section */
.implementation-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.implementation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.implementation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.implementation-icon i {
    color: white;
    font-size: 24px;
}

.implementation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.implementation-card p {
    color: #666;
    margin-bottom: 20px;
}

.implementation-card ul {
    padding-left: 20px;
    color: #666;
}

.implementation-card ul li {
    margin-bottom: 10px;
}

.implementation-timeline {
    margin-top: 50px;
}

.implementation-timeline h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.timeline {
    position: relative;
    padding: 30px 0;
    margin-top: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px; /* Increased spacing between timeline items */
    display: flex;
    justify-content: center;
    opacity: 1 !important; /* Ensure timeline items are always visible */
}

.timeline-item:last-child {
    margin-bottom: 0; /* Remove margin from last item */
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 25px; /* Adjusted to align with content */
    z-index: 2; /* Ensure dot appears above the line */
    box-shadow: 0 0 0 4px rgba(106, 27, 154, 0.2); /* Add glow effect */
}

.timeline-content {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    opacity: 1 !important; /* Ensure timeline content is always visible */
    transform: translateY(0) !important; /* Prevent transform from hiding content */
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}

/* Case Study Section */
.case-study-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.case-study-content p {
    color: #666;
    margin-bottom: 20px;
}

.case-study-content ul {
    padding-left: 20px;
    color: #666;
    margin-bottom: 30px;
}

.case-study-content ul li {
    margin-bottom: 10px;
}

.case-study-results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.result-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(50% - 10px);
    transition: all 0.3s ease;
}

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

.result-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.result-icon i {
    color: white;
    font-size: 20px;
}

.result-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.result-card p {
    color: #666;
    margin-bottom: 0;
}

.result-quote {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1 1 100%;
    margin-top: 10px;
}

.result-quote p {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    padding-left: 25px;
}

.result-quote p::before {
    content: '"';
    font-size: 50px;
    color: var(--primary-purple);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.3;
}

/* Benefits Section */
.benefit-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.benefit-card ul {
    padding-left: 20px;
    color: #666;
}

.benefit-card ul li {
    margin-bottom: 10px;
}

/* Career to Learning Adaptation Section */
.adaptation-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.adaptation-content p {
    color: #666;
    margin-bottom: 20px;
}

.adaptation-content ul {
    padding-left: 20px;
    color: #666;
    margin-bottom: 30px;
}

.adaptation-content ul li {
    margin-bottom: 15px;
}

.adaptation-content ul li strong {
    color: var(--primary-purple);
}

.adaptation-benefits h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

/* Learning Pathway Diagram */
.pathway-diagram {
    margin-bottom: 40px;
}

.pathway-diagram h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    text-align: center;
}

#learning-pathway-diagram {
    position: relative;
    margin: 30px 0;
    overflow: visible;
}

.diagram-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pathway-node {
    width: 160px;
    height: 80px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    position: absolute;
    transition: all 0.3s ease;
    z-index: 2;
}

.pathway-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pathway-node.rubric {
    background: #6a1b9a;
    color: white;
}

.pathway-node.assessment {
    background: #7b1fa2;
    color: white;
}

.pathway-node.competency {
    background: #8e24aa;
    color: white;
}

.pathway-node.pathways {
    background: #9c27b0;
    color: white;
}

.pathway-node h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.pathway-arrow {
    position: absolute;
    height: 2px;
    background: var(--primary-purple);
    z-index: 1;
}

.pathway-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid var(--primary-purple);
}

.pathway-options {
    position: absolute;
    width: 220px;
}

.pathway-option-item {
    background: white;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: #555;
    transition: all 0.3s ease;
}

.pathway-option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for the diagram */
@media (max-width: 991px) {
    .diagram-wrapper {
        transform: scale(0.9);
        transform-origin: center top;
    }
}

@media (max-width: 767px) {
    .diagram-wrapper {
        transform: scale(0.7);
        transform-origin: center top;
    }
}

/* Student Module Table */
.student-module-table {
    margin-top: 40px;
}

.student-module-table h3 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.role-title-header {
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.role-title-header h4 {
    margin-bottom: 0;
    font-weight: 600;
}

.student-module-table .table {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    margin-bottom: 0;
}

.student-module-table .table th {
    background: var(--primary-purple);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.student-module-table .table td {
    padding: 15px;
    vertical-align: middle;
}

.view-report, .view-transcript {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-report:hover, .view-transcript:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.learning-pathway-btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.learning-pathway-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.adaptation-benefit-item {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.adaptation-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.adaptation-benefit-item .benefit-icon {
    margin-bottom: 15px;
}

.adaptation-benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.adaptation-benefit-item p {
    color: #666;
    margin-bottom: 0;
}

/* Technical Features Section */
.tech-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-icon i {
    color: white;
    font-size: 24px;
}

.tech-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.tech-card p {
    color: #666;
    margin-bottom: 0;
}

/* Call to Action Section */
#cta, #final-cta {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.9), rgba(25, 118, 210, 0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

#cta h2, #final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#cta p, #final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#final-cta .contact-info {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}

.contact-item p {
    margin-bottom: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-purple);
}

.contact-form textarea.form-control {
    height: 150px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h4:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: white;
}

/* Responsive Styles */
@media (min-width: 992px) {
    /* Timeline styles for larger screens - keep left-aligned */
    .timeline:before {
        left: 30px;
        transform: none;
    }
    
    .timeline-dot {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: 85%;
        margin-left: 60px;
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    #hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-img {
        margin-top: 50px;
    }
    
    /* Timeline styles for smaller screens */
    .timeline:before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        width: 85%;
        margin-left: 60px;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    #hero {
        text-align: center;
    }
    
    #hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .challenge-item, .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .challenge-icon, .feature-icon {
        margin: 0 auto 15px;
    }
    
    .implementation-card, .benefit-card, .tech-card {
        margin-bottom: 30px;
    }
    
    .result-card {
        flex: 1 1 100%;
    }
}
