:root {
  --bg-primary: #121212;
  --bg-secondary: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --accent-color: #5fb935;
  --accent-hover: #57b82a;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.roboto {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-32 { font-size: 32px; }
.fs-36 { font-size: 36px; }
.fs-48 { font-size: 48px; }

.fs-64 { font-size: 64px; }

.fw-400 {font-weight: 400;}
.fw-600 {font-weight: 600;}

.vh-100 {height: 100vh}


.text-animate {
  overflow: hidden;
}

.slide-down {
  animation: slideDown 1s forwards ; 
}

@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 2s forwards ; 
}

@keyframes slideUp {
  0% {
    transform: translateY(100px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.slide-left {
  animation: slideLeft .5s forwards ; 
}

@keyframes slideLeft {
  0% {
    
    transform: scale(0.2) ;
    opacity: 0.3;
  }

  100% {
    transform: scale(1) ;
    opacity: 1;
  }
}


.mr-auto {
  margin-right: auto
}

.br-10 {
  border-radius: 10px;
}


.navbar {
  background-color: var(--bg-secondary);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-custom {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: all 0.3s ease;
  border-radius: 15px !important;

  box-shadow: 0 4px 15px rgba(0, 200, 150, 0.2);
}

.btn-custom:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 150, 0.3);
}

.middle-underline {
  position: relative;
  margin-bottom: 80px;
  display: inline-block;
  padding-bottom: 15px;
}

.middle-underline::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  bottom: 0;
  left: 20%;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-color),
    transparent
  );
  border-radius: 2px;
}

.middle-underline::after {
  content: '';
  position: absolute;
  width: 30%;
  height: 4px;
  bottom: 0;
  left: 35%;
  background: var(--accent-color);
  border-radius: 2px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--accent-color),
                0 0 10px var(--accent-color);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 20px var(--accent-color),
                0 0 30px var(--accent-color);
    opacity: 0.8;
  }
  100% {
    box-shadow: 0 0 5px var(--accent-color),
                0 0 10px var(--accent-color);
    opacity: 1;
  }
}

.service-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(95, 185, 53, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(95, 185, 53, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-title {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
  width: 100px;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Contact Form Styles */
.contact-form-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-control {
  border-radius: 15px
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  background-color: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  background-color: var(--bg-primary);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(95, 185, 53, 0.25);
}

.form-floating > label {
  color: var(--text-secondary);
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
  color: var(--accent-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Custom button hover effect */
.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(95, 185, 53, 0.3);
}

/* Success Animation */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid var(--accent-color);
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: var(--bg-primary);
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: var(--accent-color);
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
  top: -8px;
  left: -8px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 6px solid var(--accent-color);
}
.text-accent-color {
  color: var(--accent-color);
}

/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-intro {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.team-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(95, 185, 53, 0.2);
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
}

.vision-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  animation: pulse 2s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.team-card:hover .vision-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(95, 185, 53, 0.3);
}

.team-card:hover .vision-icon i {
  transform: scale(1.1);
}

.vision-icon i {
  transition: transform 0.3s ease;
}

/* Solutions Section Styles */
.solution-card {
  background: var(--bg-secondary);
  border-radius: 25px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, transparent, rgba(95, 185, 53, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(95, 185, 53, 0.2);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1);
}

.solution-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.solution-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.solution-link:hover {
  color: var(--accent-hover);
  transform: translateX(5px);
}

.solution-link i {
  transition: transform 0.3s ease;
}

.solution-link:hover i {
  transform: translateX(5px);
}

/* Flagship Product Section */
.flagship-intro {
  max-width: 800px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.bg-secondary {
  background-color: var(--bg-secondary) !important;
}

/* Navigation Styles */
.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 0;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

/* Fixed header adjustments */
.navbar {
  transition: all 0.3s ease;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
}


/* Fullpage.js Navigation Styles */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: var(--accent-color);
}

#fp-nav ul li .fp-tooltip {
  color: var(--accent-color);
}

/* Animation Delays for Section Content */
.section [data-aos] {
  transition-delay: 0.4s;
}

.section [data-aos] + [data-aos] {
  transition-delay: 0.6s;
}

.section [data-aos] + [data-aos] + [data-aos] {
  transition-delay: 0.8s;
}

/* Solution Page Styles */
.solution-hero {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.solution-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(95, 185, 53, 0.1));
  opacity: 0.5;
}

.min-vh-50 {
  min-height: 50vh;
}

.feature-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(95, 185, 53, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(95, 185, 53, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.team-content {
  padding: 1.5rem;
}

.team-name {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-role {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-summary {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-skills {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-skills li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.team-skills li::before {
  content: '→';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.team-card:hover .team-skills li::before {
  transform: translateX(5px);
}

/* AOS Animation Styles */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: var(--bg-primary);
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 46px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}

.feature-item::before {
  content: '→';
  color: var(--accent-color);
  margin-right: 10px;
  font-weight: bold;
}
.animated-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
}