* {
  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; /* ensures it stays above other content */
  background: #171921;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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;
}

.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 {
  width: 0;
  overflow: hidden;
  background-color: #171921;
  color: white;
  transition: width 0.3s ease;
}

.side-nav.open {
  width: 101%;
}

.side-nav ul {
  list-style: none;
  padding: 2rem;
}

.side-nav li {
  padding: 1rem 0;
  font-size: 1.1rem;
  cursor: pointer;
}

.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.9rem;
} */
 .digi {
  display: flex;
  justify-content: space-between;
  background-color: #171921;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  position: relative;
  top: 0;
  transition: top 0.3s ease;
}

.digi.move-down {
  top: 0vh; /* Adjust as needed */
 
}

.digi-left {
 font-size: 25px;


}

.digi-blue {
  color: #1da1f2;
}
.digi-right p{
  cursor: pointer;
  padding-top: 7px;
}
/* Tablet and below */
@media (max-width: 991px) {
   .hero-section{
    height: 100vh;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content.left-align {
    padding-left: 2rem;
  }

  .main-header {
    padding: 1rem;
  }

  .digi {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
   .hero-section{
    height: 48vh;
  }
  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }

  .digi-left {
    font-size: 20px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-section{
    height: 48vh;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .arrow-toggle {
    font-size: 20px;
  }

  .logo img {
    height: 25px;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }
}
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0e1014;
  color: white;
} */

.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;
  }
}
/* Reset and base styles */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f8fc;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 40px;
} */

.main-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 60px;
   background-color: #f4f8fc;
}

/* Left and right boxes */
.section-box {
  width: 400px;
}

/* Heading style */
.section-title {
  color: #0078D7;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #0078D7;
  margin-top: 6px;
}

/* Blue box style */
.section-content {
  background-color: #d3edfc;
  padding: 20px;
  border-radius: 15px;
  font-size: 16px;
  color: #111;
  line-height: 1.8;
}

/* Middle vertical line */
.vertical-line {
  width: 2px;
  background-color: #0078D7;
  height: 300px;
  margin-top: 20px;
}
/* Tablets and below */
@media (max-width: 991px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .section-box {
    width: 90%;
    max-width: 500px;
  }

  .vertical-line {
    width: 100px;
    height: 2px;
    margin: 20px 0;
    align-self: center;
    transform: rotate(0deg);
  }

  .section-title {
    font-size: 22px;
  }

  .section-content {
    font-size: 15px;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .main-container {
    padding: 30px 15px;
    gap: 30px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-title::after {
    width: 40px;
  }

  .section-content {
    font-size: 14px;
    padding: 16px;
  }
}

/* Small Phones */
@media (max-width: 400px) {
  .section-box {
    width: 100%;
  }

  .section-title {
    font-size: 18px;
  }

  .section-content {
    font-size: 13px;
    padding: 14px;
  }
}

 /* body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #12151e;
      color: white;
    } */

    .container {
      max-width: 1600px;
      /* margin: 50px auto; */
      padding: 20px;
       background-color: #12151e;
      color: white;

    }

    h2.section-title1 {
      font-size: 24px;
      color: #00aaff;
      border-bottom: 3px solid #00aaff;
      display: inline-block;
      padding-bottom: 5px;
    }

    .card-wrapper {
      margin-top: 30px;
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 10px;
    }

    .site-card {
      background: white;
      color: black;
      display: inline-block;
      vertical-align: top;
      width: 250px;
      margin-right: 15px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      transition: 0.3s ease;
    }

    .site-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .site-content {
      padding: 10px 12px;
      position: relative;
    }

    .site-title {
      font-weight: bold;
      font-size: 16px;
    }

    .arrow-btn {
      position: absolute;
      right: 12px;
      top: 10px;
      cursor: pointer;
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .arrow-btn.open {
      transform: rotate(180deg);
    }

    .site-description {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      font-size: 14px;
      margin-top: 10px;
      color: #444;
    }

    .site-card.open .site-description {
      max-height: 100px;
    }

    /* Custom scrollbar */
    .card-wrapper::-webkit-scrollbar {
      height: 10px;
    }

    .card-wrapper::-webkit-scrollbar-track {
      background: #999;
      border-radius: 10px;
    }

    .card-wrapper::-webkit-scrollbar-thumb {
      background: #222;
      border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .site-card {
        width: 80%;
        margin-right: 10px;
      }

      .container {
        padding: 15px;
      }

      h2.section-title {
        font-size: 20px;
      }
    }
    /* Tablets (portrait and below) */
@media (max-width: 991px) {
  .site-card {
    width: 220px;
    margin-right: 12px;
  }

  h2.section-title1 {
    font-size: 22px;
  }

  .site-title {
    font-size: 15px;
  }

  .site-description {
    font-size: 13px;
  }
}

/* Phones (landscape and below) */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .site-card {
    width: 70%;
    min-width: 220px;
    margin-right: 10px;
  }

  h2.section-title1 {
    font-size: 20px;
  }

  .site-title {
    font-size: 14px;
  }

  .site-description {
    font-size: 12.5px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .site-card {
    width: 85%;
    min-width: 200px;
  }

  h2.section-title1 {
    font-size: 18px;
  }

  .site-title {
    font-size: 13.5px;
  }

  .site-description {
    font-size: 12px;
  }

  .arrow-btn {
    font-size: 14px;
  }
}
    body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f0f0;
  color: #222;
}

.stats-section {
  padding: 40px 20px;
  text-align: center;
}

.main-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.highlight {
  color: #0077cc;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.stat-card {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 200px;
}

.stat-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.stat-card p {
  font-size: 14px;
  color: #555;
}

.stock-heading {
  font-size: 18px;
  margin-bottom: 20px;
}

.stock-chart img {
  width: 90%;
  max-width: 700px;
  height: auto;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
}

  .footer {
  background-color: #171921;
  color: #e4e4e4;
  font-family: 'Segoe UI', sans-serif;
  /* padding: 50px 30px 20px; */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #3a3b44;
  padding-bottom: 30px;
}

.footer-left {
  flex: 1.5;
  max-width: 400px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  filter: invert();
}

.logo h2 {
  font-size: 22px;
  color: #fff;
  margin: 0;
}

.desc {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.6;
  color: white;
}

.email {
  color:blue;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-right {
  display: flex;
  flex: 2;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  min-width: 150px;
}

.footer-col h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #c7c7c7;
  text-decoration: none;
  font-size: 16px;
}

.footer-col a:hover {
  color: #00aaff;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.footer-bottom a {
  color: #e4e4e4;
  text-decoration: underline;
}

.social-icons img {
  height: 24px;
  width: 24px;
  margin-left: 15px;
  background: #2e2f37;
  padding: 8px;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 40%;
  }

  .footer-left {
    max-width: 100%;
  }

  .desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding-bottom: 20px;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .social-icons {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 20px 15px;
  }

  .logo h2 {
    font-size: 20px;
  }

  .desc {
    font-size: 14px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 14px;
  }

  .social-icons img {
    margin-left: 10px;
    padding: 6px;
  }
}

