* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background: #ffffff;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 2rem;
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(102, 126, 234, 0.1);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(102, 126, 234, 0.8);
    animation-delay: var(--delay);
    left: var(--x);
    top: var(--y);
    opacity: 0.6;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
}

.floating-card i {
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: inherit;
    font-style: normal;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.floating-card i:before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
}

@supports not (backdrop-filter: blur(10px)) {
    .floating-card {
        background: rgba(255, 255, 255, 0.5);
    }
}

@keyframes float {
    0% {
        opacity: 0.6;
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-15px) rotate(3deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-8px) rotate(5deg);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-15px) rotate(-3deg);
    }
    100% {
        opacity: 0.6;
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes floatReverse {
    0% {
        opacity: 0.7;
        transform: translateY(-5px) rotate(2deg);
    }
    25% {
        opacity: 0.9;
        transform: translateY(10px) rotate(-2deg);
    }
    50% {
        opacity: 0.6;
        transform: translateY(15px) rotate(-4deg);
    }
    75% {
        opacity: 0.9;
        transform: translateY(5px) rotate(1deg);
    }
    100% {
        opacity: 0.7;
        transform: translateY(-5px) rotate(2deg);
    }
}

@keyframes floatSide {
    0% {
        opacity: 0.8;
        transform: translateX(0px) translateY(-2px) rotate(1deg);
    }
    25% {
        opacity: 0.6;
        transform: translateX(-8px) translateY(-12px) rotate(-2deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-5px) translateY(-8px) rotate(3deg);
    }
    75% {
        opacity: 0.6;
        transform: translateX(8px) translateY(-12px) rotate(-1deg);
    }
    100% {
        opacity: 0.8;
        transform: translateX(0px) translateY(-2px) rotate(1deg);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.6s forwards;
    max-width: 600px;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.8s forwards;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.apps-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: #6e6e73;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover .app-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.app-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.app-card p {
    color: #6e6e73;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.app-button {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.app-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6e6e73;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #1d1d1f;
}

.modal-body {
    padding: 3rem;
    text-align: center;
}

.modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1.2rem;
    color: #6e6e73;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.screenshot-item {
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

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

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.screenshot-placeholder {
    height: 150px;
    background: #f5f5f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-button, .beta-button {
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.beta-button {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.download-button:hover, .beta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.download-button:hover {
    color: white;
}

.beta-button:hover {
    background: #ff6b35;
    color: white;
}

.contact-section {
    padding: 6rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.contact-button {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover, .contact-button:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background: #2a2a2a;
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.skill-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.skill-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-category:hover .skill-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.all-skills {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.all-skills h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1d1d1f;
}

.skills-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.skill-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .skill-category, .all-skills {
        padding: 1.5rem;
    }
    
    .skills-pills {
        gap: 0.5rem;
    }
    
    .skill-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .skill-category h3, .all-skills h4 {
        font-size: 1.25rem;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
    }
    
    .skill-icon i {
        font-size: 1.5rem !important;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .nav-container, .hero-content, .apps-grid {
        max-width: 1000px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 0 1rem;
        min-height: 80vh;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-card {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        opacity: 0.4;
    }
    
    .floating-card:nth-child(3n) {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card {
        padding: 2rem;
    }
    
    .contact-section {
        padding: 4rem 1rem;
    }
    
    .contact-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .modal-content {
        width: 95%;
        margin: 2rem;
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-screenshots {
        display: flex;
        justify-content: center;
    }
    
    .screenshot-item {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }
    
    .nav-logo h1 {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 0 1rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .apps-section, .contact-section {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .app-card {
        padding: 1.5rem;
    }
    
    .app-card h3 {
        font-size: 1.5rem;
    }
    
    .app-card p {
        font-size: 0.95rem;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .contact-item {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-description {
        font-size: 1rem;
    }
}

@media (min-width: 1400px) {
    .nav-container, .hero-content {
        max-width: 1400px;
    }
    
    .apps-grid {
        max-width: 1200px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        color: #ffffff;
        background: #000000;
    }

    .floating-card{
            background: rgba(255, 255, 255, 0.1);

    }

    .navbar {
        background: rgba(28, 28, 30, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        color: #ffffff;
    }

    .nav-link:hover {
        color: #667eea;
    }

    .hamburger span {
        background: #ffffff;
    }

    .hero {
        background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
    }

    .apps-section {
        background: #000000;
    }

    .apps-section:nth-child(even) {
        background: #1c1c1e;
    }

    #more-projects {
        background: #1c1c1e !important;
    }

    .app-card {
        background: #1c1c1e;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .app-card:hover {
        background: #2c2c2e;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .app-card h3 {
        color: #ffffff;
    }

    .app-card p {
        color: #a1a1a6;
    }

    .app-button {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .app-button:hover {
        background: #667eea;
        color: white;
    }

    .modal-overlay {
        background: rgba(0, 0, 0, 0.9);
    }

    .modal-content {
        background: #1c1c1e;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-close {
        color: #a1a1a6;
    }

    .modal-close:hover {
        color: #ffffff;
    }

    .modal-title {
        color: #ffffff;
    }

    .modal-description {
        color: #a1a1a6;
    }

  

    .skill-category {
        background: #1c1c1e;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .skill-category:hover {
        background: #2c2c2e;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .skill-category h3 {
        color: #ffffff;
    }

    .all-skills {
        background: #1c1c1e;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .all-skills h4 {
        color: #ffffff;
    }

    .footer {
        background: #1c1c1e;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-tag {
        background: rgba(102, 126, 234, 0.2);
        color: #8bb4ff;
    }

    .skill-tag {
        background: rgba(102, 126, 234, 0.2);
        color: #8bb4ff;
    }

    .section-header p {
        color: #a1a1a6;
    }

    
    .view-more-button {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }

    .view-more-button:hover {
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    }

    @media (max-width: 768px) {
        .nav-menu.active {
            background: rgba(28, 28, 30, 0.98);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
    }
}

#more-projects {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#more-projects.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.view-more-container {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.view-more-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.view-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.view-more-button:active {
  transform: translateY(0);
}

.view-more-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-more-button.expanded .view-more-icon {
  transform: rotate(180deg);
}

@media (max-width: 1020px) {
  .floating-icons {
    display: none;
  }
}

@media (max-width: 768px) {
  .view-more-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}