* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff;

    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: auto;
}

.navbar-logo-img {
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.navbar-logo:hover .navbar-logo-img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #555555;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .menu-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        width: 100%;
        padding: 1rem 1.5rem;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        font-size: 0.95rem;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item:last-child {
        border-bottom: none;
    }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0.75rem 1rem;
    }

    /* Slightly larger logo on small screens */
    .navbar-logo-img {
        height: 72px;
        max-width: 240px;
    }

    .nav-menu.active {
        max-height: 250px;
    }

    .nav-item {
        padding: 0.875rem 1rem;
    }
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    gap: 1.5rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000000;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 400;
    max-width: 90%;
}

.cta-button {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Tablet: 768px and above */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 1.5rem;
    }

    .hero-content {
        gap: 1.25rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 1rem;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subtext {
        font-size: 0.9rem;
        color: #666666;
    }

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
}

.profile{
    text-align: center;
}





.about-section {
    background-color: #f9f9f9;
    padding: 3.5rem 1.5rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}
.about-text{
    color: #555555;
}

.about-intro {
    text-align: center;
    color: #666666;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.about-card {
    background: #ffffff;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.05);
    line-height: 1.6;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-image-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-photo-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    border: 1px solid #dddddd;
    background: linear-gradient(160deg, #fafafa 0%, #f1f1f1 100%);
    color: #6a6a6a;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-heading-copy {
    min-width: 0;
}

.about-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.about-role {
    color: #666666;
    margin-bottom: 0;
}

.about-list {
    list-style: disc;
    padding-left: 1.25rem;
    color: #333333;
}

.about-list li {
    margin-bottom: 0.75rem;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-socials {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ededed;
}

.about-socials-title {
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 0.6rem;
}

.about-social-links {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.about-social-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #111111;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-social-link:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
}

@media (max-width: 480px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-title {
        font-size: 1.45rem;
    }

    .about-intro {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .about-card {
        padding: 1.25rem;
    }

    .about-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .about-photo-placeholder {
        width: 96px;
        height: 96px;
    }

    .about-image-wrapper {
        width: 96px;
        height: 96px;
    }
}

/* Services Grid */
.services-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
}

/* Portfolio */
.portfolio-section {
    padding: 4.5rem 1.5rem;
    background: #ffffff;
}

.portfolio-container {
    max-width: 1140px;
    margin: 0 auto;
}

.portfolio-kicker {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3f3f3f;
    background: #f4f4f4;
    border: 1px solid #dedede;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.95rem;
}

.portfolio-title {
    font-size: 2.2rem;
    line-height: 1.12;
    color: #111111;
    letter-spacing: -0.04em;
    margin-bottom: 0.65rem;
}

.portfolio-subtext {
    max-width: 760px;
    color: #5a5a5a;
    font-size: 1rem;
    margin-bottom: 1.8rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
}

.project-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 15, 15, 0.08);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 1.6rem;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(15, 15, 15, 0.14);
}

.project-mockups {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(160deg, #f8f8f8 0%, #efefef 100%);
    border: 1px solid #ebebeb;
    border-radius: 14px;
}

.device-frame {
    margin: 0;
}

.laptop-frame {
    width: min(100%, 460px);
    border: 9px solid #1a1a1a;
    border-bottom-width: 14px;
    border-radius: 12px 12px 8px 8px;
    overflow: hidden;
    background: #111111;
    box-shadow: 0 15px 30px rgba(10, 10, 10, 0.2);
}

.laptop-frame::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 70%;
    height: 10px;
    border-radius: 999px;
    background: #d7d7d7;
}

.phone-frame {
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    width: min(33%, 145px);
    border: 7px solid #0d0d0d;
    border-radius: 24px;
    padding: 0.22rem;
    background: #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.device-image {
    display: block;
    width: 100%;
    object-fit: cover;
    background: #f3f3f3;
}

.laptop-frame .device-image {
    aspect-ratio: 16 / 10;
}

.phone-frame .device-image {
    aspect-ratio: 9 / 18;
    border-radius: 16px;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.project-title {
    font-size: 1.35rem;
    line-height: 1.25;
    color: #111111;
}

.project-description {
    font-size: 0.96rem;
    color: #585858;
    line-height: 1.55;
}

.project-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.2rem;
}

.project-btn {
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    transition: all 0.2s ease;
}

.project-btn-primary {
    background: #111111;
    border: 1px solid #111111;
    color: #ffffff;
}

.project-btn-primary:hover {
    background: #ffffff;
    color: #111111;
}

.project-btn-secondary {
    background: #ffffff;
    border: 1px solid #cfcfcf;
    color: #2a2a2a;
}

.project-btn-secondary:hover {
    border-color: #111111;
    color: #111111;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 10px;
    color: #000000;
}

.service-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
}

.service-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.45;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .project-mockups {
        min-height: 240px;
    }

    .phone-frame {
        width: min(30%, 135px);
    }
}

/* Portfolio gallery responsive section */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 3.1rem 1rem;
    }

    .portfolio-title {
        font-size: 1.85rem;
    }

    .project-card {
        padding: 1.15rem;
    }

    .project-mockups {
        padding: 0.8rem;
        min-height: 215px;
    }

    .laptop-frame {
        width: 100%;
    }

    .phone-frame {
        width: min(36%, 128px);
        right: 0.25rem;
        bottom: 0.35rem;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .project-description {
        font-size: 0.93rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .portfolio-section {
        padding: 2.6rem 1rem;
    }

    .portfolio-kicker {
        font-size: 0.74rem;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .portfolio-subtext {
        font-size: 0.93rem;
        margin-bottom: 0.35rem;
    }

    .project-card {
        border-radius: 13px;
        padding: 1rem;
    }

    .project-mockups {
        min-height: 190px;
        border-radius: 12px;
        padding: 0.6rem;
    }

    .laptop-frame {
        border-width: 7px;
        border-bottom-width: 11px;
    }

    .phone-frame {
        width: min(38%, 112px);
        border-width: 6px;
        border-radius: 20px;
        padding: 0.2rem;
    }

    .phone-frame .device-image {
        border-radius: 12px;
    }

    .project-title {
        font-size: 1.08rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .project-actions {
        flex-direction: column;
    }
}

.pricing-section {
    background-color: #f9f9f9;
    padding: 3.5rem 1.5rem;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.pricing-subtext {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 10, 10, 0.08);
}

.pricing-card--featured {
    border-color: #000000;
    border-width: 2px;
    transform: scale(1.05);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.pricing-plan {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
}

.period {
    font-size: 0.95rem;
    color: #777777;
    align-self: flex-end;
}

.pricing-amount .text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
}

.pricing-description {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #555555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pricing-btn:hover {
    background: #efefef;
    border-color: #000000;
}

.pricing-btn--primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.pricing-btn--primary:hover {
    background: #1a1a1a;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card--featured {
        grid-column: 1 / -1;
        transform: scale(1.02);
    }

    .pricing-card--featured:hover {
        transform: scale(1.02) translateY(-6px);
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .pricing-card--featured {
        transform: scale(1);
        padding: 1.5rem 1rem;
    }

    .pricing-card--featured:hover {
        transform: translateY(-6px);
    }

    .price {
        font-size: 2rem;
    }
}

/* Testimonials */
.testimonials-section {
    background-color: #ffffff;
    padding: 3.5rem 1.5rem;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 20px rgba(10,10,10,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10,10,10,0.07);
}

.testimonial-avatar svg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: block;
}

.testimonial-body {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #777777;
    margin-bottom: 0.5rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }
}

/* Image Lightbox Styles */
.about-image {
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.about-image:hover {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
