* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}

/* Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    color: #fff;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

nav {
    display: flex;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(to right, #000, #333);
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 25px;
    background: #ff6600;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* Responsive Menu */
@media (max-width: 768px) {

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        margin-top: 10px;
    }

    nav a {
        margin: 10px 0;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }
}
/* Section Titles */
section h2 {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 32px;
}

/* Services Section */
.services {
    padding: 40px 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #ff6600;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 40px 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    background: #000;
    color: #fff;
    min-height: 180px;
    display: block;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 60%);
    color: #fff;
}

.project-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.project-info p {
    margin: 0 0 10px;
    font-size: 14px;
    opacity: 0.95;
}

.project-info .btn {
    padding: 8px 12px;
    background: #ff6600;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fade 1.5s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fade 2.5s forwards;
}

.fade-in-btn {
    opacity: 0;
    animation: fade 3s forwards;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* About Page */
.small-hero {
    padding: 80px 20px;
}

.about-section {
    padding: 40px 20px;
}

.about-text {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

.about-text h2 {
    margin-top: 25px;
    color: #ff6600;
}
.full-services {
    padding: 50px 20px;
}
/* Portfolio Page */
.portfolio-section {
    padding: 40px 20px;
}
/* Contact Page */
.contact-section {
    padding: 40px 20px;
    text-align: center;
}

.contact-box {
    background: #fff;
    max-width: 500px;
    margin: auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float a {
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    transition: 0.2s ease;
}
