     * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #000;
    width: 100%;
    color: #fff;
}

header li a{
    color: #fff !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    height: 100px; /* Adjust as needed */
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff; /* A blue color for hover, adjust to your brand color */
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('slike/hero-section.png') no-repeat center center/cover; /* Replace 'hero-bg.jpg' with your background image */
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btnPN {
    display: inline-block !important;
    background-color: #007bff !important; /* Example blue, adjust to your brand color */
    color: #fff !important;
    padding: 12px 30px !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    transition: background-color 0.3s ease !important;
}

.btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Sections General Styling */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

/* About Us */
.about-us {
    background-color: #fff;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #555;
}

/* Services */
.services {
    background-color: #f1f1f1;
}

.service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.service-list ul {
    list-style: none;
    text-align: left;
}

.service-list ul li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.service-list ul li i {
    color: #28a745; /* Green checkmark */
    margin-right: 10px;
}

/* Portfolio */
.portfolio {
    background-color: #fff;
}

.portfolio p {
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #555;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* Contact Us */
.contact-us {
    background-color: #f1f1f1;
    padding-bottom: 100px; /* Give some space for the footer */
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: left;
}

.gallery-2{
    margin-top: 25px;;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.contact-info a i {
    margin-right: 10px;
    color: #007bff; 
}

.contact-info a{
    color: #333 !important;
    text-decoration: none !important;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
}

.form-group textarea {
    resize:vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9em;
}
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
    }
}
@media (max-width: 768px) {


    nav ul {
        margin-top: 15px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2em;
    }

    .service-list {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    nav ul li {
        margin: 0 5px;
    }
}