:root {
--green: #0e4d36;
--gold: #B89B3C;
--white: #ffffff;
--dark: #1a1a1a;
}

* {
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'Segoe UI', sans-serif;
}

body {
background: var(--white);
color: var(--dark);
}

.navbar {
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background: var(--white);
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.logo {
font-weight:bold;
color: var(--green);
letter-spacing:2px;
}

.navbar nav a {
margin-left:25px;
text-decoration:none;
color: var(--dark);
font-weight:500;
transition:0.3s;
}

.navbar nav a:hover {
color: var(--gold);
}

.hero {
    height: 95vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background:
        linear-gradient(
            to right,
            rgba(14,77,54,0.9) 0%,
            rgba(14,77,54,0.85) 35%,
            rgba(14,77,54,0.6) 55%,
            rgba(14,77,54,0.0) 75%
        ),
        url('../images/hero1.jpg') right center/cover no-repeat;
    color: white;
}

.hero h1 {
font-size:3rem;
margin-bottom:20px;
}

.btn-gold {
background: var(--gold);
color: var(--white);
padding:14px 30px;
border:none;
border-radius:30px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn-gold:hover {
background: #a88932;
}

.container {
padding:80px 8%;
}

.page-hero {
background: var(--green);
color: var(--white);
padding:60px 8%;
text-align:center;
}

.stats {
display:flex;
justify-content:center;
gap:40px;
padding:60px;
background:#f9f9f9;
}

.stat-card {
background: var(--white);
padding:30px;
border-radius:15px;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
text-align:center;
border-top:5px solid var(--gold);
}

.service-grid {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card, .compliance-card {
background: var(--white);
padding:30px;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
border-left:5px solid var(--gold);
transition:0.3s;
}

.service-card:hover,
.compliance-card:hover {
transform:translateY(-10px);
}

.value-list li {
margin:10px 0;
color: var(--green);
}

.contact-form {
display:flex;
flex-direction:column;
gap:15px;
margin-top:30px;
}

.contact-form input,
.contact-form textarea {
padding:15px;
border:1px solid #ddd;
border-radius:8px;
}

footer {
background: var(--green);
color: var(--white);
text-align:center;
padding:30px;
margin-top:60px;
}

.projects {
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 10px;
}

.section-header p {
    color: #555;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: var(--green);
    margin-bottom: 5px;
}

.project-info p {
    color: var(--gold-mid);
    font-weight: 500;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card:hover {
    transform: translateY(-6px);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 48px;
}

.about-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 50px;
align-items: start;
}

.about-highlight {
background: #f4f4f4;
padding: 30px;
border-left: 5px solid var(--gold);
border-radius: 8px;
box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.about-highlight h3 {
color: var(--green);
margin-bottom: 15px;
}

.about-highlight p {
margin-bottom: 10px;
font-size: 0.95rem;
}

@media (max-width: 900px) {
.about-grid {
grid-template-columns: 1fr;
}
}

.vision-section {
background: var(--green);
color: var(--white);
padding: 80px 0;
}

.vision-section h2 {
margin-bottom: 20px;
}


.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 30px;
}

.values-grid div {
background: white;
padding: 20px;
border-top: 4px solid var(--gold);
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
border-radius: 6px;
font-weight: 500;
}

.logo img {
    height: 45px;
}

@media (min-width: 992px) {
    .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {

.hero {
    height: auto;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 1.8rem;
}

.hero p {
    font-size: 0.95rem;
}

}

@media (max-width: 768px) {

.stats {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
}

}


@media (max-width: 768px) {

.hero {
    }

.container {
    padding: 50px 5%;
}

.page-hero {
    padding: 40px 5%;
}

}

@media (max-width: 768px) {

.whatsapp-float {
    width: 55px;
    height: 55px;
}

.whatsapp-float img {
    width: 36px;
}

}

/* HAMBURGER DEFAULT HIDDEN */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--green);
    transition: 0.3s ease;
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {

.navbar {
    position: relative;
}

.hamburger {
    display: flex;
}

.navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
    padding: 20px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar nav a {
    margin: 12px 0;
}

.navbar nav.active {
    display: flex;
}

}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gold-text {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--green);
}

.service-card ul {
margin-top: 15px;
padding-left: 20px;
}

.service-card li {
margin-bottom: 8px;
color: var(--green);
font-weight: 500;
}





