/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #111;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .logo {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff7f50;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: black;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ff7f50;
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff5722;
}

/* Section Styles */
.section {
    padding: 80px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.about-content .about-text {
    width: 55%;
    text-align: left;
}

.about-content img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 40px;
}

/* Services Section */
.services-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 23%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #777;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.portfolio-item h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #333;
}

.portfolio-item p {
    font-size: 16px;
    color: #777;
}

/* Blog Section */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.blog-item p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.btn-secondary {
    text-decoration: none;
    color: #fff;
    background-color: #ff7f50;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ff5722;
}

/* Contact Section */
.contact {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-btn {
    text-decoration: none;
    color: #fff;
    background-color: #111;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #ff7f50;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #fff;
}
