* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #171921;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo img {
  height: 30px;
  filter: invert();
}

.arrow-toggle {
  font-size: 24px;
  cursor: pointer;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.hero-section {
  display: flex;
  min-height: 83vh;
  transition: all 0.3s ease;
  position: relative;
}

.hero-content {
  width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-content.left-align {
  align-items: flex-start;
  text-align: left;
  padding-left: 4rem;
    max-width: 50%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blue-text {
  color: #1496ec;
}

.black-text {
  color: #111;
}

.hero-content p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero-button {
  padding: 10px 20px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #e0e0e0;
  color: #007bff;
}

.side-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 118%;
  overflow: hidden;
  background-color: #171921;
  color: white;
  transition: width 0.3s ease;
  z-index: 10;
}

.side-nav.open {
  width: 50%;
}

.side-nav ul {
  list-style: none;
  padding: 2rem;
}

.side-nav li {
  padding: 1.5rem 0;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.side-nav li:hover,
.side-nav .active {
  color: #1da1f2;
}

.digi {
  display: flex;
  justify-content: space-between;
  background-color: #171921;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  position: relative;
  transition: transform 0.3s ease;
  z-index: 5;
}

.digi.move-down {
  transform: translateY(100px); /* Move down when nav opens */
}

.digi-left {
  font-size: 1.3rem;
}

.digi-blue {
  color: #1da1f2;
}

.digi-right p {
  cursor: pointer;
  padding-top: 7px;
  text-decoration: underline;
}

 /* Mobile Phones (320px - 767px) */
        @media screen and (max-width: 767px) {
            .main-header {
                padding: 0.8rem 1rem;
            }

            .logo img {
                height: 25px;
            }

            .arrow-toggle {
                font-size: 20px;
            }

            .hero-section {
                min-height: 75vh;
            }

            .hero-content {
                padding: 2rem 1rem;
            }

            .hero-content.left-align {
                padding-left: 1rem;
                max-width: 100%;
                align-items: center;
                text-align: center;
            }

            .hero-content h1 {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }

            .hero-content p {
                font-size: clamp(0.9rem, 4vw, 1rem);
                margin-bottom: 2rem;
            }

            .hero-button {
                padding: 14px 28px;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
            }

            .side-nav.open {
                width: 85%;
            }

            .side-nav ul {
                padding: 1.5rem;
                margin-top: 3rem;
            }

            .side-nav li {
                padding: 1.2rem 0;
                font-size: 1.4rem;
            }

            .digi {
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem;
                text-align: center;
            }

            .digi-left {
                font-size: 1.1rem;
            }

            .digi-right p {
                padding-top: 0;
            }
        }

        /* Small Mobile (320px - 479px) */
        @media screen and (max-width: 479px) {
            .main-header {
                padding: 0.6rem 0.8rem;
            }

            .hero-content {
                padding: 1.5rem 0.8rem;
            }

            .hero-content h1 {
                font-size: clamp(1.6rem, 10vw, 2.2rem);
                margin-bottom: 0.8rem;
            }

            .hero-content p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .side-nav.open {
                width: 49%;
            }

            .side-nav ul {
                padding: 1rem;
            }

            .digi {
                padding: 0.8rem;
                font-size: 0.8rem;
            }
        }

        /* Tablets (768px - 1023px) */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
            .main-header {
                padding: 1rem 1.5rem;
            }

            .hero-content {
                padding: 2.5rem;
            }

            .hero-content.left-align {
                padding-left: 3rem;
                max-width: 60%;
            }

            .side-nav.open {
                width: 45%;
            }

            .hero-content h1 {
                font-size: clamp(2.2rem, 4vw, 2.8rem);
            }

            .digi {
                padding: 0.8rem 1.2rem;
            }
        }

        /* Small Laptops/Large Tablets (1024px - 1199px) */
        @media screen and (min-width: 1024px) and (max-width: 1199px) {
            .hero-content.left-align {
                max-width: 55%;
            }

            .side-nav.open {
                width: 40%;
            }
        }

        /* Desktops (1200px - 1439px) */
        @media screen and (min-width: 1200px) and (max-width: 1439px) {
            .main-header {
                padding: 1.2rem 2.5rem;
            }

            .hero-content {
                padding: 3.5rem;
            }

            .hero-content.left-align {
                padding-left: 4.5rem;
            }
        }

        /* Large Desktops (1440px+) */
        /* @media screen and (min-width: 1440px) {
            .main-header {
                padding: 1.5rem 3rem;
            }

            .hero-content {
                padding: 4rem;
            }

            .hero-content.left-align {
                padding-left: 5rem;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .side-nav.open {
                width: 50%;
            }
            .hero-section{
                height: 50vh;
            }
        } */

        /* Ultra-wide screens (1920px+) */
        @media screen and (min-width: 1920px) {
            .main-header {
                padding: 2rem 4rem;
            }

            .hero-content {
                padding: 5rem;
            }

            .hero-content.left-align {
                padding-left: 6rem;
                max-width: 45%;
            }

            .hero-content h1 {
                font-size: 4rem;
            }

            .side-nav.open {
                width: 30%;
            }
        }

        /* Landscape Mobile */
        @media screen and (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                min-height: 70vh;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .hero-content p {
                margin-bottom: 1rem;
            }

            .digi {
                padding: 0.5rem 1rem;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        .aboutus-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 4rem;
  height: 80vh;
  background: #171921;
}

.aboutus-left {
  flex: 1;
  max-width: 35%;
}

.aboutus-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00b1f2;
}

.highlight {
  color: #00b1f2;
}

.aboutus-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #ccc;
}

.aboutus-divider {
  width: 2px;
  background-color:white;
  height: 100%;
  margin: 0 3rem;
}

.aboutus-right {
  flex: 1;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.aboutus-revenue {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.aboutus-subtext {
  font-size: 0.9rem;
  color:white;
  margin-bottom: 1rem;
}

.aboutus-map {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #333;
}

.aboutus-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-top: 1px solid #222;
}

.footer-left, .footer-center, .footer-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color:black;
  font-weight: bold;
}

.green {
  color: #00e676;
  font-size: 24px;
}

.blue {
  color: #00b1f2;
}

.subtext {
  font-size: 0.8rem;
  color:black;
}

/* Tablets and below */
@media (max-width: 991px) {
  .aboutus-section {
    flex-direction: column;
    height: auto;
    padding: 2rem;
  }

  .aboutus-left,
  .aboutus-right {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .aboutus-divider {
    display: none;
  }

  .aboutus-title {
    font-size: 2rem;
  }

  .aboutus-text {
    font-size: 1.2rem;
  }

  .aboutus-revenue {
    font-size: 1.6rem;
  }

  .aboutus-subtext {
    font-size: 0.85rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .aboutus-title {
    font-size: 1.8rem;
  }

  .aboutus-text {
    font-size: 1.1rem;
  }

  .aboutus-revenue {
    font-size: 1.5rem;
  }

  .aboutus-subtext {
    font-size: 0.8rem;
  }

  .aboutus-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .aboutus-title {
    font-size: 1.5rem;
  }

  .aboutus-text {
    font-size: 1rem;
  }

  .aboutus-revenue {
    font-size: 1.3rem;
  }

  .aboutus-subtext {
    font-size: 0.75rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex-direction: column;
    gap: 0.3rem;
  }
}
 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #e8e8e8;
            padding: 40px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        .container {
            background-color: #e8e8e8;
            padding: 50px  50px 20px  50px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            
            max-width: 100vw;
            width: 100%;
            display: flex;
            gap: 60px;
            align-items: flex-start;
        }

        .section {
            flex: 1;
            position: relative;
        }

        .section h1 {
            color: #2196F3;
            font-size: 60px;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
        }

        .section h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 120px;
            height: 3px;
            background-color: #2196F3;
        }

        .content-box {
            background-color: #b8d4e8;
            padding: 30px;
            border-radius: 23px;
            margin-top: 40px;
            line-height: 1.6;
            font-size: 30px;
            color: #333;
            text-align: justify;
        }

        .divider1 {
            width: 2px;
            height: 440px;
            background-color: #2196F3;
            margin-top: 80px;
            flex-shrink: 0;
        }
  
/* Responsive adjustments */
@media (max-width: 1024px) {
  .section h1 {
    font-size: 5vw;
  }

  .content-box {
    font-size: 1.1rem;
  }

  .divider1 {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }

  .divider1 {
    width: 80%;
    height: 2px;
    margin: 40px 0;
  }

  .section h1 {
    font-size: 6vw;
    text-align: center;
  }

  .content-box {
    margin-top: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  
  .section h1 {
    font-size: 7vw;
  }

  .content-box {
    font-size: 0.95rem;
    padding: 20px;
  }

  .divider1 {
    width: 90%;
  }
}
  body {
      scroll-snap-type: y mandatory;
    }

    .section1 {
      position: relative;
      height: 100vh;
      width: 100vw;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      justify-content: center;
      align-items: center;
      scroll-snap-align: start;
      border:2px solid black;
    }

    .content1 {
      background: rgba(0, 0, 0, 0.2); /* Glass effect in black */
      padding: 30px 40px;
      border-radius: 20px;
      backdrop-filter: blur(12px);
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
      color: #fff;
      max-width: 950px;
      text-align: center;
      opacity: 0;
      transform: translateY(50px);
      transition: background 0.3s ease;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    p.subtitle1 {
      font-size: 1.2rem;
      margin-bottom: 18px;
      color: #dcdcdc;
    }

    .more-text1 {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease;
      text-align: justify;
      margin-top: 10px;
      font-size: 1rem;
      color: #f0f0f0;
    }

    .more-text1.open {
      max-height: 1000px;
    }

    .read-more-btn1 {
      margin-top: 20px;
      background: linear-gradient(135deg, #00c6ff, #0072ff);
      color: #fff;
      border: none;
      padding: 10px 22px;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .read-more-btn1:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    @media(max-width: 768px) {
      h1 { font-size: 2.3rem; }
      .content1 { padding: 25px 20px;margin: 20px; }
    }


/*footer  */
    footer {
      background-color: #0f1116;
      color: #ccc;
      padding: 50px 20px 30px;
      font-family: Arial, sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1500px;
      margin: auto;
    }

    .footer-logo {
      flex: 1 1 250px;
      margin-bottom: 30px;
    }

    .footer-logo img {
      height: 40px;
      margin-bottom: 15px;
      filter:invert()
    }

    .footer-logo p {
      font-size: 14px;
      color: #bbb;
      line-height: 1.6;
    }

    .footer-col {
      flex: 1 1 150px;
      margin-bottom: 30px;
    }

    .footer-col h4 {
      font-size: 16px;
      color: #fff;
      margin-bottom: 15px;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #bbb;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer-col ul li a:hover {
      color: #fff;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .social-icons a {
      color: #ccc;
      font-size: 16px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #fff;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      font-size: 13px;
      color: #777;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-col,
      .footer-logo {
        flex: 1 1 100%;
      }

      .social-icons {
        justify-content: center;
      }
    }
/* stock */
  .live-stats-section {
  padding: 60px 20px;
  background: transparent;
  text-align: center;
  color: #222;
}
   .live-stats-section h1 {
      font-size: 28px;
      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: 20px;
      margin-bottom: 20px;
    }

    canvas {
      max-width: 100%;
      height: 300px;
    }
      