@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Metropolis";
  src: url("./metropolis/Metropolis-Thin.otf") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Metropolis";
  src: url("./metropolis/Metropolis-Black.otf") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Verdana";
  src: url("./verdana-font-family/verdana.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Verdana";
  src: url("./verdana-font-family/verdana-bold.ttf") format("woff2");
  font-weight: 700;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* Body Style */
body {
  background-color: #000;
  /* font-family: "Plus Jakarta Sans"; */
  font-family: "Metropolis", "Verdana", sans-serif;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  overflow-x: hidden;
}
.main_container {
  width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 16px 0 0px;
}
/* Header Section Style */
.header_section {
  height: 92px;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 128px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  position: sticky;
  top: 0;
  background: #000;
  border-bottom: solid 2px #00515c;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

.pages_links {
  color: white;
  font-size: 16px;
}

.pages_links > ul {
  list-style: none;
  display: flex;
  flex-direction: row;
}

.pages_links > ul > li > a {
  padding: 12px 12px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
}
.pages_links a.active,
.pages_links > ul > li > a:hover {
  opacity: 1;
}
/* .pages_links a.active {
  color: #00e0ff;
  font-weight: 600;
  border-bottom: 2px solid #00e0ff;
} */

/* Cover Section Style */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover {
  position: relative;
  height: 868px;
  width: 792px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe {
  width: 792px;
  height: 804px;
  position: relative;
}
.globe::before {
  width: 792px;
  height: 804px;
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8)
  );
  transition: opacity 0.8s ease-out;
}
.globe img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.hero_content {
  position: absolute;
  text-align: center;
  font-family: Metropolis;
  transition:
    opacity 0.8s ease-out,
    visibility 0.8s ease-out;
}

.hero_subtitle {
  font-size: 72px;
  font-weight: 100;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
  margin-bottom: 96px;
}

.hero_title {
  font-size: 72px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
}

/* Hover effect: remove globe overlay and hide hero text */
.cover:hover .globe::before {
  opacity: 0;
}

.cover:hover .hero_content {
  opacity: 0;
  visibility: hidden;
}

/* Intro section Style */
.intro_section {
  margin-top: 96px;
  background-color: #09272b;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  height: 364px;
  font-family: Verdana, Geneva, sans-serif;
}

.intro_card {
  width: 1024px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  padding: 32px 128px;
  border-radius: 16px;
  background-color: #00515c;
  margin-top: -65px;
}

.intro_title {
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.intro_text {
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: center;
  color: rgba(225, 228, 229, 1);
}

.intro_tagline {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Our Expertise section */
.expertise_section {
  background: radial-gradient(circle at top, #02252b 0%, #000 55%, #000 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 64px 0;
  border-bottom: solid 2px #00515c;
  background-image: radial-gradient(
    circle at 50% 50%,
    #000 35%,
    rgba(0, 81, 92, 0.5) 164%
  );
  font-family: Verdana, Geneva, sans-serif;
}

.expertise_header {
  text-align: center;
  margin-bottom: 72px;
}

.expertise_title {
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}

.expertise_subtitle {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
}

.expertise_orbit {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 128px auto;
}
.Network_lines {
  width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
.expertise_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  width: 224px;
  height: 224px;
  padding: 16px;
  border-radius: 114px;
  border: solid 2px rgba(0, 196, 222, 0.3);
  background-color: #09272b;
}

.expertise_center img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.expertise_center_details_card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 286px;
  height: 306px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 96px;
  border: solid 2px rgba(0, 196, 222, 0.3);
  background-color: rgba(6, 86, 97, 1);
  padding: 12px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.4s ease;
}

.expertise_center_details_card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.expertise_center_detail_icon {
  width: 96px;
  height: 96px;
  border-radius: 64px;
  border: solid 2px #065661;
  background-color: #09272b;
  display: flex;
  justify-content: center;
  align-items: center;
}
.expertise_center_details_card img {
  width: 42px;
  filter: brightness(0) invert(1);
}
.expertise_center_detail_title {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}
.expertise_center_detail_text {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}
.expertise_item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  z-index: 2;
  width: 128px;
  height: 128px;
  border-radius: 64px;
  border: solid 2px #065661;
  background-color: #09272b;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  gap: 8px;
  transform-origin: center center;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.6s linear(0, 1.25 40%, 0.9 55%, 1.1 70%, 0.98 85%, 1);

  transform: scale(1.4);
}

/* .expertise_orbit:hover .expertise_item {
    
    transform: scale(1.4);
} */

/* @keyframes heartbeat {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1.4); }
} */

.expertise_item span {
  padding: 0 12px;
}

/* Position each circle around the center */

.Experties_Lines {
  width: 506px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.expertise_item--top {
  position: absolute;
  top: 0px;
  left: 286px;
  transform-origin: bottom center;
}
.expertise_item--top:hover {
  background-color: #065661;
  cursor: pointer;
}

.expertise_item--top img {
  width: 36px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.expertise_item--top-right {
  top: 80px;
  right: 102px;
  transform-origin: left center;
}

.expertise_item--top-right:hover {
  background-color: #065661;
  cursor: pointer;
}

.expertise_item--top-right img {
  width: 44px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.expertise_item--right {
  top: 286px;
  right: 0px;
  transform-origin: left center;
}
.expertise_item--right:hover {
  background-color: #065661;
  cursor: pointer;
}
.expertise_item--right img {
  width: 34px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.expertise_item--bottom-right {
  bottom: 102px;
  right: 80px;
  transform-origin: top center;
}
.expertise_item--bottom-right:hover {
  background-color: #065661;
  cursor: pointer;
}
.expertise_item--bottom-right img {
  width: 46px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.expertise_item--bottom {
  bottom: 0px;
  left: 286px;
  transform-origin: top center;
}
.expertise_item--bottom:hover {
  background-color: #065661;
  cursor: pointer;
}
.expertise_item--bottom img {
  width: 48px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.expertise_item--bottom-left {
  bottom: 80px;
  left: 102px;
  transform-origin: right center;
}
.expertise_item--bottom-left:hover {
  background-color: #065661;
  cursor: pointer;
}
.expertise_item--bottom-left img {
  width: 49px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.expertise_item--left {
  top: 286px;
  left: 0px;
  transform-origin: right center;
}
.expertise_item--left:hover {
  background-color: #065661;
  cursor: pointer;
}
.expertise_item--left img {
  width: 51px;
  height: 46px;
  filter: brightness(0) invert(1);
}

.expertise_item--top-left {
  top: 102px;
  left: 80px;
  transform-origin: bottom center;
}
.expertise_item--top-left:hover {
  background-color: #065661;
  cursor: pointer;
}
.expertise_item--top-left img {
  width: 42px;
  height: 46px;
  filter: brightness(0) invert(1);
}

/* Technologies section */
.technologies_section {
  padding: 64px 0;
  color: #ffffff;
  text-align: center;
  border-bottom: solid 2px #00515c;
  background-image: radial-gradient(
    circle at 50% 50%,
    #000 35%,
    rgba(0, 81, 92, 0.5) 164%
  );
  display: grid;
  place-content: center;
  font-family: Verdana, Geneva, sans-serif;
}

/* Our Team section */
.team_section {
  padding: 64px 128px;
  background-color: #09272b;
  font-family: Verdana, Geneva, sans-serif;
}

.team_section_inner {
  max-width: 1184px;
  margin: 0 auto;
}

.team_title {
  margin-bottom: 64px;
  letter-spacing: 0.02em;
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.94;
  text-align: center;
  color: #fff;
}

.team_cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team_card {
  border-radius: 16px;
  border: 1px solid rgba(225, 228, 229, 0.16);
  background: rgba(1, 33, 38, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  overflow: hidden;
  min-height: 260px;
}

.team_avatar {
  position: relative;
  height: 67%;
  width: 100%;
}

.team_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.team_card_footer {
  margin-top: auto;
  width: 100%;
  background-color: #00515c;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-radius: 0 0 8px 8px;
}

.team_name {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.team_role {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.team_social_link {
  margin-top: 8px;
  text-decoration: none;
}

.team_social_link img {
  width: 32px;
  height: 32px;
}

/* Contact section */
.contact_section {
  padding: 96px 128px;
  font-family: Verdana, Geneva, sans-serif;
  color: #e1e4e5;
  border-top: solid 2px #00515c;
}

.contact_inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.contact_details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact_label {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 0.36px;
  text-align: left;
  color: #00c4de;
}

.contact_subheading {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 0.36px;
  text-align: left;
  color: #00c4de;
}

.contact_value {
  font-size: 14px;
  line-height: 1.7;
  color: #e1e4e5;
}

.contact_map_wrap {
  border-radius: 8px;
  overflow: hidden;
}

.contact_map_image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .contact_section {
    padding: 64px 64px 80px;
  }

  .contact_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact_section {
    padding: 48px 24px 64px;
  }
}

.technologies_header {
  margin-bottom: 64px;
  width: 915px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.technologies_title {
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.technologies_subtitle {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
}

.technologies_tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.tech_tab {
  border: 2px solid transparent;
  background-color: transparent;
  /* cursor: pointer; */
  transition: all 0.25s ease;
  width: 224px;
  font-size: 28px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #00c4de;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border-radius: 16px;
}

.tech_tab.active {
  border: solid 1px #00c4de;
}

.tech_tab:not(.active):hover {
  color: #ffffff;
}

.technologies_content {
  display: flex;
  justify-content: space-between;
}

/* .tech_panel {
    display: none;
    gap: 40px;
} */

/* .tech_panel.active {
    display: flex;
} */

.tech_item {
  display: flex;
  align-items: center;
  width: 212px;
  margin-bottom: 24px;
}

.tech_item img {
  width: 32px;
  height: 32px;
  margin: 0 16px;
  object-fit: contain;
}

.tech_item span {
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #8d9da6;
}

/* Infosiphon section */
.infosiphon_section {
  padding: 64px 0;
  color: #e1e4e5;
  background-image: radial-gradient(
    circle at 50% 50%,
    #000 35%,
    rgba(0, 81, 92, 0.5) 164%
  );
  font-family: Verdana, Geneva, sans-serif;
}

.infosiphon_content {
  padding: 0px 128px;
  margin: 0 auto;
  text-align: center;
}

.infosiphon_title {
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.infosiphon_subtitle {
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
  margin-bottom: 32px;
}

.infosiphon_description {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
  max-width: 1024px;
  margin: 0 auto;
}

.infosiphon_grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.infosiphon_card {
  /* background: radial-gradient(circle at 0 0, rgba(0, 196, 222, 0.16), rgba(0, 0, 0, 0.92)); */
  transition:
    transform 0.3s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  width: 144px;
  height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  border: solid 1px rgba(0, 196, 222, 0.3);
  background-color: #09272b;
}

.infosiphon_icon {
  /* border: solid 1px rgba(0, 196, 222, 0.5);
    background: radial-gradient(circle at 30% 0%, rgba(0, 196, 222, 0.25), transparent 70%); */
  width: 72px;
  height: 72px;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  background-color: rgba(0, 196, 222, 0.2);
}

.infosiphon_icon span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00c4de;
}

.infosiphon_card_title {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
  text-transform: uppercase;
}

.infosiphon_card:hover {
  transform: translateY(-5px);
  border-color: #00c4de;
  box-shadow:
    0 0 18px rgba(0, 196, 222, 0.45),
    0 22px 46px rgba(0, 0, 0, 0.9);
  background: transparent;
}

/* Services page */
.services_page_main {
  border-bottom: solid 2px #00515c;
  font-family: Verdana, Geneva, sans-serif;
  background: linear-gradient(
    180deg,
    rgba(0, 35, 41, 1) 0%,
    rgba(0, 0, 0, 1) 50%
  );
}

.services_hero {
  padding: 64px 128px;
  text-align: center;
  border-bottom: solid 2px #00515c;
}

.services_hero_inner {
  max-width: 695px;
  margin: 0 auto;
}

.services_title {
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  color: #fff;
  margin-bottom: 24px;
}

.services_subtitle {
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #fff;
}

.services_content_section {
  padding: 64px 128px;
}

.services_layout {
  /* max-width: 1120px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
}

.services_sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  border: solid 1px rgba(0, 196, 222, 0.35);
  background-color: rgba(6, 86, 97, 0.45);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.service_tab {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 16px;
  background-color: transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: justify;
  color: #fff;
  background-color: rgba(0, 196, 222, 0.12);
}

.service_tab:hover,
.service_tab.active {
  background: linear-gradient(
    90deg,
    rgba(0, 196, 222, 0.25),
    rgba(0, 81, 92, 0.7)
  );
  border-color: rgba(0, 196, 222, 0.85);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 196, 222, 0.45);
}

.services_content {
  padding: 0 32px;
  /* border-radius: 16px;
    border: solid 1px rgba(0, 196, 222, 0.35);
    background-color: #09272b;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.85); */
}

.service_panel {
  display: none;
}

.service_panel.active {
  display: block;
}
.service_panel_img {
  display: flex;
  justify-content: center;
}
.service_panel_img img {
  width: 450px;
  height: 330px;
}
.service_panel_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}

.service_panel_list {
  list-style-type: decimal;
  padding-left: 40px;
  margin-bottom: 16px;

}

.service_panel_list li {
  font-size: 17px;
  line-height: 1.6;
  color: #e1e4e5;
  margin-bottom: 8px;
  position: relative;
}

.service_panel_list li::marker {
  color: #ffffff;
  font-weight: bold;
}

.service_panel_content_img_wrap {
  display: flex;
  margin-bottom: 32px;
}

.service_panel_content_img {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  border: solid 1px #e1e4e5;
  margin-left: 32px;
  height: min-content;
}
.service_panel_content_img img {
  width: 286px;
  height: 324px;
  object-fit: cover;
}
.service_panel_text {
  font-size: 19px;
  line-height: 1.6;
  color: #e1e4e5;
  margin-bottom: 16px;

}
.for_font_size {
  font-size: 18px;
}

.service_panel_text:last-child {
  margin-bottom: 0;
}

/* AI section */
.ai_section {
  padding: 64px 0;
  color: #e1e4e5;
  border-top: solid 2px #00515c;
  border-bottom: solid 2px #00515c;
  background-image: radial-gradient(
    circle at 50% 50%,
    #000 35%,
    rgba(0, 81, 92, 0.5) 164%
  );
  font-family: Verdana, Geneva, sans-serif;
}

.ai_content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.ai_title {
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.ai_subtitle {
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
  margin-bottom: 32px;
}

.ai_description {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  color: #00c4de;
  margin: 0 auto;
}

.ai_chat_wrapper {
  margin-top: 16px;
}

.ai_chat_window {
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  text-align: left;
  height: 256px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  border: solid 2px rgba(0, 196, 222, 0.3);
  background-color: #09272b;
}

.ai_message {
  margin-bottom: 16px;
}

.ai_message:last-child {
  margin-bottom: 0;
}

.ai_message_label {
  color: #00c4de;
}

.ai_message_label--bot {
  color: #00c4de;
}

.ai_message_text {
  /* font-size: 14px;
    line-height: 1.8;
    color: #e1e4e5; */
}

.ai_message_text--bot {
  /* color: #a8f1ff; */
}

.ai_input_row {
  max-width: 960px;
  margin: 8px auto 0;
  gap: 16px;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 16px;
  border: solid 2px rgba(0, 196, 222, 0.3);
  background-color: #09272b;
}

.ai_input {
  flex: 1;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  outline: none;
  background-color: #09272b;
}

.ai_input::placeholder {
  color: #8d9da6;
}

.ai_send_button {
  width: 64px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: unset;
}

.ai_send_button:hover {
  transform: translateY(-2px);
  transform: scale(1.1);
}

.ai_send_icon {
  font-size: 20px;
  color: #00171d;
}

/* Get Connected section */
.get_connected_section {
  padding: 64px 128px 96px;
  background-image: radial-gradient(
    circle at 50% 50%,
    #000 35%,
    rgba(0, 81, 92, 0.5) 164%
  );
  font-family: Verdana, Geneva, sans-serif;
}

.get_connected_content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.get_connected_title {
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.13;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.get_connected_subtitle {
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #e1e4e5;
  margin-bottom: 16px;
}

.get_connected_note {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  color: #00c4de;
  margin-bottom: 32px;
  text-align: left;
}

.get_connected_form {
  text-align: left;
}

.get_connected_row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 24px;
}

.get_connected_field {
  display: flex;
  flex-direction: column;
}

.get_connected_label {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
  color: #8d9da6;
}

.get_connected_input {
  background-color: transparent;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  border-bottom: solid 1px #e1e4e5;
  width: 100%;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: left;
}

.get_connected_input::placeholder {
  color: #6f98a2;
}

.get_connected_field--textarea {
  margin-top: 8px;
}

.get_connected_textarea {
  margin-top: 8px;
  width: 100%;
  min-height: 128px;
  resize: vertical;
  background-color: transparent;
  padding: 16px 24px;
  border-radius: 16px;
  border: solid 1px #e1e4e5;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #e1e4e5;
}

.get_connected_textarea::placeholder {
  color: #8d9da6;
}

.get_connected_button {
  margin: 32px auto 0;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  width: 255px;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background-color: #00c4de;
  font-size: 21px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.14;
  letter-spacing: normal;
  text-align: center;
  color: #09272b;
}

.get_connected_button:hover {
  transform: translateY(-2px);
  /* background-color: #02d4f1; */
}

/* Footer section */
.footer_section {
  align-items: center;
  padding: 32px 0px 16px;
  background-color: #09272b;

  font-family: Verdana, Geneva, sans-serif;
}

.footer_top {
  display: flex;
  justify-content: center;
}
.footer_logo_wrap {
  margin-bottom: 32px;
}

.footer_logo {
  height: 64px;
  width: auto;
}

/* .footer_brand {
  width: 285px;
  height: 252px;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 0 16px;
} */

/* .footer_contact p {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #e1e4e5;
  margin: 8px 0px;
  text-align: center;
} */
/* .footer_contact p:first-child {
  text-align: left;
  margin: 24px 0 16px 0;
}
.footer_socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer_social_icon {
  width: 32px;
  height: 32px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.footer_social_icon img {
  width: 100%;
  height: 100%;
}

.footer_social_icon:hover {
  transform: translateY(-2px);
}

.footer_links {
  display: flex;
  gap: 142px;
  margin-left: 138px;
  padding-top: 16px;
}

.footer_column_title {
  position: relative;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #e1e4e5;
}

.footer_column_title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

.footer_list {
  list-style: none;
  margin-top: 14px;
}

.footer_list li {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #e1e4e5;
  margin: 18px 0;
} */

.footer_bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.footer_bottom_link {
  color: #e1e4e5;
  text-decoration: none;
}

.footer_bottom_link:hover {
  text-decoration: underline;
}

/* Image Overlay and Modal Styles */

.image_overlay {
  position: absolute;
  top: 2%;
  left: 2%;
  width: 97%;
  height: 97%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service_panel_content_img:hover .image_overlay {
  opacity: 1;
}

.overlay_icon {
  font-size: 48px;
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal_content {
  position: relative;
  margin: auto;
  display: block;
  max-width: 45%;
  top: 50%;
  transform: translateY(-50%);
}

.modal_content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close_modal {
  position: absolute;
  top: -50px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close_modal:hover {
  color: #cccccc;
}

@media (max-width: 1440px) {
  .main_container {
    width: 100vw;
  }
  .header_section {
    padding: 16px;
  }
}

@media (max-width: 1200px) {
  .team_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    transform: scale(0.9);
  }
  .intro_card {
    width: unset;
    padding: 32px;
    margin: 0 16px;
    margin-top: -65px;
  }
  .technologies_header {
    width: unset;
  }
  .services_hero {
    padding: 32px;
  }
  .services_content_section {
    padding: 32px;
}
.services_layout {
    gap: unset;
}
}

@media (max-width: 768px) {
  .team_section {
    padding: 64px 24px 80px;
  }

  .team_cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}





.graph_tabs{
display:flex;
gap:10px;
margin:20px 0;
flex-wrap:wrap;
}

.graph_btn,
.finance_btn{
padding:10px 18px;
border:1px solid #0d6b74;
background:#09272b;
color:white;
cursor:pointer;
}

.graph_btn.active,
.finance_btn.active{
background:#0d6b74;
}

.graph_view{
margin-top:20px;
    background: aliceblue;
}