* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation */
nav {
    background: #004aad;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 5%;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1562564055-71e051d33c19?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn {
    background: #f37021; /* Orange for action */
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Services Section */
#services {
    padding: 50px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #004aad;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}
.service-text {
    text-align: justify; /* This makes the edges look clean like a newspaper */
    text-justify: inter-word;
    line-height: 1.8; /* This adds space so the words aren't squashed */
    font-size: 15px;
    color: #444;
    padding: 10px;
}

.service-card {
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* Adds a soft professional shadow */
}
#contact {
    padding: 50px 5%;
    background-color: #fff;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #004aad;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-action {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.call-btn {
    background-color: #28a745; /* Green for calls */
}

.email-btn {
    background-color: #004aad; /* Blue for email */
}

/* Makes buttons stack on very small phones */
@media (max-width: 400px) {
    .contact-action {
        flex-direction: column;
    }
}
.contact-info {
    text-align: left;
    display: inline-block; /* Keeps it centered as a block but text stays left */
}
.btn:active {
    transform: scale(0.98); /* Shrinks slightly when tapped */
    filter: brightness(90%); /* Gets slightly darker when tapped */
}
.call-btn {
    background-color: #28a745 !important; /* Green */
}

.email-btn {
    background-color: #004aad !important; /* Blue */
}

.whatsapp-btn {
    background-color: #f37021 !important; /* Orange */
}

.btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    font-weight: bold;
}
.logo img {
    height: 60px; /* Adjust this to make it bigger or smaller */
    width: auto;
    border-radius: 50%; /* Ensures it stays perfectly round */
    display: block;
}

nav {
    display: flex;
    align-items: center; /* Keeps the logo and links lined up */
    justify-content: space-between;
    padding: 10px 20px;
}
/* Style for the logo container */
.logo img {
    height: 55px; /* Adjust this to fit your nav bar height */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05); /* Small zoom effect when touched */
}

/* Ensure the nav bar handles the logo correctly */
nav {
    background-color: #0056b3; /* Your blue color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #0056b3; /* Your blue color */
}

.logo img {
    height: 50px; /* This keeps the logo small enough for the bar */
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* This centers the logo and links vertically */
    padding: 8px 20px;
    background-color: #0056b3; 
}
