/*
Theme Name: Hannan Portfolio
Theme URI: https://hannan.dev
Author: Hannan
Author URI: https://hannan.dev
Description: Modern portfolio theme for software architects and developers. Features dark theme with vibrant green accents, smooth animations, and fully responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hannan-portfolio
Tags: portfolio, dark, modern, one-page, responsive, custom-background, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ========================================
   CSS RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-dark: #0a1628;
    --secondary-dark: #0d1b2a;
    --card-bg: rgba(26, 41, 66, 0.5);
    --accent-green: #00ff88;
    --accent-green-dark: #00cc6a;
    --text-white: #ffffff;
    --text-light: #b0c4de;
    --border-color: rgba(0, 255, 136, 0.2);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --card-padding: 40px 30px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
}

h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
}

h3 {
    font-size: clamp(24px, 4vw, 36px);
}

h4 {
    font-size: clamp(20px, 3vw, 28px);
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-green-dark);
}

/* ========================================
   LAYOUT & CONTAINERS
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--border-color);
}

.site-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 900;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-navigation a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--accent-green);
}

/* Navigation button specific styles */
.main-navigation .btn {
    color: var(--primary-dark);
}

.main-navigation .btn:hover {
    color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2942 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .accent {
    color: var(--accent-green);
    display: block;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.badge {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.badge:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.badge-icon {
    color: var(--accent-green);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out 0.5s both;
    width: 80%;
    /* Reduced from 100% to 80% */
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    transition: var(--transition-medium);
}

.hero-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 255, 136, 0.3);
    border-color: var(--accent-green);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent-green);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-image-badge i {
    font-size: 18px;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: var(--primary-dark);
}

/* ========================================
   STATS SECTION
======================================== */

.stats-section {
    background: var(--secondary-dark);
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-green);
    font-family: var(--font-heading);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
======================================== */

.services-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2942 100%);
}

.section-header {
    max-width: 800px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--accent-green);
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--card-padding);
    transition: var(--transition-fast);
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   TECHNICAL PROFICIENCY SECTION
======================================== */

.tech-section {
    background: var(--secondary-dark);
}

.tech-section .section-title {
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-fast);
    animation: fadeInUp 0.6s ease-out both;
}

.tech-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tech-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tech-card:nth-child(4) {
    animation-delay: 0.4s;
}

.tech-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-green);
}

.tech-icon {
    font-size: 48px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.tech-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

/* Skills Progress Bars */
.skills-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.skill-category {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.skill-category h3 {
    color: var(--accent-green);
    margin-bottom: 25px;
    font-size: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-green);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* Proficiency Cards Update */
.tech-grid {
    margin-bottom: 60px;
}

/* ========================================
   PORTFOLIO SECTION
======================================== */

.portfolio-section {
    background: var(--primary-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
    animation: fadeInUp 0.6s ease-out both;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a2942 0%, #0a1628 100%);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* ========================================
   CAREER TIMELINE SECTION
======================================== */

.timeline-section {
    background: var(--secondary-dark);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--secondary-dark), 0 0 0 6px var(--border-color);
}

.timeline-date {
    font-size: 14px;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.timeline-description {
    color: var(--text-light);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    background: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-white);
}

.author-info span {
    font-size: 12px;
    color: var(--accent-green);
}

/* ========================================
   GALLERY SECTION
======================================== */

.gallery-section {
    background: var(--secondary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    color: var(--primary-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    animation: fadeInLeft 0.6s ease-out;
}

.contact-info p {
    color: var(--primary-dark);
    margin-bottom: 30px;
    animation: fadeInLeft 0.6s ease-out 0.2s both;
}

.contact-details {
    animation: fadeInLeft 0.6s ease-out 0.4s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(10, 22, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-form {
    animation: fadeInRight 0.6s ease-out;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(10, 22, 40, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary-dark);
    color: var(--accent-green);
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.3);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 20px 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-container {
        order: -1;
        /* Show image first on mobile */
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .contact-container,
    .timeline::before {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        padding-left: 40px;
        text-align: left;
    }

    .timeline-dot {
        left: 0;
        transform: translateX(0);
    }

    .services-grid,
    .tech-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section {
        padding: 60px 20px;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-green);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}