:root {
  /* Dark theme (default) */
  --primary-color: #079b7e;
  --primary-light: rgba(7, 155, 126, 0.2);
  --dark-bg: #121212;
  --gray-bg: #1a1a1a;
  --text-color: #ffffff;
  --text-muted: #aeaeae;
  --card-bg: #161616;
  --border-color: #626262;
  --nav-bg: #121212;
  --nav-menu-bg: #949494;
  --nav-hover-bg: rgba(255, 255, 255, 0.2);
  --form-bg: transparent;
  --form-border: #2c2c2c;
  --form-focus-bg: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
  --primary-color: #079b7e;
  --primary-light: rgba(7, 155, 126, 0.1);
  --dark-bg: #ffffff;
  --gray-bg: #f5f5f5;
  --text-color: #079b7e;
  --text-muted: #666666;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
  --nav-bg: #ffffff;
  --nav-menu-bg: #f0f0f0;
  --nav-hover-bg: rgba(7, 155, 126, 0.1);
  --form-bg: #ffffff;
  --form-border: #e0e0e0;
  --form-focus-bg: rgba(0, 0, 0, 0.05);
}

/* Theme Switch Styles */
.theme-switch-wrapper {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display: none;
}

.slider {
  background-color: #333;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
}

.slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
  z-index: 2;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #079b7e;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider .fa-sun {
  color: #f1c40f;
  font-size: 14px;
}

.slider .fa-moon {
  color: #f1c40f;
  font-size: 14px;
}
/* Main Styles */
body {
  font-family: "Montserrat";
  background-color: #121212;
  color: white;
  --dark-bg: #121212;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 2rem;
  background: var(--nav-bg);
  transition: background-color 0.3s ease;
}

.navbar-brand {
  text-decoration: none;
}

.navbar-brand img {
  height: 50px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--nav-menu-bg);
  border-radius: 135px;
  transition: background-color 0.3s ease;
}

.nav-item {
  margin: 3px;
  padding: 0;
  display: inline-block;
}

.nav-link {
  display: inline-flex;
  height: 50px;
  padding: 5.4px 27px;
  align-items: center;
  justify-content: center;
  gap: 13.5px;
  flex-shrink: 0;
  color: var(--text-color);
  border-radius: 135px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  background: var(--nav-hover-bg);
  color: var(--text-color);
}

.nav-link.active {
  background: var(--primary-color);
  border-radius: 100px;
}

/* Responsive navbar styles */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .nav-menu {
    background: transparent;
    width: 100%;
    padding: 10px 0;
  }

  .nav-menu.d-flex {
    align-items: center;
  }

  .nav-item {
    width: 100%;
    margin: 5px 0;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }

  #navbarNav {
    background: #232323;
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
  }
}

/* Light theme navigation styles */
[data-theme="light"] .navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar-brand img {
  content: url("assets/logo-placeholder_Light.png");
}

[data-theme="light"] .nav-menu {
  background: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

[data-theme="light"] .nav-link {
  color: #000000;
  font-weight: 500;
}

[data-theme="light"] .nav-link:hover {
  background: rgba(7, 155, 126, 0.1);
  color: #079b7e;
}

[data-theme="light"] .nav-link.active {
  border: 1px solid #079b7e !important;
  color: #079b7e !important;
  background: transparent !important;
  font-weight: 600;
}

[data-theme="light"] .nav-link.contact-link.active {
  background: transparent !important;
  color: #079b7e !important;
  border: 1px solid #079b7e;
  font-weight: 600;
}

/* Responsive navbar styles for light theme */
@media (max-width: 991.98px) {
  [data-theme="light"] .navbar-toggler {
    border: 1px solid #079b7e;
  }

  [data-theme="light"] #navbarNav {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  [data-theme="light"] .nav-menu {
    background: transparent !important;
    box-shadow: none;
  }
}

/* Hero Section Styles */
.hero-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
  transition: background-color 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  color: #fff;
  font-family: Montserrat;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: color 0.3s ease;
}

.hero-text {
  color: #aeaeae;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin-top: 2rem;
  transition: color 0.3s ease;
}

.dashboard-img-container {
  position: relative;

  overflow: hidden;
}

.dashboard-img {
  width: 85%;
  border-radius: 12px;
  background-color: #2a2a2a;
  transition: all 0.3s ease;
}

/* Light theme dashboard image */
[data-theme="light"] .dashboard-img {
  content: url("assets/dashboard_Light.png");
  background-color: #ffffff;
}

.btn-primary {
  padding: 12px 25px;
  border-radius: 100px;
  background: #079b7e;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #057c64;
  transform: translateY(-2px);
}

.btn-outline {
  padding: 12px 25px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid white;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Light theme button styles */
[data-theme="light"] .btn-outline {
  border: 1px solid #079b7e;
  color: #079b7e;
  background: transparent;
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(7, 155, 126, 0.1);
  color: #079b7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(7, 155, 126, 0.1);
}

/* Wave Animation */
.wave-container {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .dashboard-img-container {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-container .btn {
    width: 100%;
  }

  .navbar-brand span {
    font-size: 0.9rem;
  }

  .logo-placeholder {
    height: 40px;
    width: auto;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }
}

/* wave */
/* Wave background styling */
.hc-wave-bg {
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  /* You'll replace this URL with your wave image path */
  background-image: url("assets/chart_1.png");
}

.hc-wave-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("assets/chart_2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  z-index: -1;
}

/* card section */
.timeline {
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 100px;
  width: 2px;
  height: 94.4%;
  background: linear-gradient(to bottom, #07887e, #034f75);
}

.timeline-item {
  position: relative;
  margin-bottom: 6rem;
}

.timeline-card {
  border-radius: 15px;
  background: linear-gradient(
    100deg,
    rgba(7, 136, 126, 0.2) 0%,
    rgba(2, 34, 32, 0.2) 100%
  );
  padding: 1.5rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.connector-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  /* Increased line thickness */
  background: linear-gradient(90deg, #07887e, #034f75);
  z-index: 1;
  left: 40px;
  /* Moved closer to the vertical line */
}

/* Desktop (default) - larger spacing */
.timeline-item:nth-child(1) .timeline-card {
  margin-left: 300px;
}

.timeline-item:nth-child(1) .connector-line {
  width: 260px;
}

.timeline-item:nth-child(2) .timeline-card {
  margin-left: 600px;
}

.timeline-item:nth-child(2) .connector-line {
  width: 560px;
}

.timeline-item:nth-child(3) .timeline-card {
  margin-left: 900px;
}

.timeline-item:nth-child(3) .connector-line {
  width: 860px;
}

/* Medium screens */
@media (max-width: 1200px) {
  .timeline-item:nth-child(1) .timeline-card {
    margin-left: 200px;
  }

  .timeline-item:nth-child(1) .connector-line {
    width: 100px;
  }

  .timeline-item:nth-child(2) .timeline-card {
    margin-left: 400px;
  }

  .timeline-item:nth-child(2) .connector-line {
    width: 300px;
  }

  .timeline-item:nth-child(3) .timeline-card {
    margin-left: 600px;
  }

  .timeline-item:nth-child(3) .connector-line {
    width: 500px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item .timeline-card {
    margin-left: 100px !important;
    max-width: 100%;
  }

  .timeline-item .connector-line {
    left: 30px;
    width: 60px !important;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .timeline-item:nth-child(1) .timeline-card {
    margin-left: 300px;
  }

  .timeline-item:nth-child(1) .connector-line {
    width: 360px;
  }

  .timeline-item:nth-child(2) .timeline-card {
    margin-left: 600px;
  }

  .timeline-item:nth-child(2) .connector-line {
    width: 560px;
  }

  .timeline-item:nth-child(3) .timeline-card {
    margin-left: 900px;
  }

  .timeline-item:nth-child(3) .connector-line {
    width: 860px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .timeline::before {
    display: none;
  }

  .timeline-item .connector-line {
    display: none;
  }

  .timeline-item .timeline-card {
    margin-left: 0 !important;
  }
}

.hc-hero-section {
  position: relative;
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111111;
  /* Dark background */
}

/* Wave background styling */
.hc-wave-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  /* You'll replace this URL with your wave image path */
  background-image: url("assets/chart_1.png");
}

.hc-wave-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("assets/chart_2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  z-index: -1;
}

.hc-hero-content {
  position: relative;
  z-index: 2;
}

.hc-hero-title {
  color: #fff;
  font-family: "Montserrat";
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}

.hc-hero-subtitle {
  color: #ababab;
  font-family: "Montserrat";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hc-btn-discover {
  border-radius: 100px;
  background: #079b7e;
  color: white;
  padding: 12px 30px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.Hero-bg {
  background: linear-gradient(
    142deg,
    rgba(3, 86, 127, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 60px 20px;
}
.hc-btn-discover:hover {
  background: #068a70;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(7, 155, 126, 0.3);
}

.hc-btn-consult {
  border-radius: 100px;
  background: transparent;
  color: white;
  padding: 11px 30px;
  font-weight: 500;
  border: 1px solid #fff;
  margin-left: 15px;
  transition: all 0.3s ease;
}

.hc-btn-consult:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
  .hc-hero-title {
    font-size: 2.3rem;
  }

  .hc-hero-subtitle {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .hc-hero-title {
    font-size: 2rem;
  }

  .hc-hero-subtitle {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .hc-hero-section {
    text-align: center;
    padding: 60px 0;
  }

  .hc-hero-title {
    font-size: 1.8rem;
  }

  .hc-hero-subtitle {
    font-size: 20px;
  }

  .hc-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hc-btn-consult {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .hc-hero-section {
    padding: 40px 0;
  }

  .hc-hero-title {
    font-size: 1.5rem;
  }

  .hc-hero-subtitle {
    font-size: 18px;
  }
}

.footer {
  background-color: #121212;

  color: var(--text-light);
  padding: 60px 0 40px;
}

.footer-logo {
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.form-control {
  background-color: transparent;
  border: 1px solid #2c2c2c;
  color: var(--text-light);
  padding: 12px 15px;
  border-radius: 4px;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  box-shadow: none;
  color: var(--text-light);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.btn-connect {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.btn-connect:hover {
  background-color: #008b7d;
  color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .footer-col {
    margin-bottom: 30px;
  }
}

/* experties card system */

.expertise-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: center;

  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-subtitle {
  text-align: center;
  color: #aeaeae;
  margin-bottom: 5rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  /* 38.4px */
}

.expertise-card {
  border: 1px solid #626262;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: rgba(18, 18, 18, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-content {
  display: flex;
  padding: 1.5rem;
}

.card-left {
  width: 140px;
  margin-right: 1.5rem;
}

.card-right {
  flex: 1;
  margin-top: 1rem;
}

.card-icon {
  width: 140px;
  height: 200px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.card-description {
  font-size: 18px;

  margin: 0;
  color: #aeaeae;

  font-weight: 500;
  line-height: 150%;
  /* 30px */
}

.toggle-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 1rem;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Collapsed state */
.expertise-card.collapsed .card-content {
  justify-content: center;
  padding: 1rem;
}

.expertise-card.collapsed .card-left {
  display: none;
}

.expertise-card.collapsed .card-right {
  display: flex;
  justify-content: center;
}

.expertise-card.collapsed .card-description {
  display: none;
}

.expertise-card.collapsed .card-title {
  margin: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .expertise-container {
    padding: 1rem 0.5rem;
  }

  .card-content {
    padding: 1rem;
  }

  .card-left {
    margin-right: 1rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .toggle-icon {
    top: 1rem;
    right: 1rem;
  }
}

/* Update footer for light theme */
[data-theme="light"] .footer {
  background-color: #eeeeee;
}

[data-theme="light"] .footer-logo img {
  content: url("assets/Footer_logo_Light.png");
}

[data-theme="light"] .footer h5 {
  color: #079b7e;
}

[data-theme="light"] .footer-links a {
  color: #464646;
}

[data-theme="light"] .footer-links a:hover {
  color: #079b7e;
}

/* Light theme hero styles */
[data-theme="light"] .hero-section {
  background-color: #ffffff;
}

[data-theme="light"] .hero-title {
  color: #079b7e;
}

[data-theme="light"] .hero-text {
  color: #464646;
}

/* Light theme background gradient */
[data-theme="light"] .approach-section,
[data-theme="light"] .approach-section > div {
  background: linear-gradient(141.79deg, #079b7e 0%, #034f75 100%) !important;
  padding: 60px 20px;
}

/* Light theme container styles */
[data-theme="light"] .bg-cont {
  background-color: #ffffff;
}

[data-theme="light"] .timeline-card {
  background: linear-gradient(100.06deg, #07887e 0%, #03567f 100%) !important;
}

/* Light theme hero section styles */
[data-theme="light"] .hc-hero-section {
  background-color: #eeeeee;
}

[data-theme="light"] .hc-hero-title {
  color: #079b7e;
}

[data-theme="light"] .hc-hero-subtitle {
  color: #464646;
}

[data-theme="light"] .hc-btn-consult {
  border: 1px solid #079b7e;
  color: #079b7e;
  background: transparent;
}

[data-theme="light"] .hc-btn-consult:hover {
  background: rgba(7, 155, 126, 0.1);
  color: #079b7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(7, 155, 126, 0.1);
}

[data-theme="light"] .Hero-bg {
  background: linear-gradient(141.79deg, #079b7e 0%, #034f75 100%) !important;
}

/* [data-theme="light"] .expertise-card {
  background-color: #979797 !important;
  opacity: 0.5;
} */


 