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

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #111;
}

.logo img {
  width: auto;
  height: 70px;
  border-radius: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a.active {
  color: #00a46c;
  font-weight: 700;
  border-bottom: 2px solid #00a46c;
}


.nav-links li a.active {
  color: #00a46c;         
  font-weight: 700;       
  border-bottom: 2px solid #00a46c; 
  padding-bottom: 4px;
}

.nav-links li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00a46c;
}

.cta .btn-outline {
  border: 2px solid #00a46c;
  padding: 8px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  color: #00a46c;
  transition: all 0.3s ease;
}

.cta .btn-outline:hover {
  background-color: #ffffff;
  color: #fff;
}


/* Highlight navbar link in green */
.nav-links a.highlight-green {
  color: #00a46c; /* your brand green */
  font-weight: 700; /* slightly bolder than other links */
  border-bottom: 2px solid #00a46c; /* optional underline for emphasis */
}

.nav-links a.highlight-green:hover {
  color: #008f5a; /* darker green on hover */
}


/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 100px;
  flex-wrap: wrap;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 80px;
  
}

.btn-primary {
  background-color: #00a46c;
  padding: 14px 28px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-illustration {
  flex: 1;
  text-align: right;
}

@media (max-width: 768px) { /* Adjust breakpoint as needed for mobile */
  .hero-section {
    flex-direction: column; /* Stack elements vertically */
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 20px; /* Add some space between the content and illustration */
  }

  .hero-illustration {
    width: 100%;
    text-align: center; /* Center the image on mobile */
  }

  .cta-button {
    width: auto; /* Or set a specific width */
    display: inline-block;
  }
}


/* Services Page Hero Alignment */
.hero.inner-hero .hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero.inner-hero h1 {
  text-align: center;
}

.hero.inner-hero p {
  text-align: center;
}



.btn-primary:hover {
  background-color: #008f5a;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #00a46c;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px; 
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.feature p {
  margin-top: 6px;   
  font-size: 16px;    
  font-weight: 600;   
}


/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 15px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: none;
    
  }
  @media (max-width: 900px) {
  .logo img {
    height: 35px;   /* shrink logo for mobile */
  }

  .logo span {
    font-size: 12px; /* optional: shrink company text too */
  }
}


  .nav-links li a {
    font-size: 16px;
  }

  .nav-menu.active .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .cta {
    display: none;
  }
}

/* Compliance Section */
.compliance {
  background: #f4f9f7;
  padding: 60px 40px;
  text-align: center;
}

.compliance h2 {
  font-size: 38px;
  margin-bottom: 40px;
  color: #00a46c;
}

.compliance-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.compliance-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.compliance-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.compliance-card p {
  font-size: 14px;
  color: #555;
}

.policies {
  margin-top: 20px;
}

.policies h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.policies ul {
  list-style: none;
  padding: 0;
}

.policies ul li {
  margin-bottom: 8px;
}

.policies ul li a {
  color: #00a46c;
  text-decoration: none;
  font-weight: 500;
}
.policies ul li a:hover {
  text-decoration: underline;
}


/* Platforms */
.platforms {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.platforms h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a2b49;
}

.platforms p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-icons a {
  text-decoration: none;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.platform-icons a:hover {
  transform: scale(1.1);
}

.platform-icons img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.platform-icons span {
  font-size: 14px;
  font-weight: 600;
}

.platform-icons a:hover {
  transform: scale(1.05);
  color: #00a46c; /* your green brand */
}


/* Footer */
.footer {
  background: #111;
  color: #eee;
  padding: 60px 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #00a46c;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  ;
}

.footer-col ul li a {
  color: #ccc; /* Change this line to your brand green */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00a46c;
}

/* Change color of phone and email links in the footer */
.footer-col p a {
  color: #00a46c;
}

.socials a {
  color: #ccc;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.3s;
}

.socials a:hover {
  color: #00a46c;
}


.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}


/* Inner Hero (for About Us and other inner pages) */
.inner-hero {
  background: #00a46c;
  color: #fff;
  padding: 100px 350px;
  text-align: center;
}
.inner-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.inner-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-intro {
  background: #00a46c;
  padding: 80px 20px;
  text-align: center; /* ✅ ensures center alignment */
}

.about-intro h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.about-intro .subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto; /* ✅ keeps text centered even if multi-line */
  line-height: 1.6;
}


/* Section Defaults */
section {
  padding: 60px 20px;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0f5132;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* About Overview */
.about-overview p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

/* Mission & Vision */
.mission-vision {
  background: #f8f9fa;
}
.mission-vision .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mission-vision .col {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.mission-vision h3 {
  color: #00a46c;
  margin-bottom: 15px;
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.value-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e6e6e6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.value-card h4 {
  color: #00a46c;
  margin-bottom: 10px;
}

/* Leadership Section */
.leadership {
  background: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.leadership h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.leadership .section-intro {
  font-size: 1.rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.team-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.team-card p {
  font-size: 1rem;
  color: #777;
}


/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #00a46c 100%);
  color: #fff;
  padding: 80px 20px;
}
.cta-section h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cta-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.cta-section .btn-primary {
  background: #fff;
  color: #00a46c;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-section .btn-primary:hover {
  background: #e6e6e6;
  color: #0f5132;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision .two-col {
    grid-template-columns: 1fr;
  }
  .inner-hero h1 {
    font-size: 2rem;
  }
}

/* Services Page - What We Offer */
/* --- Services Page Specific CSS --- */

.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #222;
  display: block;
  margin: 0px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon img {
  width: 70px;
  height: auto;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}



/* Contact Section */
.contact-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-info h2 {
  color: #00a46c;
  margin-bottom: 15px;
}

.contact-info p, .contact-info a {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.contact-info a {
  text-decoration: none;
  color: #00a46c;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #008f5a;
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form h2 {
  color: #00a46c;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00a46c;
  outline: none;
}

.contact-form button {
  width: fit-content;
  padding: 12px 30px;
  background-color: #00a46c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #008f5a;
}

/* Map Section */
.map-section {
  padding: 60px 20px;
  text-align: center;
}

.map-section h2 {
  color: #00a46c;
  font-size: 2rem;
  margin-bottom: 30px;
}

.map-placeholder {
  background: #e6e6e6;
  height: 400px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-info, .contact-form {
    padding: 25px 15px;
  }

  .contact-form button {
    width: 100%;
  }
}


/* Investor Corner Page */

/* Quick Access Tiles */
.investor-tiles {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.investor-tiles h2 {
  color: #00a46c;
  font-size: 2rem;
  margin-bottom: 40px;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.tile-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 15px;
  text-decoration: none;
  color: #111;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.tile-card i {
  font-size: 2.2rem;
  color: #00a46c;
  margin-bottom: 15px;
}

.tile-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #00a46c;
}

.tile-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

/* Important Updates */
.investor-updates {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.investor-updates h2 {
  color: #00a46c;
  font-size: 2rem;
  margin-bottom: 30px;
}

.updates-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.updates-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.updates-list li a {
  color: #00a46c;
  text-decoration: none;
  font-weight: 600;
}

.updates-list li a:hover {
  text-decoration: underline;
}

/* Investor Support Section */
.investor-support {
  background: #f4f9f7;
  padding: 80px 20px;
  text-align: center;
}

.investor-support h2 {
  color: #00a46c;
  font-size: 2rem;
  margin-bottom: 20px;
}

.investor-support p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.6;
}

.investor-support .btn-primary {
  background-color: #00a46c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.investor-support .btn-primary:hover {
  background-color: #008f5a;
}

/* Responsive */
@media (max-width: 768px) {
  .tiles-grid {
    grid-template-columns: 1fr;
  }
  .investor-support h2,
  .investor-tiles h2,
  .investor-updates h2 {
    font-size: 1.8rem;
  }
}


/* Compliance Logos Section */
.compliance-logos {
  background: #f4f9f7;
  padding: 80px 20px;
  text-align: center;
}

.compliance-logos h2 {
  font-size: 2rem;
  color: #00a46c;
  margin-bottom: 15px;
}

.compliance-logos .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.compliance-grid-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.compliance-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: px;
  border: 1px solid #e6e6e6;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.compliance-card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.compliance-card h4 {
  font-size: 1rem;
  color: #00a46c;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .compliance-logos h2 {
    font-size: 1.8rem;
  }
  .compliance-card h4 {
    font-size: 0.95rem;
  }
}



/* Downloads Section */
.downloads-intro {
  text-align: center;
  padding: 80px 20px;
}

.downloads-intro h1 {
  color: #00a46c;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.downloads-intro p {
  color: #555;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.downloads-section {
  margin-bottom: 60px;
}

.downloads-section h2 {
  font-size: 1.8rem;
  color: #00a46c;
  margin-bottom: 0px;
  text-align: center;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.download-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.download-card h3 {
  color: #00a46c;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.download-card p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
}

.download-card .btn-primary {
  display: inline-block;
  margin: 5px 0;
  padding: 12px 25px;
  background-color: #00a46c;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-card .btn-primary:hover {
  background-color: #008f5a;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .downloads h2 {
    font-size: 1.8rem;
  }
  .download-card h4 {
    font-size: 1.1rem;
  }
}

.platform-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.download-card h3 {
  font-size: 1.3rem;
  color: #00a46c;
  margin-bottom: 10px;
}

.download-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.download-card .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-card .btn-primary:hover {
  background-color: #008f5a;
  color: #fff;
}


.downloads-support-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f4f9f7;
}

.downloads-support-section h2 {
  font-size: 2rem;
  color: #00a46c;
  margin-bottom: 15px;
}

.downloads-support-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.support-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.support-btn {
  background-color: #00a46c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.support-btn:hover {
  background-color: #008f5a;
}


/* Installation Page */
.installation-hero {
  background: #00a46c;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.installation-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.installation-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Defaults */
.installation-section {
  padding: 60px 20px;
}

.installation-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #00a46c;
  margin-bottom: 25px;
}

.installation-section p {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid for PDFs */
.installation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.installation-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.installation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.installation-card h4 {
  color: #00a46c;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.installation-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.installation-card a {
  display: inline-block;
  text-decoration: none;
  background-color: #00a46c;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.installation-card a:hover {
  background-color: #008f5a;
}

/* Support Section */
.installation-support {
  text-align: center;
  padding: 60px 20px;
  background: #f4f9f7;
}

.installation-support h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a46c;
}

.installation-support p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
}

.installation-support .btn-primary {
  display: inline-block;
  margin: 10px 10px 0 10px;
  text-decoration: none;
  background-color: #00a46c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.installation-support .btn-primary:hover {
  background-color: #008f5a;
}

/* Responsive */
@media (max-width: 768px) {
  .installation-hero h1 {
    font-size: 2rem;
  }

  .installation-section h2 {
    font-size: 1.6rem;
  }

  .installation-card {
    padding: 25px 15px;
  }
}


/* Homepage Our Services section */
.services-timeline {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.services-timeline h2 {
  font-size: 2.5rem;
  color: #00a46c;
  margin-bottom: 10px;
}

.services-timeline p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Timeline container */
.timeline {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
  flex-wrap: nowrap;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background: #00a46c33;
  transform: translateY(-50%);
  z-index: 1;
}

/* Timeline items */
.timeline-item {
  flex: 0 0 18%;
  background: #fff;
  border-radius: 15px;
  padding: 30px 15px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Timeline titles & descriptions */
.timeline-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #00a46c;
}

.timeline-item p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Entrance animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .timeline-item {
    flex: 0 0 20%;
  }
}

@media (max-width: 992px) {
  .timeline-item {
    flex: 0 0 22%;
  }
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline-item {
    flex: 0 0 70%;
    margin: 20px 0;
  }
  .timeline::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }
}






















/* =========================================
   General Reset & Body
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

/* =========================================
   Navbar
========================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #111;
}

.logo img {
  height: 70px;
  border-radius: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a.active,
.nav-links a.highlight-green {
  color: #00a46c;
  font-weight: 700;
  border-bottom: 2px solid #00a46c;
  padding-bottom: 4px;
}

.nav-links li a:hover,
.nav-links a.highlight-green:hover {
  color: #008f5a;
}

.cta .btn-outline {
  border: 2px solid #00a46c;
  padding: 8px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  color: #00a46c;
  transition: all 0.3s ease;
}

.cta .btn-outline:hover {
  background-color: #00a46c;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================================
   Hero Section
========================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 100px;
  flex-wrap: wrap;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 80px;
}

.btn-primary {
  background-color: #00a46c;
  padding: 14px 28px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #008f5a;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
}

/* =========================================
   Features Section
========================================= */
.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #00a46c;
  padding: 40px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.feature p {
  margin-top: 6px;
  font-size: 16px;
}

/* =========================================
   Sections & Inner Pages
========================================= */
section {
  padding: 60px 20px;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0f5132;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.inner-hero,
.about-intro,
.installation-hero,
.downloads-intro {
  text-align: center;
  color: #fff;
  padding: 100px 40px;
}

.inner-hero h1,
.about-intro h1,
.installation-hero h1,
.downloads-intro h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.inner-hero p,
.about-intro .subtitle,
.installation-hero p,
.downloads-intro p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   Services Page
========================================= */
.services-offer,
.services-timeline {
  text-align: center;
  padding: 80px 20px;
}

.services-offer h2,
.services-timeline h2 {
  color: #00a46c;
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-offer .offer-subtitle,
.services-timeline p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}




/* =========================================
   Installation Page
========================================= */
.installation-section h2 {
  text-align: center;
  color: #00a46c;
}

.installation-card {
  text-align: center;
}

/* =========================================
   Investor Corner
========================================= */
.investor-tiles h2,
.investor-updates h2,
.investor-support h2 {
  text-align: center;
}

.investor-tiles p,
.investor-support p,
.updates-list li {
  text-align: center;
}

/* =========================================
   Footer
========================================= */
.footer {
  background: #111;
  color: #eee;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #00a46c;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00a46c;
}

.socials a {
  color: #ccc;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.3s;
}

.socials a:hover {
  color: #00a46c;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

/* =========================================
   Responsive Mobile Fixes
========================================= */
@media (max-width: 992px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .hero-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 15px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: none;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .nav-menu.active .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .cta {
    display: none;
  }

  /* Inner Pages & Sections */
  .inner-hero,
  .about-intro,
  .installation-hero,
  .downloads-intro {
    padding: 60px 20px;
  }

  .inner-hero h1,
  .about-intro h1,
  .installation-hero h1,
  .downloads-intro h1 {
    font-size: 2rem;
  }

  .inner-hero p,
  .about-intro .subtitle,
  .installation-hero p,
  .downloads-intro p {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Grids & Cards */
  .offer-grid,
  .tiles-grid,
  .values-grid,
  .timeline,
  .downloads-grid,
  .installation-grid {
    grid-template-columns: 1fr;
  }

  .download-card,
  .installation-card,
  .timeline-item {
    padding: 25px 15px;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
}


.installation-guides {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.installation-guides h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.installation-guides p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}



/* =========================================
   Installation Guide
========================================= */

.guide-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch; /* ensures cards have equal height */
}

.guide-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; /* make content stack vertically */
}

.guide-card:hover {
  transform: translateY(-5px);
}

.guide-card img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.guide-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.btn-download {
  display: inline-block;
  padding: 10px 20px;
  background-color: #222;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: auto; /* pushes button to bottom */
}

.btn-download:hover {
  background-color: #555;
}






/* Investor Tabs Section */
.investor-tabs-section .container {
    padding: 40px 20px;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}

.tab-button.active {
    color: #00a46c; /* Highlight color for active tab */
    border-bottom: 3px solid #00a46c;
}

/* Tab Content */
.tab-content {
    display: none; /* Hide all content by default */
    padding: 40px auto;
}

.tab-content.active {
    display: block; /* Show the active content */
}

/* SECP Complaint Section */
.secp-complaint-section {
    padding: 60px 20px;
    text-align: center;
}

.secp-complaint-section h2 {
    color: #00a46c; /* Matches your brand green */
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.complaint-link-container {
    max-width: 800px;
    margin: 0 auto;
}

.secp-banner {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* =========================================
   Essential Documents Section
========================================= */
.essential-documents {
  background-color: #f4f9f7;
  padding: 80px 20px;
  text-align: center;
}

.essential-documents h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 50px;
}

.documents-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.document-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.document-icon-circle {
  width: 200px;
  height: 200px;
  background-color: #00a46c; /* Your brand green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.document-icon-circle img {
  width: 100px;
  height: auto;
}

.document-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .essential-documents h2 {
    font-size: 1.8rem;
  }
}