/* Generated on: Tue Nov 18 2025 */
/* ==========================================================================
   Start of custom CSS - Made with love and a little help from Claude.ai ;)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.corinthia-regular {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
}

.corinthia-bold {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-style: normal;
}

.contact-item a,
.contact-item a:visited {
    color: #4ecdc4;
}

.contact-item a:hover {
    color: #333;
}

/* Floating Animation Elements */
.floating-element {
    position: fixed;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    /*box-shadow: 0 2px 20px rgba(0,0,0,0.1);*/
}

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

.logo {
    font-family: "Corinthia", cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    position: relative;
}

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

.nav-links a {
    text-decoration: none;
    color: #808080;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    bbox-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.5);
    color: #000;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        padding: 2rem 0 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
        gap: 0 !important;
        z-index: 9999 !important;                    ← ADD THIS LINE
    }
    .nav-links.active {
        transform: translateX(0) !important;
    }

    .nav-links li {
        margin: 0.5rem 0 !important;
        text-align: center !important;
    }

    .nav-links a {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

/* Ensure desktop navigation works properly */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        flex-direction: row !important;
        transform: none !important;
        width: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 2rem !important;
    }
    
    .nav-links li {
        margin: 0 !important;
        text-align: left !important;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem !important;
        font-size: inherit !important;
        display: inline-block !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
}
/* Sections */
.section {
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

/* Home Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
}

.hero-content {
    flex: 1;
    color: #808080;
    z-index: 2;
}

.hero-title {
    font-weight: bold;
    color: #000000;
    font-family: 'Corinthia', cursive;
    font-size: 13rem;
    margin-bottom: 1rem;
    /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);*/
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    background: #4ecdc4;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out 0.9s both;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: #000;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lego-blocks {
    position: relative;
    width: 400px;
    height: 400px;
}

.lego-block {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.lego-block::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: inherit;
    border-radius: 50%;
    filter: brightness(1.2);
}

.block-1 {
    width: 100px;
    height: 60px;
    top: 50px;
    left: 10px;
    animation-delay: 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    background: transparent;
    box-shadow: none;
}

.block-1::before {
    display: none;
}

.block-1::after {
    content: '☕';
    position: absolute;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.block-2 {
    width: 80px;
    height: 60px;
    top: 150px;
    right: 100px;
    animation-delay: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    background: transparent;
    box-shadow: none;
}

.block-2::before {
    display: none;
}

.block-2::after {
    content: '💻';
    position: absolute;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.block-3 {
    width: 120px;
    height: 60px;
    bottom: 50px;
    left: -20px;
    animation-delay: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: transparent;
    box-shadow: none;
}

.block-3::before {
    display: none;
}

.block-3::after {
    content: '📚';
    position: absolute;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.block-4 {
    width: 90px;
    height: 60px;
    top: 10px;
    right: 40px;
    animation-delay: 1.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    background: transparent;
    box-shadow: none;
}

.block-4::before {
    display: none;
}

.block-4::after {
    content: '🎧';
    position: absolute;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.block-5 {
    width: 110px;
    height: 60px;
    bottom: 0px;
    right: 0px;
    animation-delay: 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: transparent;
    box-shadow: none;
}

.block-5::before {
    display: none;
}

.block-5::after {
    content: '🎨';
    position: absolute;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}


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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/*.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #4ecdc466;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
}*/

.portfolio-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Fallback styling for placeholder images */
.portfolio-image.placeholder {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.portfolio-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #4ecdc4;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.about-text {
    color: #333;
    line-height: 1.8;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1rem;
}

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

.skill-item {
    background: #FFF;
    border: 1px solid #4ecdc4;
    color: #4ecdc4;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.skills-grid > .ninety {
     background: linear-gradient(90deg,rgba(78, 205, 196, 1) 0%, rgba(78, 205, 196, 1) 90%, rgba(136, 227, 221, 1) 90%);
}

.skills-grid > .eighty {
     background: linear-gradient(90deg,rgba(78, 205, 196, 1) 0%, rgba(78, 205, 196, 1) 80%, rgba(136, 227, 221, 1) 80%);
}

.skill-item:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

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

.submit-button {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #FFF;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #4ecdc4;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #4ecdc4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
    /*text-shadow: 2px 2px 4px rgba(0,0,0,0.3);*/
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4ecdc4;
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 100;
    color: #808080;
    max-width: 600px;
    margin: 0 auto;
}

/* Project Detail Section */
.project-detail {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.project-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.project-hero-image {
    width: 100%;
    height: 300px;
    background: #ff6b6b;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    font-weight: bold;
}

.meta-item {
    text-align: center;
    padding: 1.5rem;
    background: #4ecdc415;
    border-radius: 15px;
}

.meta-label {
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.meta-value {
    color: #333;
}

.project-section {
    margin-bottom: 3rem;
}

.project-section h2 {
    color: #333; /* 4ecdc4 */
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.project-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.result-card {
    text-align: center;
    padding: 2rem;
    background: #4ecdc4;
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: scale(1.05);
}

.result-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: 1rem;
}

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

.process-step {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 2px solid #4ecdc4;
    position: relative;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    left: 20px;
    background: #4ecdc4;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.process-step h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-step p {
    color: #333;
    line-height: 1.6;
}

.showcase-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) * {
    direction: ltr;
}

.showcase-image {
    height: 200px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-image.mobview {
    height: 500px;
}

.showcase-content h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #333;
    line-height: 1.6;
}

.takeaways-list {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.takeaways-list ul {
    list-style: none;
    padding: 0;
}

.takeaways-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    position: relative;
    padding-left: 2rem;
}

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

.takeaways-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.fun-fact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b6b15, #4ecdc415);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.fun-fact-item:hover {
    transform: translateY(-5px);
}

.fun-fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.fun-fact-title {
    font-weight: bold;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.fun-fact-description {
    color: #333;
    line-height: 1.6;
    font-size: 0.9rem;
}

.project-full-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 3rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.back-button {
    display: inline-block;
    background: linear-gradient(135deg, #45b7d1, #4ecdc4);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Bottom Navigation & Similar Projects */
.project-bottom-nav {
    background: linear-gradient(135deg, #f8f9ff, #e8f4f8);
    margin: 4rem -2rem 0;
    padding: 3rem 2rem;
    border-radius: 20px;
}

.bottom-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.back-button-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #45b7d1, #4ecdc4);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
    box-shadow: 0 4px 15px rgba(69, 183, 209, 0.3);
}

.back-button-bottom:hover {
    transform: translateY(-3px);
    background: #000;
    box-shadow: 0 8px 25px rgba(69, 183, 209, 0.4);
}

.back-icon {
    font-size: 1.2rem;
}

/* Similar Projects */
.similar-projects {
    text-align: left;
    margin-bottom: 2rem;
}

.similar-projects h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.similar-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.similar-project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    user-select: none;
}

.similar-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.similar-project-card:active {
    transform: translateY(-2px) scale(0.98);
}

.similar-project-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.similar-project-content {
    padding: 1.2rem;
}

.similar-project-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.similar-project-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.similar-project-tag {
    display: inline-block;
    background: rgba(69, 183, 209, 0.1);
    color: #45b7d1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile Responsive for Bottom Navigation */
@media (max-width: 768px) {
    .project-bottom-nav {
        margin: 3rem -1rem 0;
        padding: 2rem 1rem;
    }

    .similar-projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .similar-project-card {
        margin: 0 auto;
        max-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item,
    .showcase-item.mobview {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        background-position: left center !important;
    }

    .showcase-image.mobview {
        background-size: contain  !important;
        height: 300px;
        width: 100%;
    }

    .showcase-item:nth-child(even) {
        direction: ltr;
    }

    /* Bottom Navigation Mobile */
    .project-bottom-nav {
        margin: 3rem -1rem 0;
        padding: 2rem 1rem;
    }

    .similar-projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .similar-project-card {
        margin: 0 auto;
        max-width: 300px;
    }

    .lego-blocks {
        width: 300px;
        height: 300px;
    }

    .section {
        padding: 5rem 1rem 2rem;
    }

    .project-hero-image,
    .project-full-image {
        background-size: contain;
        height: 82px;
        background-position: center center !important;
    }

}