* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.nav-links ul {
    display:flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    color: #334155;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    color: #1d4ed8;
}

.portfolio-hero {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.portfolio-hero-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.portfolio-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 15px;
}

.portfolio-hero h1 {
    font-family: 'poppins', sans-serif;
    font-size: 40px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}

.portfolio-hero p {
    font-family: 'inter', sans-serif;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.featured-project {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-wrapper {
    display:flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.featured-image {
    flex: 1;
}

.featured-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    object-fit: cover;
}

.featured-content {
    flex: 1;
}

.project-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-family: 'poppins', sans-serif;
    font-size: 36px;
    color: #0f172a;
    margin-bottom: 10px;
}

.project-category {
    display: inline-block;
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 20px;
}

.featured-content p {
    font-family: 'inter', sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.project-highlights {
    margin-bottom: 30px;
}

.hightlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #0f172a;
}

.highlight-item i {
    color: #2563eb;
}

.project-buttons {
    display: flex;
    gap: 15px;
}

.upcoming-projects {
    padding: 80px 0;
    background-color: #f8fafc;
}

.upcoming-projects .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.upcoming-projects .section-header h2 {
    font-family: 'poppins', sans-serif;
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 15px;
}

.upcoming-projects .section-header p {
    font-family: 'inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.upcoming-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
}

.upcoming-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.coming-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 30px;
}

.upcoming-content {
    padding: 25px;
}

.project-type {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 10px;
}

.upcoming-content h3 {
    font-family: 'poppins', sans-serif;
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
}

.upcoming-content p {
    font-family: 'inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.cta {
    padding: 80px 0;
    background-color: #0f172a;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'poppins', sans-serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-box p {
    font-family: 'inter', sans-serif;
    font-size: 15px;
    color: #cbd5f5;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    font-size: 15px;
    padding: 12px 22px;
}

.cta-note {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}

.footer {
    background-color: #111827;
    border-top: 1px solid #1e293b;
    color: #cbd5f5;
    padding-top: 60px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: 'poppins', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #2563eb;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 25px;
    color: #cbd5f5;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 992px) {
    .nav-wrapper {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }

    .nav-links ul {
        gap: 20px;
    }

    .nav-cta {
        margin-top: 10px;
    }

    .portfolio-hero h1 {
        font-size:34px;
    }

    .portfolio-hero p {
        font-size: 15px;
    }

    .featured-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .featured-content {
        text-align: center;
    }

    .project-highlights {
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .project-buttons {
        justify-content: center;
    }

    .featured-image img {
        max-width: 100%;
    }

    .upcoming-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upcoming-projects .section-header h2 {
        font-size: 30px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }

    .nav-cta {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .portfolio-hero {
        padding: 60px 0;
    }

    .portfolio-hero h1 {
        font-size: 28px;
    }

    .portfolio-hero p {
        font-size: 14px;
    }

    .featured-project {
        padding: 60px 0;
    }

    .featured-content h2 {
        font-size: 30px;
    }

    .featured-content p {
        font-size: 14px;
    }

    .project-buttons {
        flex-direction: column;
        align-items: center;
    }

    .upcoming-projects {
        padding: 60px 0;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-projects .section-header h2 {
        font-size: 28px;
    }

    .upcoming-projects .section-header p {
        font-size: 14px;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 18px;
    }

    .nav-links ul li a {
        font-size: 14px;
    }

    .portfolio-hero {
        padding: 50px 0;
    }

    .portfolio-hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .portfolio-hero p {
        font-size: 13px;
    }

    .portfolio-tag,
    .section-tag {
        font-size: 13px;
    }

    .featured-project {
        padding: 50px 0;
    }

    .featured-content h2 {
        font-size: 24px;
    }

    .project-category {
        font-size: 13px;
    }

    .featured-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .highlight-item {
        font-size: 13px;
    }

    .project-buttons .btn-primary {
        width: 100%;
        text-align: center;
    }

    .upcoming-projects {
        padding: 50px 0;
    }

    .upcoming-image {
        height: 200px;
    }

    .upcoming-content {
        padding: 20px;
    }

    .upcoming-content h3 {
        font-size: 18px;
    }

    .upcoming-content p {
        font-size: 13px;
    }

    .coming-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 10px 16px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-bottom {
        padding: 15px 0;
    }
}


