/* General Reset */
* {
    /* margin: 0px; */
    
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: #f3f0f0;
    box-shadow: 0 2px 20px rgba(128, 80, 80, 0.5);
    position: sticky;
    top: 0;
       margin-bottom: 30px;
    z-index: 1000;
    margin-left: 60px;
    margin-right: 60px;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #004d40;
}

.logo span {
    color: #00c853;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ac3ca8;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=1470&ixlib=rb-4.0.3') no-repeat center center/cover;
                /* url('images/my-image.jpeg') no-repeat center center/cover; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 30px;
    margin-left: 60px;
    margin-right: 60px;
}

.hero h1 {
    font-size: 50px;
   margin-top: 20px;
   margin-bottom: 10px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.primary {
    background: #00c853;
    color: #fff;
}

/* .secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
} */

.primary:hover {
    background: #00a844;
}

/* Services Grid */
.services {
    padding: 40px 4%;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(174, 134, 164);
    transition: transform 0.3s;
    border-radius: 10px;
    margin: 15px;
    text-decoration:none;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* .icon {
    font-size: 40px;
    margin-bottom: 15px;
} */

/* Footer */
/* footer {
    background: #004d40;
    color: #fff;
    text-align: center;
    padding: 20px;
} */

/* --- DROPDOWN NAVIGATION STYLES --- */

/* Position the container */
.mc-dropdown {
    position: relative;
    display: inline-block;
}

/* Hide the menu by default */
.mc-dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff; /* Matches a clean white theme */
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    text-align: left;
}

/* Style the links inside the dropdown */
.mc-dropdown-menu li a {
    color: #333 !important; /* Forces text color for visibility on white bg */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

/* Hover effect on dropdown links */
.mc-dropdown-menu li a:hover {
    background-color: #00c853; /* Using your professional green */
    color: white !important;
}

/* Show the menu when hovering over the parent list item */
.mc-dropdown:hover .mc-dropdown-menu {
    display: block;
}

/* Optional: Add a little spacing so it doesn't touch the top bar */
.mc-dropbtn {
    cursor: pointer;
}
h3{
    margin-top: 15px;
    margin-bottom: 15px;
}

/* --- FOOTER DESIGN --- */
.mc-footer {
    background-color: #323330; /* Deep corporate green */
    color: #ffffff;
    padding: 25px 2% 10px;
    font-family: 'Poppins', sans-serif;
    margin-left: 50px;
    margin-right: 50px;
}

.mc-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.mc-footer-col h3, 
.mc-footer-col h4 {
    color: #00c853; /* Professional green accent */
    margin-bottom: 15px;
    text-align: center;
}

.mc-footer-col p {
    font-size: 14px;
    line-height: 1.4;
    color: #cbd5e0;
    text-align: center;
}

.mc-footer-col ul {
    list-style: none;
    padding: 0;
    text-align: center;
    
}

.mc-footer-col ul li {
    margin-bottom: 10px;
    text-align: center;
    
}

.mc-footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    text-align: center;
    
    
    
}

.mc-footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.mc-footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mc-footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

a {
    text-decoration: none; 
}
