/* Technologies Page Styles */

/* Hero Section */
.tech-hero {
    position: relative;
    background: linear-gradient(135deg, #0b1c2e 0%, #1a3a5f 100%);
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/tech-pattern.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.tech-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(25, 118, 210, 0.1) 0%, rgba(25, 118, 210, 0) 70%);
    z-index: 2;
}

.tech-hero .container {
    position: relative;
    z-index: 3;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg,  #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

/* Button Hover Effect */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

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

.btn-hover-effect span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-hover-effect:hover span {
    transform: translateX(-4px);
}

.btn-hover-effect i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-hover-effect:hover i {
    transform: translateX(4px);
}

/* Tech Hero Graphic */
.tech-hero-graphic {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.tech-icon-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tech-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.tech-icon:hover::before {
    opacity: 1;
}

.tech-icon-1 {
    top: 10%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.tech-icon-2 {
    top: 60%;
    left: 10%;
    animation: float 7s ease-in-out infinite 1s;
}

.tech-icon-3 {
    top: 30%;
    left: 50%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.tech-icon-4 {
    top: 70%;
    left: 60%;
    animation: float 8s ease-in-out infinite 1.5s;
}

.tech-icon-5 {
    top: 20%;
    left: 80%;
    animation: float 6s ease-in-out infinite 2s;
}

.tech-icon-6 {
    top: 50%;
    left: 85%;
    animation: float 7s ease-in-out infinite 0.7s;
}

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

.tech-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/connections.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.2;
    }
}

/* Floating Tech Cards */
.tech-cards-wrapper {
    position: relative;
    z-index: 10;
}

.tech-cards-container {
    position: relative;
    bottom: -60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.tech-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,  #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
}

.tech-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.tech-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Scroll Down Button */
.scroll-down-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-down-btn {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    transform: translateY(5px);
    color: #4facfe;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.7;
}

.scroll-down-btn i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Tech Stack Section Styles */
#tech-stack {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

#tech-stack::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

#tech-stack::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,  #6a11cb 0%, #2575fc 100%);
    border-radius: 4px;
}

/* Tech Tabs */
.tech-tabs {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

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

.tech-nav .nav-link {
    border-radius: 30px;
    padding: 12px 24px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.tech-nav .nav-link:hover {
    background-color: rgba(79, 172, 254, 0.1);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-2px);
}

.tech-nav .nav-link.active {
    background: linear-gradient(90deg,  #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
    transform: translateY(-2px);
}

.tech-nav .nav-link i {
    transition: all 0.3s ease;
}

.tech-nav .nav-link:hover i {
    transform: translateY(-2px);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.tech-item {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 172, 254, 0.3);
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,  #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.2);
    transition: all 0.4s ease;
}

.tech-item:hover .tech-logo {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
}

.tech-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.tech-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a3a5f;
    transition: all 0.3s ease;
}

.tech-item:hover h4 {
    color: #4facfe;
}

.tech-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Tech Stats Section */
.tech-stats-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(0, 242, 254, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.tech-stats-content {
    position: relative;
    z-index: 1;
}

.tech-stats-content h2 {
    color: #1a3a5f;
    position: relative;
    display: inline-block;
}

.tech-stats-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,  #6a11cb 0%, #2575fc 100%);
    border-radius: 3px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg,  #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.2);
}

.benefit-item h5 {
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 5px;
}

.benefit-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.tech-stats-graphic {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 172, 254, 0.3);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 10px;
    background: linear-gradient(90deg,  #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    line-height: 1;
}

.stat-value span {
    font-size: 1.8rem;
    vertical-align: top;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

/* Development Process */
.development-process {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom,  #6a11cb 0%, #2575fc 100%);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.2);
}

.process-step {
    position: relative;
    padding-left: 90px;
    margin-bottom: 60px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,  #6a11cb 0%, #2575fc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(79, 172, 254, 0.4);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 172, 254, 0.3);
}

.process-content:hover::before {
    opacity: 1;
}

.process-content h4 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a3a5f;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.process-content:hover h4 {
    color: #4facfe;
}

.process-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.tech-cta {
    background: linear-gradient(135deg,  #6a11cb 0%, #2575fc 100%);
    color: #fff;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.3);
    margin-top: 100px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.tech-cta h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tech-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.tech-cta .btn {
    background-color: #fff;
    color: #4facfe;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px 40px;
    transition: all 0.4s ease;
}

.tech-cta .btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.tech-cta .btn:hover span {
    transform: translateX(-6px);
}

.tech-cta .btn:hover i {
    transform: translateX(6px);
}

/* Responsive styles for tech hero graphic */
@media (max-width: 991.98px) {
    .tech-hero {
        padding: 100px 0 160px;
    }
    
    .tech-cards-container {
        position: relative;
        bottom: -20px;
        padding: 0 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tech-card {
        padding: 15px;
    }
    
    .row.min-vh-75 {
        min-height: auto;
        padding: 40px 0;
    }
    
    .tech-hero-graphic {
        height: 350px;
        max-width: 600px;
        margin-top: 30px;
    }
    
    .tech-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tech-nav {
        justify-content: center;
    }
    
    .tech-logo {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .tech-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .tech-hero {
        padding: 80px 0 120px;
    }
    
    .tech-cards-container {
        bottom: -30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    .scroll-down-container {
        bottom: 100px;
    }
    
    .tech-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .tech-card h3 {
        font-size: 1.1rem;
    }
    
    .tech-card p {
        font-size: 0.8rem;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .tech-hero-graphic {
        margin-bottom: 40px;
        height: 300px;
    }
    
    #tech-stack {
        padding-top: 30px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .tech-item {
        padding: 20px 10px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .process-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .process-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .process-content {
        padding: 20px;
    }
    
    .tech-cta {
        padding: 30px 20px !important;
    }
    
    .tech-cta h3 {
        font-size: 1.5rem;
    }
    
    .tech-cta p {
        font-size: 1rem;
    }
    
    .tech-cta .btn {
        padding: 10px 25px;
    }
    
    .tech-icon-1 {
        top: 10%;
        left: 15%;
    }
    
    .tech-icon-2 {
        top: 60%;
        left: 5%;
    }
    
    .tech-icon-3 {
        top: 30%;
        left: 45%;
    }
    
    .tech-icon-4 {
        top: 70%;
        left: 55%;
    }
    
    .tech-icon-5 {
        top: 20%;
        left: 75%;
    }
    
    .tech-icon-6 {
        top: 50%;
        left: 80%;
    }
    
    .tech-stats-section {
        padding: 40px 0 !important;
    }
    
    .tech-stats-content {
        text-align: center;
    }
    
    .tech-stats-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        margin-bottom: 30px !important;
    }
    
    .benefit-icon {
        margin-bottom: 15px;
        margin-right: 0 !important;
    }
    
    .stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-value span {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .tech-hero {
        padding: 60px 0 100px;
    }
    
    .tech-cards-container {
        bottom: -20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 0;
    }
    
    .tech-card {
        padding: 12px;
    }
    
    .tech-hero-graphic {
        margin-bottom: 20px;
        height: 250px;
    }
    
    #tech-stack {
        padding-top: 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tech-item {
        padding: 15px 10px;
    }
    
    .tech-logo {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .tech-item h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .tech-item p {
        font-size: 0.75rem;
    }
    
    .tech-nav .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .process-content {
        padding: 15px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tech-icon::before {
        bottom: -30px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
    
    .process-content h4 {
        font-size: 1.1rem;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .tech-hero {
        padding: 60px 0 90px;
    }
    
    .tech-cards-container {
        bottom: -10px;
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .tech-hero-graphic {
        height: 220px;
        margin-bottom: 10px;
    }
    
    #tech-stack {
        padding-top: 15px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .tech-nav .nav-link {
        width: 100%;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .tech-cta h3 {
        font-size: 1.3rem;
    }
    
    .tech-cta p {
        font-size: 0.9rem;
    }
}