﻿/* Portfolio Hero */
.portfolio-hero {
    background: #1A2930;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.portfolio-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.portfolio-hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Services */
.services-section {
    background: #f7f8fa;
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

/* Projects */
.projects-section {
    padding: 60px 0;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 45%;
    border: 1px solid rgba(0,0,0,0.08);
}
.project-card img{
    max-width:150px;
    max-height:auto;
}

/* Testimonial */
.testimonial-section {
    background: #eef1f4;
    padding: 60px 0;
    text-align: center;
}

.testimonial {
    font-style: italic;
    margin: 20px auto;
    max-width: 700px;
}

/* CTA */
.contact-cta-section {
    padding: 50px 0;
}

.btn-cta {
    background: #0078d4;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
}
