/* ========================================
   GeoCodeTout - Styles principaux
   ======================================== */

/* Variables CSS */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-color: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.navbar-brand i {
    color: var(--primary-color);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2px; /* Réduit l'espace entre les éléments */
}

.navbar-menu a {
    display: flex;
    align-items: center;
    gap: 6px; /* Réduit l'espace entre l'icône et le texte */
    padding: 10px 12px; /* Réduit le padding horizontal */
    color: var(--text-color);
    border-radius: var(--radius);
    font-weight: 500;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
}

.navbar-menu a:hover,
.navbar-menu a.active {
    background: var(--primary-color);
    color: var(--white);
}

.navbar-menu a i {
    width: 20px;
    text-align: center;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.navbar-extra {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-color);
    padding: 8px 12px;
    border-radius: var(--radius);
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap; /* Empêche le texte du bouton de passer à la ligne */
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-linkedin {
    background: #0077b5;
    color: var(--white);
}

.btn-linkedin:hover {
    background: #005885;
    color: var(--white);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
    color: var(--white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    padding-right: 40px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
}

/* Code Cascade Effect */
.code-cascade {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-block {
    background: #1e293b;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.code-cascade .code-block {
    position: absolute;
    width: 340px;
    padding: 0;
}

/* Code Header (macOS style) */
.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.code-lang {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Individual block positioning - centered */
.code-python {
    top: 20px;
    left: calc(50% - 250px);
    z-index: 1;
    transform: rotate(-3deg);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.code-python .code-header {
    background: #0d1117;
}

.code-solidity {
    top: 60px;
    left: calc(50% - 170px);
    z-index: 2;
    transform: rotate(1deg);
    background: linear-gradient(135deg, #1c1c3c 0%, #2d1b4e 100%);
}

.code-solidity .code-header {
    background: #13132a;
}

.code-php {
    top: 100px;
    left: calc(50% - 90px);
    z-index: 3;
    transform: rotate(-1deg);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Hover effects */
.code-cascade .code-block:hover {
    z-index: 10;
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Code content */
.code-cascade .code-block pre {
    margin: 0;
    padding: 15px;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Language-specific syntax colors */
.code-python code {
    color: #a5d6ff;
}

.code-solidity code {
    color: #c9a0ff;
}

.code-php code {
    color: #7dd3fc;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
    color: var(--white);
    padding: 140px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #9ca3af;
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-link:hover {
    gap: 10px;
}

/* ========================================
   Blog Grid
   ======================================== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.blog-category {
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--white);
    font-weight: 500;
}

.blog-date, .blog-views {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-content h3 a {
    color: var(--dark-color);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

/* ========================================
   Sidebar
   ======================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.category-list {
    list-style: none;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

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

.category-list .cat-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.category-list .count {
    margin-left: auto;
    background: var(--light-color);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.85rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 12px;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.linkedin-widget {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: var(--white);
    text-align: center;
}

.linkedin-widget i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.linkedin-widget h4 {
    border-bottom: none;
    color: var(--white);
}

.linkedin-widget p {
    margin-bottom: 15px;
    opacity: 0.9;
}

/* LinkedIn Posts Widget in Sidebar */
.linkedin-posts-widget h4 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkedin-posts-widget h4 i {
    color: #0077b5;
}

.linkedin-posts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.linkedin-post-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-color);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.linkedin-post-item:hover {
    background: #e8f4fc;
    border-left-color: #0077b5;
    transform: translateX(3px);
}

.linkedin-post-content {
    flex: 1;
}

.linkedin-post-title {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.linkedin-post-date {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.linkedin-post-item > i {
    color: #0077b5;
    opacity: 0;
    transition: var(--transition);
}

.linkedin-post-item:hover > i {
    opacity: 1;
}

/* LinkedIn Embeds Section */
.linkedin-embeds-section {
    padding: 60px 0;
}

.linkedin-embeds-section .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.linkedin-embeds-section .section-header h2 i {
    color: #0077b5;
}

.linkedin-embeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.linkedin-embed-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.linkedin-embed-wrapper iframe {
    width: 100% !important;
    border: none !important;
    border-radius: var(--radius);
}

/* ========================================
   Knowledge Base
   ======================================== */
.filters-bar {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-input,
.filter-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    min-width: 200px;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.knowledge-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.knowledge-card:hover {
    box-shadow: var(--shadow-lg);
}

.knowledge-header {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.lang-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--dark-color);
    color: var(--white);
}

.lang-php { background: #777bb4; }
.lang-javascript { background: #f7df1e; color: #000; }
.lang-python { background: #3776ab; }
.lang-java { background: #007396; }
.lang-css { background: #264de4; }
.lang-html { background: #e34f26; }
.lang-bash { background: #4eaa25; }
.lang-sql { background: #e38c00; }

.category-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.knowledge-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.knowledge-card h3 a {
    color: var(--dark-color);
}

.code-preview {
    background: #1e293b;
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.code-preview pre {
    margin: 0;
}

.code-preview code {
    font-size: 0.8rem;
    color: #e2e8f0;
}

.knowledge-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.view-link {
    margin-left: auto;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   Portfolio
   ======================================== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 0;
    justify-content: center;
}

.filter-tab {
    padding: 10px 20px;
    background: var(--white);
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-tab .count {
    margin-left: 5px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--text-light);
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-links {
    display: flex;
    gap: 15px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin: 10px 0;
}

.portfolio-content h3 a {
    color: var(--dark-color);
}

.portfolio-client {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.portfolio-description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tech-tag {
    padding: 4px 10px;
    background: var(--light-color);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-color);
}

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

/* ========================================
   About Page
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.about-grid-no-photo {
    grid-template-columns: 200px 1fr;
    gap: 40px;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.about-icon-wrapper {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: 5rem;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link.linkedin { background: #0077b5; }
.social-link.github { background: #333; }
.social-link.alyra { background: linear-gradient(135deg, #6366f1, #8b5cf6); }

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

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content p strong {
    color: var(--dark-color);
}

/* About Badge */
.about-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Philosophy */
.about-philosophy {
    margin: 30px 0;
    padding: 25px 30px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.about-philosophy blockquote {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.about-philosophy blockquote i {
    color: var(--primary-color);
    margin-right: 10px;
    opacity: 0.5;
}

.about-highlights {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.highlight {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Timeline / Journey Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:hover .timeline-marker {
    background: var(--primary-color);
    transform: scale(1.2);
    transition: var(--transition);
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-certified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.badge-certified:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.15;
    position: absolute;
    top: 15px;
    right: 20px;
}

.approach-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.approach-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Personal Section */
.personal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.personal-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.personal-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.personal-interests {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interest {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.interest:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.interest i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.interest:hover i {
    color: var(--white);
}

.interest span {
    font-weight: 600;
    color: var(--dark-color);
}

.interest:hover span {
    color: var(--white);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dual Profile Section */
.dual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.profile-card.tech {
    border-top-color: #2563eb;
}

.profile-card.business {
    border-top-color: #10b981;
}

.profile-card.maker {
    border-top-color: #f59e0b;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.profile-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: var(--radius);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.profile-card.tech .profile-icon {
    color: #2563eb;
}

.profile-card.business .profile-icon {
    color: #10b981;
}

.profile-card.maker .profile-icon {
    color: #f59e0b;
}

.profile-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.profile-list {
    list-style: none;
}

.profile-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.profile-list li:last-child {
    border-bottom: none;
}

.profile-list li i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Reasons / Why Contact Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
}

.reason-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.skill-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.skill-category h3 i {
    color: var(--primary-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 15px;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.value-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Captcha */
.captcha-group {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius);
    border: 2px dashed var(--border-color);
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.captcha-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    font-family: 'Fira Code', monospace;
}

.captcha-input {
    width: 80px;
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.captcha-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.contact-card-link:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-link .contact-icon {
    margin: 0;
    flex-shrink: 0;
}

.contact-card-link.linkedin .contact-icon {
    background: #0077b5;
}

.contact-card-link.instagram .contact-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card-link.email .contact-icon {
    background: var(--primary-color);
}

.contact-card-link.alyra .contact-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    margin: 0 0 2px 0;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.contact-card-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-handle {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.contact-card-link.linkedin .contact-handle {
    color: #0077b5;
}

.contact-card-link.instagram .contact-handle {
    color: #e6683c;
}

.contact-card-link.alyra .contact-handle {
    color: #6366f1;
}

.contact-arrow {
    color: var(--text-light);
    opacity: 0;
    transition: var(--transition);
}

.contact-card-link:hover .contact-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: var(--primary-color);
    border-radius: var(--radius);
    font-size: 1.3rem;
    color: var(--white);
}

.contact-card h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-link {
    font-weight: 600;
    color: var(--primary-color);
}

/* Location Card */
.location-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.location-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: var(--radius);
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.location-content h3 {
    margin: 0 0 5px 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.location-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* What to expect */
.what-to-expect {
    margin-top: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.what-to-expect h3 {
    margin: 0 0 15px 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.what-to-expect ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-to-expect li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.what-to-expect li i {
    color: var(--secondary-color);
}

/* Contact Intro */
.contact-intro {
    padding: 40px 0 0;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Form button block */
.btn-block {
    width: 100%;
    justify-content: center;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-color);
    border-radius: var(--radius);
    margin-top: 20px;
}

.response-time i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.response-time p {
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light-color);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-color);
    color: #9ca3af;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.footer-section h3 i {
    color: var(--primary-color);
}

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

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

.footer-section ul a {
    color: #9ca3af;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* ========================================
   Alerts
   ======================================== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-close {
    float: right;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}

.alert ul {
    margin: 10px 0 0 20px;
}

/* ========================================
   Pagination
   ======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}

.page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--text-color);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.page-info {
    color: var(--text-light);
}

/* ========================================
   No Results
   ======================================== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* ========================================
   Search
   ======================================== */
.blog-search {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    max-width: 500px;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 1rem;
}

.search-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.search-results-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-color);
    border-radius: var(--radius);
    margin-bottom: 30px;
}

/* ========================================
   Services Page Specific
   ======================================== */
.services-nav {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-color);
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-pill:hover {
    background: var(--pill-color, var(--primary-color));
    color: var(--white);
}

.service-detail {
    scroll-margin-top: 150px;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--service-color, var(--primary-color));
    border-radius: var(--radius-lg);
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.feature {
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.tech-stack {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.tech-stack h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        position: static;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .personal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -28px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .personal-interests {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Custom styles for nav links with icons */
.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 8px; /* space between icon and text */
}

.nav-link-text {
    display: inline-block;
}

/* On smaller screens, you might want to hide the text and only show icons */
@media (max-width: 991.98px) {
    .nav-link-text {
        display: none; /* Hide text on small screens */
    }
    .navbar-nav .nav-link {
        justify-content: center; /* Center the icon */
        padding: 0.5rem 0;
    }
}

.navbar-nav .nav-link .fa-book {
    color: #9c27b0;
}

.navbar-nav .nav-link .fa-envelope {
    color: #e91e63;
}
