* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6); /* Slight glow on all text */
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* 3D effect for containers */
.service-item, .portfolio-item, #about, #contact {
    background: #1e1e1e; /* Dark grey for cards */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #ffffff; /* White text */
    border: 1px solid #e53935; /* Red border */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* 3D shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

.service-item:hover, .portfolio-item:hover, #about:hover, #contact:hover {
    transform: translateY(-10px); /* Lift on hover */
    box-shadow: 0 15px 25px rgba(229, 57, 53, 0.6); /* Increase shadow and add red glow */
}

header {
    background: #121212; /* Slightly lighter black for the header */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* 3D shadow for header */
}

nav {
    background: #1e1e1e; /* Dark grey background for navigation */
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* 3D shadow for nav */
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: #e53935; /* Red hyperlinks */
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ef5350; /* Lighter red on hover */
}

#hero {
    background: url('hero-image.jpg') no-repeat center center/cover; /* Placeholder for white logo */
    color: #ffffff; /* White text */
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5); /* 3D shadow for hero section */
}

#services, #portfolio, #about, #contact {
    padding: 50px 0;
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ffffff; /* White text for h2 */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6); /* Outer glow for h2 */
}

/* Button 3D effect */
button {
    background: #e53935; /* Red for buttons */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* 3D shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

button:hover {
    background: #d32f2f; /* Darker red on hover */
    transform: translateY(-5px); /* Lift button on hover */
    box-shadow: 0 12px 20px rgba(229, 57, 53, 0.7); /* Increase shadow and add red glow */
}

/* Form 3D effect */
input[type="text"], input[type="email"], textarea {
    background-color: #1e1e1e; /* Dark background for form inputs */
    color: #ffffff; /* White text */
    border: 1px solid #e53935; /* Red border */
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); /* 3D shadow for inputs */
    transition: box-shadow 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    outline: none;
    border-color: #d32f2f; /* Darker red on focus */
    box-shadow: 0 8px 15px rgba(229, 57, 53, 0.7); /* Red shadow when focused */
}

/* Slick Carousel */
.portfolio-carousel {
    width: 100%;
    margin: 0 auto;
}

.portfolio-item {
    padding: 20px;
    background-color: #1e1e1e; /* Match dark theme */
    border-radius: 8px;
    text-align: center;
    color: #ffffff; /* White text */
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-list, .portfolio-grid {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        padding: 0;
    }
}

/* Slick Carousel Dots */
.slick-dots li button:before {
    color: #e53935; /* Red dots for carousel */
}

.slick-prev, .slick-next {
    color: #e53935; /* Red arrows for carousel */
}
