/* Base Styles */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #1b3526;
  --accent-color: #f2e5c5;
  --text-dark: #333;
  --text-light: #f8f8f8;
  --background-light: #fcfbf5;
  --border-radius: 20px;
  --box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.page-container {
  display: flex;
  flex-direction: column;
  background-color: var(--accent-color);
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--accent-color);
}

.logo-and-name {
  display: flex;
  align-items: center;
}

.logo-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-name {
  padding-left: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.main-navigation .menu-items {
  display: flex;
  list-style: none;
}

.menu-item {
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-item a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: color 0.3s;
}

.menu-item a:hover, .menu-item.active a {
  color: var(--primary-color);
}

.search-icon-image {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.search-icon-image:hover {
  background-color:white;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.4);
  color:white;
}

/* Hero Section Styles */
.hero-section {
  width: 100%;
  position: relative;
  margin-top: -80px; /* Pulls the hero up under the header */
  background-color: var(--accent-color);
  margin-top:30px;
}

.hero-image {
  width: 97%;
  height: 100vh;
  max-height: 550px;
  background-image: url("empowering\ women.avif");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  left: 30px;
}
.hero-content {
  position: relative;
  left:0;
  z-index: 0;
  max-width: 1200px;
  margin-left:50px;
  color: white;
  width: 100%;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  max-width: 70%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Split Layout Styles */
.story-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-image {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.story-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.story-content {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  text-align: left;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .story-content {
      text-align: center;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 300px;
  margin: 20px;
  min-width: 250px;
}
.footer-column-1 {
  flex: 1 1 300px;
  margin-left:0;
  margin-bottom:10px;
  min-width: 250px;
  font-weight:bold;
}

.footer-logo {
  width: 120px;
  height:120px;
  margin-bottom:0;
  border-radius: 70px;

}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.footer-description, .footer-column p, .footer-column a {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.6;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2f4f4f;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #cccccc;
}

.identity-section {
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  background: #f7f3e7;
  padding: 60px 20px;
  color: #333;
}

.section-header h4 {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
}

.section-header h2 span {
  color: #4a7d2c;
}

.values-box {
  background: #7da23d;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 20px;
  border-radius: 16px;
  color: #fff;
  margin: 40px 0;
}

.value-item {
  text-align: center;
}

.value-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.value-item p {
  font-weight: 600;
}

.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 900px;
}

.vision-mission h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.vision-mission p {
  font-size: 16px;
  line-height: 1.6;
}

.team-section {
  padding-top: 40px;
}

.team-section h4 {
  color: #777;
  font-size: 14px;
  margin-bottom: 8px;
}

.team-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.member {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.member h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.member .role {
  font-size: 14px;
  color: #7da23d;
  margin-bottom: 10px;
}

.member p {
  font-size: 14px;
  color: #555;
}

.partner-btn {
  background: #4a7d2c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.partner-btn:hover {
  background: #3d6824;
}

/* Maintenance Banner Styles */
.maintenance-banner {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #ff9800;
    color: black;
    padding: 3px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 9999;
    overflow: hidden;
}

.top-banner {
    top: 0;
}

.bottom-banner {
    bottom: 0;
}

.banner-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Adjust body padding if you have a fixed header */
body {
    padding-top: 40px; /* Adjust this value based on your header height */
    padding-bottom: 40px; /* Space for bottom banner */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px; /* Above the bottom banner */
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #3e8e41;
    transform: translateY(-3px);
}

/* Adjust body padding if you have a fixed header */
body {
    padding-top: 40px; /* Adjust this value based on your header height */
    padding-bottom: 30px; /* Space for bottom banner */
}
/* Logo Link Styles */
.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

/* If you want the company name to be clickable too: */
.logo-and-name {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-and-name a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
