body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #fff;
        }
        .menu-container {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1000;
            margin: 0;
        }
        .menu-btn {
            background: #228B22;
            color: #fff;
            padding: 16px 32px;
            font-size: 18px;
            border: none;
            border-radius: 30px 30px 0 30px;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: background 0.2s;
        }
        .menu-btn:hover {
            background: #006400;
        }
        .menu-dropdown {
            display: none;
            position: absolute;
            top: 60px;
            right: 0;
            background: #2e8b57;
            border-radius: 0 0 30px 30px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            min-width: 180px;
            animation: curveDown 0.3s ease;
            flex-direction: column;
        }
        .menu-dropdown.show {
            display: flex;
        }
        .menu-dropdown a {
            color: #fff;
            padding: 12px 24px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #228B22;
            transition: background 0.2s;
        }
        .menu-dropdown a:last-child {
            border-bottom: none;
        }
        .menu-dropdown a:hover {
            background: #006400;
            border-radius: 0 0 30px 30px;
        }
        @keyframes curveDown {
            from { opacity: 0; transform: translateY(-20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Container reused globally */

.country-section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.country-container {
  display: flex;
  width: 100%;
  margin: 0;
  position: relative;
}

.country-content {
  flex: 0 0 50%;
  padding: 50px;
  background-color: #C7C4BF;
  position: relative;
  z-index: 1;
}

.country-content::after {
  content: '';
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  width: 100px;
  background: #C7C4BF;
  border-radius: 0 100% 100% 0 / 50%;
  z-index: -1;
}

.country-title {
  color: #2e7d32;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.country-highlight {
  color: #031d42;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.country-description p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.country-features ul {
  padding-left: 25px;
}

.country-features li {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  list-style-type: disc;
}

.country-map {
  flex: 0 0 50%;
  background-color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 0;
}

.map-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-map-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

/* Responsive Design */
@media (max-width: 992px) {
  .country-container {
    flex-direction: column;
  }
  
  .country-content {
    padding: 40px;
  }
  
  .country-content::after {
    display: none;
  }
  
  .country-map {
    padding: 30px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .country-content {
    padding: 30px;
  }
  
  .country-title {
    font-size: 2.4rem;
  }
  
  .country-highlight {
    font-size: 1.3rem;
  }
  
  .country-features li {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .country-content {
    padding: 25px;
  }
  
  .country-title {
    font-size: 2rem;
  }
  
  .country-map {
    padding: 20px;
  }
}



        /* Hero Section */
        .hero {
            background: url('../images/agrologo.png') center/cover no-repeat;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(34,139,34,0.7);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .cta-btn {
            background: #ffd700;
            color: #228B22;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            margin-top: 20px;
            display: inline-block;
            transition: background 0.2s, transform 0.2s;
        }
        .cta-btn:hover {
            background: #fff;
            transform: scale(1.08);
        }
        
.what-we-do {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-header h2 {
    color: #031d42;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
}

.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    position: relative;
    width: 280px;
    height: 180px;
    perspective: 1000px;
    cursor: pointer;
}

.feature-front,
.feature-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-front {
    background: #2e7d32;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    transform: rotateY(0deg);
}

.feature-back {
    background: white;
    transform: rotateY(180deg);
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
}

.feature-back h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-back p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.feature:hover .feature-front {
    transform: rotateY(180deg);
}

.feature:hover .feature-back {
    transform: rotateY(360deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature {
        width: 240px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .feature {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 120px;
    }
    
    .feature-front,
    .feature-back {
        position: relative;
        transform: none;
        height: auto;
    }
    
    .feature:hover .feature-front,
    .feature:hover .feature-back {
        transform: none;
    }
    
    .feature-back {
        display: none;
    }
    
    .feature.active .feature-back {
        display: flex;
        margin-top: 10px;
    }
}


        .impact {
            background: #fff;
            padding: 40px 0;
            text-align: center;
        }
        .support {
            background: #e8f5e9;
            padding: 40px 0;
            text-align: center;
        }
        footer {
            background: #228B22;
            color: #fff;
            padding: 30px 0 10px 0;
            text-align: center;
        }
        .footer-links {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ffd700;
            margin: 0 10px;
            text-decoration: none;
        }
        .footer-social a img {
            width: 28px;
            height: 28px;
            margin: 0 6px;
            border-radius: 50%;
            background: #fff;
        }