/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Adds a very soft shadow beneath navbar */
}

header .logo {
    display: flex;
    align-items: center;
}

header h1 {
    font-size: 24px; /* Slightly scaled down so it stays neat on one line */
    color: #00A900; 
    font-weight: 600;
    transition: color 0.3s;
}

header h1:hover {
    color: #000000;
}

header nav a {
    color: #000000;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #00a800;
}

/* Precise Logo Control */
.nav-logo {
    height: 60px;            
    width: auto;             
    max-width: 180px;        
    object-fit: contain;     
    display: block;
}

/* Hero Section */
.hero {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 170px 10px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s, color 0.3s;
}

.cta-btn:hover {
    background-color: #00a900;
    color: #ffffff;
}

/* Content Sections */
.content-section {
    padding: 60px 8%; /* Adjusted padding so text doesn't look squished vertically */
    text-align: center;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #00a900;
}

.content-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ffffff;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 15px;
}

.gray-bg {
    background-color: #00A900;
}

.gray-bg p {
    color: #ffffff; /* Ensures text inside green section is perfectly readable */
}

/* Services Layout Grid */
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center; /* Aligns text left inside boxes for readability */
}

/* Adjusted to h4 to match your HTML elements */
.service-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00A900;
}

.service-box p {
    color: #555555;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #00a900;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn img {
    width: 100%;
    height: 100%;
    display: block;
}