/*
* Data Engineering & Analytics Portfolio - Main Stylesheet
* A modern, responsive design for a data professional portfolio
*/

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Optimize image loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Content visibility for off-screen content */
.defer-visibility {
    content-visibility: auto;
    contain-intrinsic-size: 1px 5000px;
}

/* Responsive font sizes */
:root {
    --h1-font-size: clamp(2rem, 5vw, 3rem);
    --h2-font-size: clamp(1.5rem, 4vw, 2.5rem);
    --h3-font-size: clamp(1.25rem, 3vw, 2rem);
    --body-font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Optimize hero section for all devices */
.page-hero {
    position: relative;
    background-color: var(--primary-color);
    padding: 180px 0 100px;
    overflow: hidden;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero .lead {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero-image .floating-card {
        display: none;
    }
}

/* Optimize image loading in story sections */
.story-image img,
.about-image img,
.team-img img,
.project-img img,
.blog-img img {
    will-change: transform;
    transition: transform 0.3s ease;
}

/* Optimize footer for small screens */
@media (max-width: 576px) {
    .footer-links,
    .footer-newsletter {
        margin-top: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
        text-align: center !important;
    }
}

/* ===== Base Styles ===== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --gray-light: #e2e8f0;
    --text-color: #334155;
    --white: #ffffff;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

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

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

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

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title p {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.text-center .section-title p {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.btn:hover i.fa-arrow-down {
    transform: translateY(4px);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background-color: #0ea271; /* Darker shade of secondary-color */
    border-color: #0ea271;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.2);
}

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

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-light);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Header ===== */
.header {
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
    background-color: #1e293b;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.header-scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(15, 23, 42, 0.98);
}

.logo {
    max-height: 40px;
    transition: all 0.3s ease;
}

.header-scrolled .logo {
    max-height: 35px;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar-nav .nav-link i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu {
    background-color: #0f172a;
    border: 1px solid #2563eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    border-radius: 8px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(16, 185, 129, 0.2);
    color: #ffffff !important;
}

.dropdown-divider {
    border-color: #2563eb;
    opacity: 0.2;
}

.btn-contact {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-radius: 6px;
    margin-left: 10px;
    padding: 10px 20px !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.btn-contact i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #ffffff !important;
}

.btn-contact:hover {
    background-color: #0ea271 !important; /* Darker shade of secondary-color */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.accent-text {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hero-feature-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.dashboard-preview {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-controls {
    display: flex;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.dashboard-dot:nth-child(1) {
    background-color: #ff5f57;
}

.dashboard-dot:nth-child(2) {
    background-color: #febc2e;
}

.dashboard-dot:nth-child(3) {
    background-color: #28c840;
}

.dashboard-body {
    padding: 20px;
}

.dashboard-chart-container {
    margin-bottom: 20px;
    position: relative;
}

.dashboard-chart {
    width: 100%;
    height: 120px;
}

.chart-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: white;
    opacity: 0.7;
}

.dashboard-metrics {
    display: flex;
    justify-content: space-between;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.metric-percent, .metric-unit {
    font-size: 0.9rem;
    font-weight: normal;
}

.metric-label {
    font-size: 0.8rem;
    color: white;
    opacity: 0.7;
}

.hero-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    filter: blur(10px);
    animation: float 8s infinite ease-in-out;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
}

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

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        margin-top: 40px;
    }
}

/* ===== About Section ===== */
.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-features {
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    margin-bottom: 20px;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 16px;
}

.feature-text h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    margin: 0;
    color: var(--gray-color);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== Services Section ===== */
.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    margin: 0;
}

.service-image {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 8px;
    height: 120px;
    background-color: transparent;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: transparent;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* ===== Projects Section ===== */
.project-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.project-content p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

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

.tags span {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ===== Tech Stack Section ===== */
.tech-stack {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-intro {
    max-width: 700px;
    margin: 0 auto 40px;
}

.tech-tabs-container {
    margin-bottom: 50px;
}

.tech-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tech-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    border-radius: 30px;
    padding: 12px 20px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 15px;
}

.tech-tabs .nav-link:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}

.tech-tabs .nav-link.active {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transform: translateY(-3px);
}

.tech-tabs .nav-link i {
    margin-right: 8px;
    font-size: 16px;
}

.tech-category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.tech-category-title i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.tech-subcategory-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-color);
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
}

.tech-subcategory-title i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.tech-slider-container {
    margin-bottom: 30px;
}

.tech-swiper {
    padding: 20px 40px;
    margin-bottom: 20px;
}

.swiper-slide {
    height: auto;
    padding: 10px;
}

.tech-item-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.tech-item-card:hover {
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.tech-logo-card {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.tech-item-card:hover .tech-logo-card {
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* Add styling for fetched icons */
.fetched-icon {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tech-item-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

/* Cloud provider specific styling */
#azure-data-content .tech-item-card {
    border-left: 3px solid #0078d4;
}

#aws-data-content .tech-item-card {
    border-left: 3px solid #ff9900;
}

#data-analytics-content .tech-item-card {
    border-left: 3px solid #10b981;
}

#data-science-content .tech-item-card {
    border-left: 3px solid #6366f1;
}

#data-ops-content .tech-item-card {
    border-left: 3px solid #f43f5e;
}

/* Swiper navigation styling */
.tech-swiper .swiper-button-next,
.tech-swiper .swiper-button-prev {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tech-swiper .swiper-button-next:after,
.tech-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.tech-swiper .swiper-pagination-bullet {
    background-color: var(--secondary-color);
    opacity: 0.5;
}

.tech-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--secondary-color);
}

/* Add a loading state for tech logos */
.tech-logo-card.loading {
    animation: shimmer 1.5s infinite linear;
    background: linear-gradient(90deg, 
        rgba(229, 232, 235, 0.1), 
        rgba(229, 232, 235, 0.3), 
        rgba(229, 232, 235, 0.1));
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@media (max-width: 991px) {
    .tech-category-title {
        font-size: 20px;
    }
    
    .tech-subcategory-title {
        font-size: 18px;
    }
    
    .tech-tabs .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .tech-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tech-tabs .nav-link {
        margin-bottom: 10px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .tech-item-card {
        padding: 15px;
        min-height: 120px;
    }
    
    .tech-logo-card {
        width: 45px;
        height: 45px;
    }
    
    .tech-item-card span {
        font-size: 12px;
    }
    
    .tech-category-title {
        font-size: 18px;
    }
    
    .tech-subcategory-title {
        font-size: 16px;
    }
    
    .tech-swiper {
        padding: 15px;
    }
}

/* ===== Contact Section ===== */
.contact-info {
    /* Add your styles here */
}

/* ===== Contact Section ===== */

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    right: 25px;
    bottom: 25px;
    z-index: 99;
    width: 44px;
    height: 44px;
    background-color: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #0f172a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.tech-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .tech-item {
        padding: 1rem;
    }

    .tech-logo {
        width: 48px;
        height: 48px;
    }

    .tech-name {
        font-size: 0.8rem;
    }
} 