* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: Arial, sans-serif;
padding-top: 70px;
background-color: #f9f9f9;
color: #333;
}

.contact-cta {
background-color: #111;
color: white;
padding: 60px 20px;
text-align: center;
}

/* HEADER SECTION 
.nav-wrapper {
background-color: #000;
padding: 10px 20px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-logo {
display: flex;
align-items: center;
color: #fff;
font-weight: bold;
font-size: 1.2em;
}

.nav-logo img {
height: 40px;
margin-right: 10px;
}

.menu-toggle {
background-color: #fff;
border: none;
padding: 10px;
cursor: pointer;
border-radius: 4px;
transition: background 0.3s;
}

.menu-toggle:hover {
background-color: #eee;
}

.dropdown-menu {
display: none;
flex-direction: column;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 15px;
position: absolute;
top: 60px;
right: 20px;
width: 230px;
}

.dropdown-menu a {
color: #000;
text-decoration: none;
padding: 10px 0;
}

.dropdown-menu hr {
border: none;
border-top: 1px solid #ccc;
margin: 8px 0;
}

.dropdown-menu.show {
display: flex;
animation: fadeDown 0.4s ease;
} */

@keyframes fadeDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* MAIN SECTION */
.main-section {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}

.main-section h1 {
font-size: 2.5em;
margin-bottom: 30px;
text-align: center;
color: #1a1a1a;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.service-item {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
justify-content: space-between;
}

.caption-wrapper {
display: flex;
align-items: center;
margin-bottom: 15px;
}

.caption-wrapper .line {
width: 4px;
height: 24px;
background-color: #000;
margin-right: 10px;
}

.caption-wrapper h2 {
font-size: 1.3em;
color: #333;
margin: 0;
}

.service-item img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 15px;
}

.service-item p {
line-height: 1.6;
font-size: 0.95em;
margin-bottom: 20px;
}

.see-more-btn {
display: inline-block;
padding: 10px 20px;
border: 2px solid #000;
background-color: transparent;
color: #000;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
text-align: center;
transition: 0.3s ease;
align-self: flex-start;
}

.see-more-btn:hover {
background-color: #000;
color: #fff;
}

/* FOOTER SECTION 
footer {
background-color: #000;
color: #fff;
text-align: center;
padding: 30px 10px;
font-size: 14px;
} */

/* Responsive Menu Only */
@media (max-width: 768px) {
.dropdown-menu {
right: 10px;
width: 90%;
}
}
