/* Basic Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #f4f4f4; text-align: center; }

/* Fix for Bullet Points in Lists */
ul {
    list-style-type: disc !important; /* Ensures bullets appear */
    padding-left: 20px; /* Adds indentation */
    margin-bottom: 10px;
}

li {
    font-size: 1.1em;
    text-align: left;
    margin-bottom: 5px;
}

/* Fix for Lists Inside .info-section */
.info-section ul {
    list-style-type: disc !important; 
    padding-left: 25px;
}

.info-section li {
    margin-bottom: 5px;
}

/* Remove list-style only for specific sections like locations */
.locations-column ul {
    list-style: none; /* This only affects the location links */
}

/* Header */
header { background: #002366; color: white; padding: 15px 20px; position: fixed; width: 100%; top: 0; z-index: 1000; }
.container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: auto; }

.logo a { color: white; font-size: 24px; text-decoration: none; }

/* Navigation Menu */
nav { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 15px; }
.nav-links a { color: white; text-decoration: none; font-size: 18px; }

/* Responsive Menu */
.hamburger { display: none; font-size: 28px; cursor: pointer; }
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background: #002366; }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }
}

/* Hero Section */
.hero-section { padding: 80px 20px 40px; margin-top: 60px; }
h1 { font-size: 2.5em; margin-bottom: 10px; }

/* Call Button */
.call-button { display: inline-block; background-color: #28a745; color: white; padding: 12px 20px; font-size: 1.2em; text-decoration: none; border-radius: 5px; }
.call-button:hover { background-color: #218838; }

/* Sections */
.steps-section, .about-section, .services-section, .contact-section { padding: 40px; background: #fff; }
.steps-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    min-height: 150px;
}

.step-box, .service-box { background: white; border: 2px solid #ddd; padding: 20px; width: 220px; text-align: center; border-radius: 5px; box-shadow: 2px 2px 10px rgba(0,0,0,0.1); }

/* Footer */
footer { background: #333; color: white; padding: 20px; text-align: center; }

/* Information Section */
.info-section {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: left;
    line-height: 1.6;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002366;
}

.info-section p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .info-section {
        padding: 30px 15px;
    }

    .info-section h2 {
        font-size: 1.8em;
    }

    .info-section p {
        font-size: 1em;
    }
}

/* About Us Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background: #fff;
    max-width: 900px;
    margin: auto;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 2em;
    font-weight: bold;
    color: #002366;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1em;
    text-align: justify;
    color: #333;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        max-width: 100%;
    }
}

/* Call Button in Navigation */
.nav-call-button {
    background-color: #006400;
    color: white;
    padding: 8px 15px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 20px;
}

.nav-call-button:hover {
    background-color: #218838;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
}

/* Ensure all elements fit within the viewport */
* {
    max-width: 100%;
    overflow-x: visible;
}

/* Force body to fit within screen width */
body {
    width: 100vw;
}

/* Increase space between call button and subheading */
.call-button {
    margin-top: 20px;
}

/* Sticky Mobile Call Button */
.mobile-call-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #28a745;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
    text-align: left;
}

.locations-column {
    padding: 0;
}

.locations-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-column li {
    padding: 5px 0;
}

.locations-column a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

/* Fix for Bullet Points in Lists */
.info-section ul,
.steps-section ul,
.about-section ul,
.services-section ul,
.contact-section ul {
    list-style-type: disc !important; /* Ensures bullets appear */
    padding-left: 20px; /* Adds indentation */
    margin-bottom: 10px;
}

li {
    font-size: 1.1em;
    text-align: left;
    margin-bottom: 5px;
}

/* Remove list-style only for specific sections like locations */
.locations-column ul {
    list-style: none; /* This only affects the location links */
}

p {
  text-align: justify;
}