@import url(https://fonts.googleapis.com/css?family=Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

htm {
  scroll-behavior: smooth;
}

:root {
  --primary: #000203;
  --secondary: #025889;
  --light-green-1: #02588974;
  --light-green-2: #02588921;
  --white: #f6f6f6;
  --white-80: rgba(246, 246, 246, 0.8);
  --white-70: rgba(246, 246, 246, 0.5);
  --white-50: rgba(246, 246, 246, 0.3);
  --white-40: rgba(246, 246, 246, 0.4);
  --white-08: rgba(246, 246, 246, 0.08);
  --golden: #ffffff;
  --border-color: #02588941;
}
/* 
body.dark-mode {
  --primary: #ffffff;
  --secondary: #137213;
  --light-green-1: rgba(19, 114, 19, 0.5);
  --light-green-2: rgba(19, 114, 19, 0.09);
  --white: #161616;
  --white-80: rgba(22, 22, 22, 0.8);
  --white-70: rgba(22, 22, 22, 0.7);
  --white-50: rgba(22, 22, 22, 0.5);
  --white-40: rgba(22, 22, 22, 0.4);
  --white-08: rgba(22, 22, 22, 0.08);
  --golden: goldenrod;
  --slate: #f6f6f6;
} */

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Lato", sans-serif;
  background-color: #000203;
  color: var(--secondary);
  transition: background-color 0.3s, color 0.3s;
  /* overflow-x: hidden; */
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Lato", sans-serif;
  background-color: var(--primary);
  color: var(--secondary);
  transition: background-color 0.3s, color 0.3s;
}

/* Navbar---------------------------------------------------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 2%;
  background-color: #001318; /* Default background as a fallback */
  transition: background-color 0.3s, backdrop-filter 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%; /* Ensure full-width */
}

/* Check for support of backdrop-filter */
@supports (
  (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))
) {
  .navbar {
    background-color: rgba(
      0,
      0,
      0,
      0.9
    ); /* Slightly more transparent for the blur effect */
    backdrop-filter: blur(20px); /* Apply blur if supported */
    -webkit-backdrop-filter: blur(20px); /* Safari support */
  }
}

body.scrolled .navbar {
  background-color: rgba(0, 0, 0, 0.8); /* Darker background on scroll */
}

/* @supports fallback for background color on scroll */
@supports not (
  (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))
) {
  body.scrolled .navbar {
    background-color: rgba(
      0,
      0,
      0,
      0.7
    ); /* Less transparent fallback background */
  }
}

/* Logo Styling */
.nav-left img {
  width: auto;
  height: 4.1rem;
}

/* Right Section (Menu and Login Button) */
.nav-right {
  display: flex;
  align-items: center;
}

/* Navigation Menu Styling */
.nav-menu {
  display: flex;
  gap: 22px;
  list-style-type: none;
  border: 1px solid var(--light-green-1);
  box-shadow: inset 0 0 10px var(--light-green-1);
  padding: 6px 17px;
  border-radius: 50px;
}

/* Menu Links Styling */
.nav-menu li a {
  text-decoration: none;
  color: var(--white-70);
  font-size: 13.1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: white;
}

/* Login Button Styling */
#loginBtn {
  text-decoration: none;
  background-color: #025889;
  padding: 7.5px 18px;
  color: white;
  text-transform: uppercase;
  font-size: 13.3px;
  border-radius: 50px;
  font-weight: 520;
  margin-left: 20px;
  transition: all 0.3s;
}

#loginBtn:hover {
  cursor: pointer;
  background-color: #034f62;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger i {
  color: var(--white-80);
  font-size: 1.3rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #011001;
  padding: 2rem;
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style-type: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 2rem 0;
  text-align: center;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: var(--white-70);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: white;
}

.mobile-login-btn {
  margin-top: 2rem;
}

.mobile-menu a {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-right {
    display: none;
  }
  .nav-left img {
    height: 2.5rem;
  }
}

@media (max-width: 500px) {
  .nav-left img {
    height: 2rem;
  }
}

/* hero-----------------------------------  */

#main {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--primary);
}

#hero {
  position: relative;
  width: 100%;
  height: 89vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 10;
}

.hero-content {
  position: absolute;
  right: 10%;
  z-index: 20;
  max-width: 600px;
  text-align: start;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.4rem;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.767);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 25px;
  font-weight: 400;
}

.btn-search-cntainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 25px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 8px 20px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: background-color 0.4s ease;
  position: relative;
  z-index: 10;
  overflow-x: hidden;
}

.hero-button span i {
  display: inline-block;
  font-size: 1rem;
}

.hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transform: translateX(-120%);
  z-index: -1;
  background-color: var(--secondary);
  transition: transform 0.3s ease;
}

.hero-button:hover::before {
  transform: translateX(0);
}

.hero-button:hover {
  color: white;
  border: 1px solid var(--secondary);
  font-weight: 500;
  background-color: #ffbf0000;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-button {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-button {
    font-size: 0.75rem;
    padding: 7px 16px;
  }
}

/* search -------------------------------------------------  */
#search {
  width: 100%;
  height: 100%;
  padding: 5rem;
}

.search-container {
  width: 60%;
  margin: auto;
  padding: 3rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--light-green-2);
  /* background-color: transparent; */
  border-radius: 10px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}

.sblur1 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: var(--secondary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  filter: blur(46px);
}

.sblur2 {
  position: absolute;
  top: 0%;
  right: 0%;
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: -10;
  filter: blur(46px);
}

.search-container h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.search-container a {
  width: 100%;
}

.search-container a input {
  width: 100%;
  background-color: #02588926;
  border: none;
  outline: none;
  color: var(--primary);
  padding: 10px;
  margin-top: 1rem;
  border-radius: 5px;
}

.search-container input::placeholder {
  color: rgba(255, 255, 255, 0.192);
  font-size: 14px;
}

@media (max-width: 800px) {
  .search-container h2 {
    font-size: 1.6rem;
  }
  .search-container {
    width: 90%;
    padding: 3rem;
  }
}

@media (max-width: 500px) {
  #search {
    padding: 1rem;
  }
  .search-container h2 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .search-container {
    width: 100%;
    padding: 1rem;
  }

  .search-container a input {
    padding: 7px;
  }
}

/* Latest Insider Transactions Section Styles */

#component-insider-trade {
  padding: 3rem;
  width: 100%;
  margin: 0 auto 5rem auto;
}
.insider-transations-heading {
  margin-top: 6rem;
  color: var(--secondary);
  text-align: center;
  font-size: 2rem;
}
.component-box1 {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  position: relative;
  z-index: 10;
  background-color: var(--light-green-2);
}

.component-box1-heading {
  padding: 2rem 2.5rem;
}

@media (max-width: 500px) {
  .component-box1 {
    padding: 1rem 0.8rem;
  }

  .component-box1-heading {
    padding: 0.1rem 2.5rem;
  }
}

tbody tr .company-head {
  color: skyblue;
  font-weight: 800;
}
tbody tr .company-fullName {
  color: var(--white-40);
  font-size: 11px;
  font-weight: 400;
  margin-top: 7px;
}
tbody td.industry {
  color: skyblue;
  font-weight: 400;
}
.filters {
  padding: 1.7rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.dropdown-container {
  width: 100%;
  /* background-color: cadetblue; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  scrollbar-width: thin;
  /* margin-left: -33px; */
  flex-wrap: nowrap; /* Prevents wrapping on small screens */
  overflow-x: auto;
}

.dropdown-wrapper {
  /* background-color: var(--light-green-1); */
  position: relative;
  display: flex;
  flex-direction: column;
}

.dropdown-label {
  position: absolute;
  top: -8px;
  left: 8px;
  background-color: #011216;
  padding: 0 6px;
  font-size: 0.66rem;
  border-radius: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.797);
}

.custom-dropdown {
  /* background-color: crimson; */
  padding: 8px 13px;
  font-weight: 300;
  /* border: 1px solid var(--secondary); */
  border: none;
  border-radius: 4px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white-08);
  color: var(--white);
  font-size: 0.87rem;
  min-width: 120px;
}

.export-btn {
  align-self: flex-end;
  padding: 10px 15px;
  background-color: var(--golden);
  color: #011216;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dropdown-container {
    flex-wrap: nowrap; /* Prevents wrapping on small screens */
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .custom-dropdown,
  .export-btn {
    flex-shrink: 0; /* Prevents shrinking */
  }

  .component-box1-heading {
    padding: 2rem 0.5rem;
  }
  .insider-transations-heading{
    font-size: 1.6rem;
  }
}

@media (max-width: 500px) {
  .custom-dropdown {
    /* background-color: crimson; */
    padding: 8px 9px;
    font-weight: 300;
    /* border: 1px solid var(--secondary); */
    border: none;
    border-radius: 4px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-green-1);
    color: white;
    font-size: 0.8rem;
    min-width: 119px;
  }

  .insider-transations-heading{
    font-size: 1.3rem;
  }
}

.transactions-table {
  width: 100%;
  border-collapse: collapse;
  /* background-color: var(--light-green-2); */
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.transactions-table th,
.transactions-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-green-1);
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.8);
}

.transactions-table th {
  background-color: var(--secondary);
  color: #f6f6f6;
  font-weight: 600;
  vertical-align: top;
}

.transactions-table td {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.transactions-table tr:hover {
  background-color: var(--light-green-2);
  transition: background-color 0.2s ease;
  color: #fff;
}

/* .transactions-table img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
} */
/* Positive and Negative Value Colors */
td.positive {
  color: #4caf50;
}
td.negative {
  color: #ff4d4d;
}

/* Responsive Table */
@media (max-width: 768px) {
  .transactions-table img {
    width: 50px;
    height: 50px;
  }

  .transactions-table th,
  .transactions-table td {
    padding: 0.7rem;
    font-size: 0.8rem;
  }
}
/* Responsive Styles */
@media (max-width: 1350px) and (min-width: 769px) {
  .search-bar input {
    padding: 0.5rem;
  }

  .transactions-table-wrapper {
    padding: 0.5rem;
  }

  .transactions-table {
    border: none;
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .search-bar input {
    width: 12rem;
    padding: 0.5rem;
  }

  .transactions-table-wrapper {
    padding: 0.5rem;
    max-height: 300px;
  }

  .transactions-table {
    border: none;
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 500px) {
  .entries-label {
    font-size: 0.9rem;
    padding-right: 5px;
    color: var(--white);
  }

  .filters {
    display: flex;
    margin-left: 0.1rem;
  }

  .search-bar input {
    width: 10rem;
    padding: 0.3rem;
    font-size: 13px;
  }
  .search-bar i {
    font-size: 0.8rem;
  }
  .transactions-table {
    border: none;
    overflow-x: auto;
    display: block;
  }
  .transactions-table-wrapper {
    padding: 0.5rem;
    max-height: 250px;
  }

  .transactions-table th,
  .transactions-table td {
    font-size: 0.7rem;
  }

  #component-insider-trade {
    padding: 1rem;
    width: 100%;
    margin: 1rem auto 5rem auto;}
}

/* Additional styles for responsiveness */
@media (max-width: 1350px) and (min-width: 769px) {
  #blurred-background-left,
  #blurred-background-right {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  #blurred-background-left,
  #blurred-background-right {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  #blurred-background-left,
  #blurred-background-right {
    width: 150px;
    height: 150px;
  }
  #blurred-background-left {
    left: 34%;
    top: 0;
  }
}

.pagination {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.pagination a {
  color: var(--dark-text);
  float: left;
  padding: 6px 10px;
  text-decoration: none;
  border: 1px solid var(--white-70);
  border-radius: 5px;
  transition: background-color 0.3s, var(--white-70) 0.3s;
  color: var(--white-70);
  font-size: 0.9rem;
}

.pagination a.active {
  background-color: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--secondary);
}

.pagination a:hover:not(.active) {
  background-color: var(--secondary);
  color: var(--primary);
}

.pagination i {
  color: var(--white-70);
  font-weight: bolder;
}
.pagination i:hover {
  color: white;
}
@media (max-width: 600px) {
  .pagination {
    justify-content: center;
    gap: 0.3rem;
  }

  .pagination a {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}

/* how it works ===============================================  */
#howItWorks {
  width: 60%;
  height: 100%;
  margin: auto;
  padding: 6rem 2rem;
  /* background-color: salmon; */
}

#howItWorks h2 {
  color: var(--secondary);
  text-align: center;
  font-size: 2rem;
}

.howItWorksBox {
  margin-top: 5rem;
}

.mainbox {
  margin: 2.2rem auto;
  width: 70%;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: var(--light-green-2);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 60px;
  border-top-left-radius: 60px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0.7rem 0.5rem;
}

.mainBox1,
.mainBox3 {
  transform: translateX(-10%);
}

.mainBox2,
.mainBox4 {
  transform: translateX(10%);
}

.count {
  background-color: var(--secondary);
  width: 50px;
  height: 50px;
  transform: translateX(-18px);
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.blur {
  position: absolute;
  width: 60px;
  height: 30px;
  z-index: -100;
  left: -2%;
  background-color: var(--secondary);
  filter: blur(30px);
}

.afterCount {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  text-align: start;
}

.mainbox h5 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}
.mainbox p {
  color: var(--white-70);
  font-size: 14px;
}

@media (max-width: 1350px) {
  .mainbox {
    width: 100%;
  }
}
@media (max-width: 1060px) {
  #howItWorks {
    width: 70%;
  }
}

@media (max-width: 800px) {
  #howItWorks {
    width: 77%;
  }

  #howItWorks h2 {
    font-size: 1.7rem;
  }
  .mainbox {
    margin: 1.8rem auto;
    /* width: 70%; */
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.6rem 0.5rem;
  }

  .count {
    width: 40px;
    height: 40px;
  }

  .afterCount {
    gap: 6px;
  }

  .mainbox h5 {
    font-size: 1rem;
  }
  .mainbox p {
    font-size: 13px;
  }
}

@media (max-width: 500px) {
  #howItWorks {
    width: 95%;
  }

  #howItWorks h2 {
    font-size: 1.2rem;
  }
  .mainbox {
    margin: 1.8rem auto;
    gap: 4px;
    padding: 0.6rem 0.5rem;
  }

  .count {
    width: 35px;
    height: 30px;
    font-size: 11px;
  }

  .afterCount {
    gap: 5px;
  }

  .mainbox h5 {
    font-size: 0.8rem;
  }
  .mainbox p {
    font-size: 11px;
  }

  .mainBox1,
  .mainBox3 {
    transform: translateX(0);
  }

  .mainBox2,
  .mainBox4 {
    transform: translateX(0);
  }

  .howItWorksBox {
    margin-top: 2.3rem;
  }
}

/* features =============================================================  */
#features {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featureImg {
  width: 45%;
  height: 89%;
  overflow-x: hidden;
  display: flex;
  align-items: center;
}

.fdiv {
  background-color: var(--light-green-2);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 4rem 0rem;
  height: 85%;
  width: 100%;
  transform: translateX(-20%);
  position: relative;
}

.fblur1 {
  position: absolute;
  top: 8%;
  right: -3%;
  background-color: var(--secondary);
  width: 70px;
  height: 50px;
  border-radius: 50%;
  filter: blur(40px);
}

.fblur2 {
  position: absolute;
  bottom: 7%;
  right: -3%;
  background-color: var(--secondary);
  width: 70px;
  height: 50px;
  border-radius: 50%;
  z-index: -100;
  filter: blur(40px);
}

.fdiv img {
  margin-top: 6px;
  height: 100%;
  width: 100%;
  scale: 1.15;
  transform: translateX(14%);
  overflow-x: visible;
}

.featureInfo {
  width: 45%;
  padding: 3rem;
}

.featureInfo h2 {
  margin-top: -15px;
  width: 70%;
  color: var(--secondary);
  text-align: start;
  font-size: 2rem;
}

.featureInfo ul {
  margin-top: 3rem;
  margin-left: 1rem;
  color: var(--white-70);
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 770px) {
  .featureInfo h2 {
    width: 70%;
    font-size: 1.7rem;
  }

  .featureInfo ul {
    font-size: 1rem;
    gap: 8px;
  }

  .featureImg {
    width: 55%;
  }

  .featureInfo {
    width: 43%;
  }
}

@media (max-width: 500px) {
  #features {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
  }

  .fdiv {
    height: 65%;
    width: 80%;
    margin: auto;
    transform: translateX(0%);
  }
  .fdiv img {
    scale: 1.5;
    transform: translateX(0%);
  }

  .featureImg {
    width: 90%;
    height: 80%;
  }

  .featureInfo h2 {
    width: 100%;
    margin: auto;
    font-size: 1.2rem;
  }

  .featureInfo ul {
    font-size: 14px;
    margin-top: 1.3rem;
    padding: 1rem;
    gap: 8px;
  }

  .featureImg {
    width: 100%;
  }

  .featureInfo {
    width: 90%;
  }
  .featureInfo ul {
    margin-top: 1rem;
    font-size: 14px;
    gap: 5px;
    margin-left: 0rem;
  }
}

/* services======================================================  */
#services {
  width: 100%;
  height: 100%;
  padding: 9rem 3rem 3rem 3rem;
}

#services h2 {
  color: var(--secondary);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.serviceContainer {
  margin-top: 2rem;
  width: 95%;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.serviceBox {
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* 
.serviceBox:nth-child(1) {
  width: 24%;
}

.serviceBox:nth-child(2) {
  width: 35%;
}

.serviceBox:nth-child(3) {
  width: 42%;
} */

.serviceImg {
  border-radius: 10px;
  width: 97%;
  height: 300px;
  background-color: var(--light-green-2);
  border: 1px solid var(--border-color);
  position: relative;
}

.serviceImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  /* padding: 0.8rem; */
}

.serviceImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.022),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 1)
  );
  border-radius: 10px;
  z-index: 1;
}

.sevice-arrow {
  position: absolute;
  bottom: 6%;
  left: 6%;
  padding: 0.2rem 0.6rem 0.2rem 0.2rem;
  z-index: 100;
}

.sevice-arrow img {
  width: 35px;
  opacity: 70%;
  transition: all 0.3s;
  cursor: pointer;
}

.sevice-arrow img:hover {
  opacity: 100%;
}

.serviceImg h3 {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.726);
  font-weight: 400;
  margin-bottom: 10px;
  color: white;
  font-size: 18px;
}

@media (max-width: 800px) {
  #services h2 {
    font-size: 1.7rem;
    margin-bottom: 2.8rem;
  }

  .serviceContainer {
    margin-top: 0;
    width: 100%;
    padding: 2rem 0;
    flex-wrap: wrap;
  }

  .serviceBox {
    width: 33%;
  }

  .serviceImg {
    width: 97%;
    height: 220px;
  }

  .serviceImg h3 {
    font-size: 16.5px;
  }

  .sevice-arrow img {
    width: 30px;
  }
}

@media (max-width: 500px) {
  #services {
    padding: 5rem 1rem 3rem 1rem;
  }

  #services h2 {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
  }

  .serviceContainer {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .serviceBox {
    width: 49%;
    margin-top: 0.5rem;
  }

  .serviceImg {
    height: 200px;
  }

  .serviceImg h3 {
    font-size: 15px;
  }

  .sevice-arrow img {
    width: 25px;
  }
}

@media (max-width: 350px) {
  .serviceBox {
    width: 90%;
    margin-top: 0.5rem;
  }
}

/* reports ======================================================  */
#reports {
  margin-top: 3rem;
  padding: 6rem 2rem;
}

#reports h2 {
  color: var(--secondary);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.8rem;
}

.reportContainer {
  width: 78%;
  margin: auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.reportBox {
  width: 48%;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
  background-color: var(--light-green-2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--golden);
  display: flex;
  align-items: center;
}

.title h3 span {
  opacity: 50%;
  margin-left: 12px;
}

.title img {
  height: 30px;
}

.title i {
  /* padding: 1px; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  color: var(--primary);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 15px;
  /* color: var(--secondary); */
}

.reportBox ul {
  margin-top: 1.8rem;
  margin-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reportBox ul li {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: start;
  font-size: 1.06rem;
  color: var(--white-70);
}

.reportBox ul li svg {
  height: 21px;
}

.reportBox ul li p span {
  font-weight: 300;
  margin-left: 6px;
}

.reportBox a {
  margin-top: 1.5rem;
  color: rgb(56, 164, 207);
  opacity: 70%;
  display: inline-flex;
  margin-left: 2.7rem;
  text-decoration: none;
}

.reportBox a:hover {
  opacity: 100%;
  transition: all 0.3s;
}

.reportBox a i {
  margin-top: 3px;
  margin-left: 5px;
}

@media (max-width: 800px) {
  #reports h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  .reportContainer {
    width: 100%;
    gap: 0.8rem;
    padding: 1rem 0.6rem;
  }

  .reportBox {
    width: 48%;
    padding: 1rem 1rem;
    margin-top: 1rem;
  }

  .title h3 {
    font-size: 1.2rem;
  }

  .title img {
    height: 25px;
    margin-top: 1px;
  }

  .reportBox ul li {
    align-items: start;
    justify-content: start;
    font-size: 1rem;
  }

  .reportBox ul li svg {
    height: 21px;
  }
}

@media (max-width: 650px) {
  .reportBox {
    width: 99%;
  }
}

@media (max-width: 500px) {
  #reports {
    margin-top: 1rem;
    padding: 5rem 2rem;
  }
  #reports h2 {
    margin-bottom: 1.6rem;
  }

  .title h3 {
    font-size: 1.1rem;
  }

  .title img {
    height: 24px;
  }

  .reportBox ul li {
    font-size: 15px;
  }

  .reportBox ul li svg {
    height: 19px;
  }
  .reportBox ul {
    margin-top: 1.3rem;
    gap: 8px;
  }

  .reportBox a {
    margin-top: 1.3rem;
  }
}

/* contact form ===========================================================  */
#contact {
  /* background: var(--primary); */
  /* background-color: #000000; */
  padding: 5rem 3rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contactContainer {
  max-width: 800px;
  width: 100%;
  border-radius: 10px;
  padding: 30px;
  background: var(--light-green-2);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}

.cblur1 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(46px);
}

.cblur2 {
  position: absolute;
  top: 0%;
  right: 0%;
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: -10;
  filter: blur(46px);
}

.contactContainer h2 {
  color: var(--golden);
  font-size: 2rem;
  margin-bottom: 10px;
}

.contactContainer p {
  width: 80%;
  margin: 20px auto;
  font-size: 14px;
  color: var(--white-70);
  padding: 0px 64px;
  font-weight: 300;
  line-height: 19px;
  margin-bottom: 4rem;
}

.contactContainer .form-group {
  margin-bottom: 19px;
}

.contactContainer .form-group input {
  width: 80%;
  padding-bottom: 12px;
  border: none;
  border-bottom: 0.6px solid var(--white-50);
  background-color: transparent;
  color: var(--white-80);
  font-size: 17px;
  margin-bottom: 1rem;
}

.contactContainer .form-group input::placeholder {
  color: var(--white-50);
  font-size: 14px;
}

.contactContainer .form-group input:focus {
  outline: none;
}

.contactContainer button {
  width: 80%;
  padding: 10px;
  background-color: transparent;
  cursor: pointer;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: background-color 0.4s ease;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.contactContainer button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transform: translateX(-120%);
  z-index: -1;
  background-color: var(--secondary);
  transition: transform 0.3s ease;
}

.contactContainer button:hover::before {
  transform: translateX(0);
}

.contactContainer button:hover {
  color: white;
  border: 1px solid var(--border-color);
  font-weight: 520;
}

.contactContainer .contact-info {
  margin-top: 20px;
}

.contactContainer .contact-info p {
  font-size: 14px;
}

.contactContainer .contact-info span {
  font-weight: bold;
}

.contactContainer .contact-info a {
  color: var(--golden);
  text-decoration: none;
}

.contactContainer .contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .contactContainer h2 {
    font-size: 1.7rem;
    margin-top: 10px;
  }

  .contactContainer p {
    width: 80%;
    margin: 20px auto;
    font-size: 14px;
    color: var(--white-70);
    padding: 0px 0px;
    font-weight: 300;
    line-height: 19px;
    margin-bottom: 4rem;
  }
}

@media (max-width: 600px) {
  .contactContainer {
    padding: 20px;
  }

  .contactContainer p,
  .contactContainer .contact-info p {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .contactContainer p {
    width: 100%;
  }
  .contactContainer h2 {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .contactContainer .form-group input {
    width: 100%;
  }

  .contactContainer button {
    width: 100%;
    padding: 7px 10px;
    background-color: transparent;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid var(--golden);
    color: var(--golden);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    border-radius: 50px;
    transition: background-color 0.4s ease;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
  }
}

/* footer----------------------------------------------------------------------------------------------  */
.footer {
  height: fit-content;
  padding: 3.2rem 6rem 2rem 6rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: var(--light-green-2); */
}

.footer-dark {
  background-color: #00171c; /* Dark mode footer color */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.5rem;
  flex-wrap: wrap; /* Allow wrapping for responsive design */
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the start */
  gap: 1rem;
  flex: 1 1 300px; /* Flex item to be responsive */
}

.footer-left img {
  height: 3.5rem; /* Increased height */
  margin-left: -2%;
}

.footer-left-para {
  margin-top: 1rem;
  line-height: 1.3rem;
  color: rgba(255, 255, 255, 0.512);
  font-size: 16px;
  font-weight: 300;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 11px;
  flex: 1 1 300px; /* Flex item to be responsive */
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Allow wrapping for responsive design */
}

.footer-nav li {
  list-style: none;
  color: var(--slate);
}

.footer-nav li a {
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  padding-left: 0.8rem;
}

.footer-nav li a:hover {
  color: var(--golden) !important;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.footer-social a {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  text-decoration: none;
}

.footer-social {
  margin-top: 1rem;
}

#icon {
  color: rgba(255, 255, 255, 0.6);
  scale: 1;
}

#icon:hover {
  color: var(--slate);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  flex-wrap: wrap; /* Allow wrapping for responsive design */
}

.footer-hr {
  width: 100%;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.341);
}

.footer-bottom {
  margin-top: 2.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.523);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Allow wrapping for responsive design */
}

.footer-links a {
  color: rgba(255, 255, 255, 0.523);
  font-size: 14px;
  font-weight: 300;
}

.footer-links a:hover {
  color: white;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

/* Media queries for responsive design */
@media (max-width: 780px) {
  .footer {
    padding: 2.5rem 3rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-right {
    margin-top: 1rem;
  }

  .footer-nav {
    align-items: flex-start; /* Align items to the start */
  }

  .footer-nav li a {
    padding-left: 0;
  }

  .footer-bottom p,
  .footer-links a {
    font-size: 14px;
  }
  .footer-left img {
    height: 2.5rem;
  }
}

@media (max-width: 735px) {
  .footer {
    margin-top: 4rem;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    margin-bottom: -9rem;
  }

  .footer-right {
    margin-bottom: -9rem;
  }

  .footer-left,
  .footer-right {
    align-items: flex-start;
  }

  .footer-nav {
    /* flex-direction: column; */
    align-items: flex-start; /* Align items to the start */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 10px;
  }

  .footer-social a {
    font-size: 1.3rem;
    /* margin-left: 0.5rem; */
    text-decoration: none;
  }

  .footer-social {
    /* background-color: salmon; */
    margin-left: -10px;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start; /* Align items to the start */
    gap: 1rem;
  }

  .footer-left,
  .footer-right {
    align-items: flex-start; /* Align items to the start */
  }

  .footer-social {
    margin-top: 0px;
  }

  .footer-left img {
    height: 2rem;
  }

  .footer-nav li a {
    font-size: 14px;
  }

  .footer-nav {
    align-items: flex-start; /* Align items to the start */
  }

  .footer-nav li a {
    padding-left: 0;
  }

  .footer-bottom {
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start */
    gap: 0.5rem;
  }

  .footer-bottom p,
  .footer-links a {
    font-size: 14px;
  }
}
