body {
    font-family: 'Roboto', sans-serif;
    margin:0;
    padding:0;
    color:#333;
    line-height:1.6;
}
a { text-decoration:none; }
.section-padding { padding:60px 20px; }
.section-header h2 { font-size:36px; margin-bottom:15px; }
.section-header p { font-size:16px; color:#555; }
.btn { display:inline-block; padding:12px 25px; border-radius:5px; transition:0.3s; }
.btn-primary { background:#007BFF; color:#fff; }
.btn-secondary { background:#0056b3; color:#fff; }
.btn-light { background:#fff; color:#007BFF; }
.btn:hover { opacity:0.9; }

/* HERO */
.hero h1 { font-size:48px; margin-bottom:20px; }
.hero-subtitle { font-size:20px; margin-bottom:30px; }

/* PORTFOLIO GRID */
.portfolio-grid, .blogs-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; }
.portfolio-item, .blog-item { background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s; }
.portfolio-item:hover, .blog-item:hover { transform: translateY(-5px); }
.portfolio-item img, .blog-item img { width:100%; height:200px; object-fit:cover; }
.portfolio-info, .blog-item h3, .blog-item p { padding:15px; }

/* TESTIMONIALS */
.testimonials { text-align:center; }
.testimonials p { font-style:italic; font-size:18px; max-width:800px; margin:0 auto; }

/* CTA */
.cta h2 { font-size:36px; margin-bottom:20px; }
.cta p { font-size:18px; margin-bottom:30px; }
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.image-card {
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.image-card:hover { transform: translateY(-5px); }
.image-card img { width:100%; height:200px; object-fit:cover; }
.image-info { padding:15px; }
.image-info h3 { margin:0 0 10px; }
.image-info p { margin:0; font-size:14px; color:#555; }
