/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex-grow: 1;
}

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

.max-width-md {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}

.full-width {
  width: 100%;
}

.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: #f5f5f5;
}

.rounded-image {
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
  background-color: #333;
  color: white;
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: 160px;
  position: relative;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.nav-link {
  padding: 1rem 1.5rem;
  text-align: center;
  color: white;
  font-size: 0.875rem;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  background-color: #444;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 500px;
}

.split-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.right-panel {
  position: relative;
  overflow: hidden;
}
.left-panel {
  position: relative; /* Ensure the logo can be positioned within this container */
}

.panel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Ensure the background image is below the logo */
}

.dark-image {
  opacity: 1;
  
}

.light-image {
  opacity: 0.3;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  margin-left: auto;
  width: 50%;
  text-align: right;
  padding-right: 10%;
  color: #090909;
}

.hero-title {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-cta {
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: background-color 0.3s;
   position: relative;
  z-index: 9999;
  
}

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

.btn-outline {
  display: inline-block;
  border: 2px solid #333;
  color: #333;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: #333;
  color: white;
}

.btn-success {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-success:hover {
  background-color: #218838;
}

/* Strategy Cards */
.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.strategy-card {
  position: relative;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  color: white; /* Ensure text is visible on the background */
  border-radius: 0.5rem;
  overflow: hidden;
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

.strategy-card * {
  position: relative;
  z-index: 2; /* Ensure text is above the overlay */
}

.esg-bg {
  background-image: url('images/esg-background.png'); /* Replace with your ESG background image */
}

.technology-bg {
  background-image: url('images/technology-background.png'); /* Replace with your Technology background image */
}

.energy-bg {
  background-image: url('images/energy-background.png'); /* Replace with your Energy background image */
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-text {
  margin-bottom: 1.5rem;
}

.card-link {
  color: #faf8f8;
  font-weight: bold;
}

.card-link:hover {
  text-decoration: underline;
}

/* Page Header */
.page-header {
  position: relative;
  background-color: #333;
  color: white;
  padding: 4rem 0;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
}

/* Strategy Sections */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.strategy-grid.reverse {
  direction: rtl;
}

.strategy-grid.reverse > * {
  direction: ltr;
}

.strategy-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.strategy-list li {
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background-color: white;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: #333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.step-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

/* Philosophy Cards */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background-color: white;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Team Members */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
}

.member-image {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #666;
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.info-blocks {
  margin-top: 2rem;
}

.info-block {
  margin-bottom: 2rem;
}

.info-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-form-container {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 0.5rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-family: inherit;
  font-size: 1rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.success-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 1rem;
}

.success-message {
  color: #28a745;
  margin-bottom: 1.5rem;
}

.map-section {
  height: 450px; /* Adjust this value as needed */
}

.map-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

/* Terms Page */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.terms-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
}

.terms-heading:first-child {
  margin-top: 0;
}

.terms-text {
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.last-updated {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #777;
}

/* Background Patterns */
.bg-pattern {
  position: relative;
}

.bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/pattern-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.bg-pattern > * {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: #ccc;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  text-decoration: underline;
  color: white;
}

.footer-address {
  font-style: normal;
  color: #ccc;
}

.footer-address p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .logo {
    position: absolute; /* Position the logo on top of the background image */
    top: 20px; /* Adjust the top position as needed */
    left: 20px; /* Adjust the left position as needed */
    z-index: 2; /* Ensure the logo is above the background image */
  }

  .nav-links {
    width: auto;
  }
}

@media (max-width: 992px) {
  .strategy-grid,
  .strategy-grid.reverse,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .strategy-grid.reverse {
    direction: ltr;
  }

  .strategy-image {
    order: -1;
  }

  .strategy-grid.reverse .strategy-image {
    order: -1;
  }

  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .split-screen {
    grid-template-columns: 1fr;
  }

  .left-panel,
  .right-panel {
    height: 50vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .terms-content {
    padding: 1.5rem;
  }
}


.risk-warning-section {
  background-color: #f3f4f6; /* Light gray background */
  padding: 2rem 0; /* Adjust padding as needed */
}

.risk-warning-title {
  color: #333; /* Dark gray text */
  font-size: 0.875rem; /* 14px */
  font-weight: 600; /* Semi-bold */
  text-transform: uppercase; /* Uppercase text */
  margin-bottom: 1rem; /* Space below the title */
}

.risk-warning-content {
  color: #4b5563; /* Medium gray text */
  font-size: 0.75rem; /* 12px */
  line-height: 1.5; /* Improved readability */
  max-width: 56rem; /* Limit width for better readability */
  margin: 0 auto; /* Center the content */
}

.risk-warning-content p {
  margin-bottom: 1rem; /* Space between paragraphs */
}
.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.info-block a {
  color: #007bff; /* Default link color */
  text-decoration: none; /* Remove underline */
}

.info-block a:hover {
  text-decoration: underline; /* Add underline on hover */
}