/* Multi-Cloud Portfolio - Main Styles */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --aws-color: #FF9900;
    --azure-color: #0078D4;
    --gcp-color: #4285F4;
    --oci-color: #F80000;
    --bg-dark: #0f172a;
    --bg-primary: #0f172a;
    --bg-card: #1e293b;
    --bg-hover: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --border-radius: 1rem;
    --transition-base: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
    transition: all var(--transition-base);
}

.logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.nav-links a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
}

.nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: 50%;
    right: 10%;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: 20%;
    left: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
}

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

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

/* Cloud Selector */
.cloud-selector {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cloud-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* Responsive: Keep 5 columns on tablets, stack on mobile */
@media (max-width: 1024px) {
    .cloud-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cloud-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
    
    .cloud-card {
        padding: 1.5rem 1rem;
    }
    
    .cloud-icon {
        font-size: 2.5rem;
    }
    
    .cloud-name {
        font-size: 1rem;
    }
    
    .cloud-count {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cloud-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }
    
    .cloud-card {
        padding: 1rem 0.5rem;
    }
    
    .cloud-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .cloud-name {
        font-size: 0.75rem;
    }
    
    .cloud-count {
        font-size: 1.2rem;
    }
    
    .cloud-description {
        font-size: 0.7rem;
        display: none; /* Hide on very small screens */
    }
    
    .cloud-features {
        display: none; /* Hide features on very small screens */
    }
}

.cloud-card {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.cloud-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.cloud-card.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
}

.cloud-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cloud-card[data-cloud="all"] .cloud-icon { color: var(--primary-color); }
.cloud-card[data-cloud="aws"] .cloud-icon { color: var(--aws-color); }
.cloud-card[data-cloud="azure"] .cloud-icon { color: var(--azure-color); }
.cloud-card[data-cloud="gcp"] .cloud-icon { color: var(--gcp-color); }
.cloud-card[data-cloud="oci"] .cloud-icon { color: var(--oci-color); }

.cloud-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cloud-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.cloud-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cloud-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-badge {
    padding: 0.4rem 0.9rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Search & Filter */
.search-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
}

.search-box:focus-within {
    border-color: var(--primary-color);
}

.search-box i {
    color: var(--text-muted);
    margin-right: 1rem;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1rem;
}

.filter-container {
    margin-bottom: 3rem;
}

.filter-label {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.project-header {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-id {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tag {
    padding: 0.35rem 0.85rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.35rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.cloud-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.cloud-badge.aws { 
    background: rgba(255, 153, 0, 0.15); 
    color: var(--aws-color); 
    border-color: rgba(255, 153, 0, 0.3);
}

.cloud-badge.azure { 
    background: rgba(0, 120, 212, 0.15); 
    color: var(--azure-color); 
    border-color: rgba(0, 120, 212, 0.3);
}

.cloud-badge.gcp { 
    background: rgba(66, 133, 244, 0.15); 
    color: var(--gcp-color); 
    border-color: rgba(66, 133, 244, 0.3);
}

.cloud-badge.oci { 
    background: rgba(248, 0, 0, 0.15); 
    color: var(--oci-color); 
    border-color: rgba(248, 0, 0, 0.3);
}

/* Loading */
.loading {
    text-align: center;
    padding: 4rem;
    grid-column: 1 / -1;
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Certifications */
.certifications-section {
    background: var(--bg-card);
}

.cert-timeline {
    max-width: 1200px;
    margin: 0 auto;
}

.cert-group {
    margin-bottom: 3rem;
}

.cert-group-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cert-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.cert-item {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.25rem;
}

.cert-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 15px;
}

.cert-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cert-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 999;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .cloud-grid {
        grid-template-columns: 1fr;
    }
}

/* Animated Scroll Wheel */
.mouse-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
    animation: mouse-bounce 2s infinite;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s infinite;
}

@keyframes mouse-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes wheel-scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Responsive adjustments for scroll wheel */
@media (max-width: 768px) {
    .mouse {
        width: 22px;
        height: 35px;
    }
    
    .wheel {
        width: 3px;
        height: 6px;
    }
}


/* ========================================
   STATUS BADGES & PROGRESS TRACKING
   ======================================== */

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease-in;
}

.status-badge.complete {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.status-badge.in-progress {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.status-badge.coming-soon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.status-badge i {
    font-size: 16px;
}

/* Progress Section */
.progress-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    max-width: 1200px;
    text-align: center;
}

.progress-section h2 {
    color: #f1f5f9;
    margin-bottom: 20px;
    font-size: 24px;
}

.overall-progress {
    text-align: center;
    margin-bottom: 30px;
}

.progress-circle {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 10px;
}

.progress-label {
    color: #cbd5e1;
    font-size: 16px;
}

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

.platform-item {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 20px;
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    color: #f1f5f9;
}

.platform-count {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.platform-count.complete {
    background: #10b981;
    color: #ffffff;
}

.platform-count.in-progress {
    background: #f59e0b;
    color: #ffffff;
}

.platform-count.not-started {
    background: #6b7280;
    color: #ffffff;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-bar.aws {
    background: linear-gradient(90deg, #FF9900 0%, #FF6600 100%);
}

.progress-bar.azure {
    background: linear-gradient(90deg, #0078D4 0%, #005A9E 100%);
}

.progress-bar.gcp {
    background: linear-gradient(90deg, #4285F4 0%, #1967D2 100%);
}

.progress-bar.oracle {
    background: linear-gradient(90deg, #F80000 0%, #C00000 100%);
}

/* Follow Journey Section */
.follow-journey {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.follow-journey h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.follow-journey p {
    color: #e0e7ff;
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.social-link i {
    font-size: 20px;
}

/* Last Updated */
.last-updated {
    display: inline-block;
    color: #94a3b8;
    font-size: 14px;
    margin-left: 15px;
}

/* Project Meta Info */
.project-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    background: #1e293b;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-meta-label {
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-meta-value {
    color: #f1f5f9;
    font-size: 16px;
    font-weight: 600;
}

/* Coming Soon Placeholder */
.coming-soon-placeholder {
    background: #1e293b;
    border: 2px dashed #334155;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
}

.coming-soon-placeholder i {
    font-size: 48px;
    color: #6b7280;
    margin-bottom: 15px;
}

.coming-soon-placeholder h3 {
    color: #cbd5e1;
    font-size: 20px;
    margin-bottom: 10px;
}

.coming-soon-placeholder p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer Link Styles (Enhanced) */
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6366f1;
    text-decoration: underline;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .progress-section {
        padding: 20px;
    }
    
    .platform-progress {
        grid-template-columns: 1fr;
    }
    
    .follow-journey {
        padding: 30px 20px;
    }
    
    .follow-journey h2 {
        font-size: 24px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .status-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* =============================================== */
/* Foundation Section Styles */
/* =============================================== */

.foundation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
}

.foundation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Architecture Diagram at Top */
.foundation-diagram-top {
    margin: 3rem auto;
    max-width: 70%;
    position: relative;
    z-index: 1;
}

.diagram-container-large {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-base);
}

.diagram-container-large:hover {
    transform: translateY(-5px);
}

.diagram-image-large {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.diagram-image-large:hover {
    transform: scale(1.02);
}

/* Text Content Below Diagram */
.foundation-content-stacked {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
    text-align: left;
}

.foundation-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.foundation-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.foundation-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.foundation-buttons .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.foundation-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.foundation-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.foundation-buttons .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.foundation-buttons .btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.foundation-features {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list i {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.features-list strong {
    color: var(--text-primary);
}

.foundation-diagram {
    position: relative;
}

.diagram-container {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-base);
}

.diagram-container:hover {
    transform: translateY(-5px);
}

.diagram-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.diagram-image:hover {
    transform: scale(1.02);
}

.diagram-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Projects Divider */
.projects-divider {
    padding: 3rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.divider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .foundation-diagram-top {
        max-width: 85%;
    }
    
    .foundation-content-stacked {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .foundation-heading {
        font-size: 1.75rem;
    }
    
    .foundation-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .foundation-section {
        padding: 4rem 0;
    }
    
    .foundation-diagram-top {
        max-width: 95%;
    }
    
    .diagram-container-large {
        padding: 1rem;
    }
    
    .foundation-heading {
        font-size: 1.5rem;
    }
    
    .foundation-buttons {
        flex-direction: column;
    }
    
    .foundation-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .divider-title {
        font-size: 1.75rem;
    }
    
    .divider-subtitle {
        font-size: 1rem;
    }
}
/* Business Context Section */
.business-context-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

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

.business-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.business-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.business-icon i {
    font-size: 1.5rem;
    color: white;
}

.business-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.business-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* GRC Mapping Section */
.grc-mapping-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

.grc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.grc-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.grc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.grc-icon i {
    font-size: 1.5rem;
    color: white;
}

.grc-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.grc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grc-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.grc-list li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.grc-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-grid,
    .grc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .business-card,
    .grc-card {
        padding: 1.5rem;
    }
}
