/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  color: #fff;
  /* background: #0a0a0a; */
  overflow-x: hidden;
}

/* Header Container */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  height: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo img.header-logo {
  height: 45px;
  /* filter: invert(); */
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu ul li a {
  color:black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #00d4ff;
  
}

/* Hamburger Menu Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s ease;
}

/* Hamburger Animation on Click */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navigation - Mobile/Tablet */
/* @media (max-width: 991px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px); 
    background: black;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
    z-index: 998;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.open {
    transform: translateX(0); 
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-menu ul li a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    display: block;
    color:white;
    text-decoration: none;
  }
}
  .hamburger-menu span {
    background-color: white; 
} */
@media (max-width: 1366px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    /* height: calc(100vh - 70px); */
    background:black;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 998;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .nav-menu ul li a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    color:white;
    text-decoration: none;
  }

  .hamburger-menu span {
    background-color:black;
  }
}
 .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    color: #fff;
    position: relative;
    overflow: hidden;
    gap: 2rem;
  }

  /* Background */
  .bg-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.3s, filter 0.3s;
  }

  /* Content */
  .content {
    flex: 1 1 450px;
    max-width: 50%;
    z-index: 2;
    transform: perspective(800px);
  }

  .content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
  }

  .content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .content button {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    background-color: #00bcd4;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .content button:hover {
    background-color: #0196a6;
  }

  /* Globe */
  .globe-image {
    flex: 1 1 350px;
    max-width: 40%;
    position: relative;
    z-index: 1;
  }

  .globe-image img {
    width: 100%;
    height: auto;
  }

  /* Energy Ripple */
  .energy-ripple {
    position: absolute;
    top: 50%; left: 50%;
    width: 180px; height: 180px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
    z-index: 0;
  }

  /* Canvas */
  canvas {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
  }

  /* Cursor dot */
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: rgba(0, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
  }

  /* Tablet adjustments */
  @media (max-width: 992px) {
    .hero-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }
    .content {
      max-width: 100%;
      order: 1;
    }
    .globe-image {
      max-width: 400px;
      order: 2;
    }
  }

  /* Mobile adjustments */
  @media (max-width: 600px) {
    .hero-section {
      gap: 1.5rem;
      padding: 1.5rem;
    }
    .content h1 {
      font-size: 1.8rem;
    }
    .content p {
      font-size: 1rem;
    }
    .globe-image {
      max-width: 300px;
    }
  }


    .section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 5%;
      gap: 50px;
      flex-wrap: wrap;
      border-bottom: 1px solid #ddd;
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease-out;
    }

    .section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section.reverse {
      flex-direction: row-reverse;
    }

    .section-content {
      flex: 1;
      min-width: 280px;
    }

    .section-content h2 {
      font-size: 2em;
      color: #0a2e5c;
      margin-bottom: 15px;
    }

    .section-content p {
      color: #333;
      font-size: 1.1em;
      line-height: 1.6;
    }

    .stock-box {
      margin-top: 20px;
      background: #f1f7ff;
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid #0a2e5c;
    }

    .stock-box p {
      margin: 5px 0;
      color: #222;
    }

    .section img {
      flex: 1;
      max-width: 100%;
      min-width: 280px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        text-align: center;
      }
      .section.reverse {
        flex-direction: column;
      }
    }
    /* Section Styling */
.projects-section {
  padding: 5rem 8%;
  background: #fff;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: #111;
  font-weight: 700;
}

/* Grid Layout */
.projects-grid {
  display: grid;
 grid-template-columns: repeat(2, 1fr);
   gap: 2.5rem;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-content {
  padding: 1.8rem;
  background: linear-gradient(145deg, #ffffff, #f7f7f7);
}

.project-title {
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #00897b;
  transition: color 0.3s ease;
}

.project-card:hover .project-title {
  color: #005f54;
}

.project-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .projects-section {
    padding: 3rem 6%;
  }
  .project-title {
    font-size: 1.2rem;
  }
}

/* On smaller devices, show 1 per row */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
}

.footer {
  background-color: #1d1f26;
  color: #f1f1f1;
  padding: 40px 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  flex: 1 1 250px;
}

.logo1 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.logo1-icon {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  padding: 5px 10px;
  font-weight: bold;
  margin-right: 10px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.email-link {
  color: #89bfff;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.footer-columns {
  display: flex;
  flex: 3;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 16px;
}

.column a:hover {
  color: #ffffff;
}

hr {
  border: 0;
  border-top: 1px solid #333;
  margin: 30px 0;
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.bottom-footer p {
  font-size: 14px;
}

.bottom-footer a {
  color: #89bfff;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-left: 15px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: invert(1);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .bottom-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.logo1 img {
  
  height: 30px;
 filter: invert();
}
/* Tooltip */
.social-icons a {
  position: relative;
}

.social-icons a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.social-icons a:hover::after {
  opacity: 1;
}

/* Glow on hover */
.column a:hover,
.email-link:hover {
  text-shadow: 0 0 6px #89bfff;
  color: blue;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px #89bfff);
}

 .live-stats-section {
      padding: 60px 20px;
      background: transparent;
      text-align: center;
      color: #222;
    }

    .live-stats-section h1 {
      font-size: 32px;
      margin-bottom: 40px;
    }

    .live-stats-section h1 span {
      color: #1992d4;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
      background: white;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      min-width: 160px;
    }

    .stat h2 {
      font-size: 28px;
      color: #1992d4;
      margin-bottom: 10px;
    }

    .stat p {
      font-size: 14px;
      color: #555;
    }

    .stock-section {
      background: white;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
      max-width: 1000px;
      margin: auto;
    }

    .stock-section h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    canvas {
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 16 / 9;
    }

    @media (max-width: 600px) {
      .stock-section {
        padding: 20px 15px;
      }
      canvas {
        aspect-ratio: 4 / 3;
      }
    }

    .chart-controls {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 20px;
    }

    .chart-controls button {
      padding: 10px;
      background: #1992d4;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .chart-controls button:hover {
      background: #157cb3;
    }

    .chart-controls img {
      width: 24px;
      height: 24px;
    }

    /* Rotate for zoom out, dim for reset */
    .zoom-out {
      transform: rotate(180deg);
    }

    .reset-icon {
      opacity: 0.6;
    }
  .live-insights-section {
  padding: 60px 20px;
  background: #fff;
  color: #111;
  text-align: center;
}

.live-insights-section h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

.live-insights-section h1 span {
  color: #1e90ff; /* Blue instead of orange */
}

.insight-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.insight {
  text-align: center;
  background: #f2f2f2;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  min-width: 160px;
}

.insight h2 {
  font-size: 28px;
  color: #1e90ff; /* Blue instead of orange */
  margin-bottom: 10px;
}

.insight p {
  font-size: 14px;
  color: #333;
}

.market-section {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  max-width: 1000px;
  margin: auto;
}

.market-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.market-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.market-controls button {
  padding: 10px;
  background: #1e90ff; /* Blue instead of orange */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.market-controls button:hover {
  background: #176ac7; /* Darker blue on hover */
}
