/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin: 0;
}

p {
  margin-bottom: 24px; /* Adjust the pixel (px) value to change the spacing */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #172539;
    color: #fff;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    img{height:120px}.nav-links{display:flex;gap:20px;list-style:none}.nav-links a{color:var(--white);text-decoration:none}
}


/* Hero Section */
.hero {
    background: url(Pics/Skyline.jpg) center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #1e90ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Services */
.services {
    padding: 60px 20px;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    background: #f4f4f4;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
}

/* About */
.about {
    padding: 60px 20px;
    background: #eaf2f8;
    text-align: center;
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #172539;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

ul.custom-list {
    list-style-position: outside;   /* bullet outside text block */
    padding-left: 1.5rem;          /* control distance from left edge */
    text-align: center;
    margin: 0;
    }

ul.custom-list li {
      line-height: 1.5;              /* vertical spacing */
      margin-bottom: 0.25rem;        /* space between items */
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Hide toggle button on desktop */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #0a3d62;
        width: 200px;
        flex-direction: column;
        gap: 0;
        display: none;
        padding: 10px 0;
    }

    .nav-links li {
        text-align: center;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: white;
    }
}
