/* Base Styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000000;
  color: #d3f8ff;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #000;
}

.logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #33cb98;
}

/* Make Contact Button */
.nav-links a.contact-button {
  padding: 8px 16px;
  border: 3px solid #33cb98;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-links a.contact-button:hover {
  background-color: #33cb98;
  color: #000;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('assets/bgimg.png') no-repeat center center/cover;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6rem 3rem 6rem 3rem;
  text-align: left;
  border: solid #33cb98;
  border-width: 0px 2px 0px 2px;

}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Black background box for title and subtitle */
.hero .hero-text-group {
  background-color: #000;
  padding: 1.5rem 2rem;
  /* border-radius: 50px; */
  display: inline-block;

}

/* Title and subtitle styles */
.hero .hero-title {
  color: #33cb98;
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.hero .hero-subtitle {
  font-size: 1.75rem;
  color: #fff;
  margin: 0;
}

/* CTA Button outside the black box */
.hero .hero-button {
  padding: 20px 60px;
  border: 3px solid #33cb98;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: 2rem;
  max-width: 20rem;
}

.hero .hero-button:hover {
  background-color: #33cb98;
  color: #000;
}


/* Section Titles */
.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.green-text {
  color: #33cb98;

}

.bold {
  font-weight: bold;
}

.white-text {
  color: #ffffff;
}

.section-subtitle {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 4rem;
  text-align: center;
}

.section-description {
  max-width: 1000px;
  margin: 0 auto 5rem;
  font-size: 1.30rem;
  text-align: center;
  color: #fff;
  line-height: 2.1rem;

}

.hover-animate {
  color: #fff;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-animate:hover {
  transform: translateY(-8px) scale(1.02);
}



/* About Section */
.about {
  position: relative;
  /* background-image: url('assets/bgimg.png'); */
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 1;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
  pointer-events: none;
}

.about>* {
  position: relative;
  z-index: 1;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-middle {
  border: #33cb98 solid;
  border-width: 0 2px 0 2px;
}

.feature-box {
  text-align: center;
  max-width: 300px;
  padding-left: 5rem;
  padding-right: 5rem;
}

.feature-icon {
  width: 64px;
}

.feature-box h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-box p {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Services Section */

.services {
  padding: 2rem 2rem;
  background: #000000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  position: relative;
  border: 2px solid #1c1c1c;
  padding: 1.5rem 1.5rem;
  background-color: #000000;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.service-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(270deg, #217859, #196d78);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}

.service-box:hover::after {
  transform: scaleX(1);
}

.service-box>* {
  position: relative;
  z-index: 2;
}

.service-box h3 {
  background: linear-gradient(90deg, #33cb98, #00a8be);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.service-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* CRM Section */
.crm {
  position: relative;
  padding: 0rem 3rem;
  text-align: center;
}

.crm .section-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.crm .section-subtitle {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.crm .section-description {
  font-size: 1.30rem;
  text-align: center;
  color: #fff;
  line-height: 2.1rem;
}

/* feature-highlight */
.feature-highlight {
  padding: 2rem 1rem;
  color: #fff;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-image img {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  transition: transform 1s ease;
}

.feature-text {
  max-width: 700px;
  flex: 4;
}

.feature-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  justify-content: center;
}

.feature-tabs span {
  position: relative;
  cursor: pointer;
  color: #ccc;
  font-size: 1rem;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.feature-tabs span:hover,
.feature-tabs .active {
  color: #33cb98;
}

.feature-tabs .active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #33cb98;
  left: 0;
  bottom: 0;
}

.feature-text p {
  font-size: 1.05rem;
  color: #d3d3d3;
  line-height: 1.6;
  text-align: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out {
  opacity: 0;
  transform: translateX(-20px);
}

.feature-text .section-title {
  font-size: 2rem;
  color: #ffffff;
  text-align: left;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/*tech Section */

.tech {
  position: relative;
  padding: 5rem 3rem;
  text-align: center;
}

.tech h2 {
  color: #33cb98;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tech p {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.75rem;
  line-height: 1.6;
  color: #fff;
}

.tech-tabs {
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
}

.tech-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tech-categories span {
  cursor: pointer;
  padding-bottom: 6px;
  font-size: 1rem;
  color: #ccc;
  transition: 0.3s ease;
  position: relative;
}

.tech-categories span.active,
.tech-categories span:hover {
  color: #33cb98;
}

.tech-categories span.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #33cb98;
  left: 0;
  bottom: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.tech-card {
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s;
}

.tech-card:hover {
  transform: translateY(-5px);
}

.tech-card img {
  width: 140px;
  height: 150px;
  margin-bottom: 1rem;
}

.tech-card p {
  font-size: 1rem;
  color: #d3f8ff;
  margin: 0;
}

/* Background Image Section */
.bg-image-section {
  margin-top: 3rem;
  background: url('assets/bgimage3.png') center center/cover no-repeat;
  height: 450px;
  width: 100%;
}

/* Footer Call */
.footer-call {
  text-align: center;
  padding: 5rem 2rem;
}

.footer-call h2 {
  font-size: 3rem;
}

.footer-call p {
  font-size: 1.30rem;
  text-align: center;
  color: #fff;
  line-height: 2.1rem
}

.footer-call-btn {
  padding: 8px 16px;
  border: 3px solid #33cb98;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.footer-call-btn:hover {
  background-color: #33cb98;
  color: #000;
}

/* Footer */
.footer-call {
  text-align: center;
  border: solid #33cb98;
  border-width: 0px 2px 0px 2px;
}

.footer-call .section-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.footer-call .section-description {
  font-size: 1.30rem;
  text-align: center;
  color: #fff;
  line-height: 2.1rem
}

.footer-call-btn {
  padding: 20px 60px;
  border: 3px solid #33cb98;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  background: transparent;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-call-btn:hover {
  background-color: #33cb98;
  color: #000;
}

.site-footer {
  background-color: #0f0f0f;
  color: #b1b1b1;
  padding: 4rem 2rem 2rem;

}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #222424;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.social-icons img {
  height: 24px;
  margin: 0 6px;
}

.store-buttons img {
  height: 40px;
  margin: 10px 10px 0 0;
}

.newsletter {
  display: flex;
  align-items: center;
  border: 2px solid #33cb98;
  border-radius: 30px;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
}

.newsletter input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  font-size: 0.9rem;
  outline: none;
  background-color: transparent;
  color: white;
}

.newsletter button {
  background-color: #33cb98;
  border: none;
  padding: 10px 16px;
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.2rem;
}

.footer-right img {
  vertical-align: middle;
  margin-right: 0.2rem;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-nav a {
  text-decoration: none;
  color: #b1b1b1;
  font-weight: 500;
}

.footer-nav a:hover {
  color: #0077cc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #0F1B1A;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #b1b1b1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #66C896;
}

/* Contact Section Title Area */
#contact-section {
  position: relative;
  background: url('assets/bgimg.png') no-repeat center center/cover;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem;
  text-align: left;
}

.contact-header {
  position: relative;
  z-index: 1;
}

.contact-title {
  color: #33cb98;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

/* Contact Box Section */
#contact-box-section {
  background-image: url('assets/bgimg2.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  color: #fff;
}

.contact-box {
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  flex-wrap: wrap;
}

.info,
.form {
  flex: 1 1 45%;
  color: #ffffff;
}

.info h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.info i {
  color: #00ffcc;
  margin-right: 10px;
}

/* Form Styling */
.form input,
.form textarea {
  width: 100%;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  font-size: 14px;
  color: #000;
}

.form textarea {
  height: 120px;
  resize: none;
}

.form input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

.form label {
  margin-right: 12px;
  font-size: 14px;
  color: #d3f8ff;
}

.form button {
  background: #00ffcc;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.form button:hover {
  background-color: #4ff2b1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 1.5rem;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
  }

  .hero {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero .hero-title {
    font-size: 2.2rem;
  }

  .hero .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero .hero-button {
    align-items: center;
  }

  .about,
  .crm,
  .tech,
  .footer-call,
  .site-footer {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .services {
    padding: 3rem 1.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .features {
    gap: 3rem;
  }

  .feature-box {
    max-width: 100%;
    text-align: center;
  }

  .feature-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .feature-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .feature-tabs {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .feature-text p {
    font-size: 1rem;
    text-align: center;
  }

  .feature-text {
    text-align: center;
  }

  tech-card {
    padding: 1rem;
    text-align: center;
    flex-direction: row;
  }

  .bg-image-section {
    height: 250px;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
  }

  .footer {
    justify-content: center;
    /* Center the whole footer content */
    text-align: center;
  }

  .footer-right {
    align-items: center;
    /* Center child items */
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .contact-box {
    flex-direction: column;
    padding: 2rem;
    align-items: center;
  }

  .info,
  .form {
    flex: 1 1 100%;
    text-align: center;
  }
}

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

  .hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-subtitle {
    font-size: rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .feature-tabs,
  .tech-categories {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .footer-call h2,
  .tech h2,
  .crm .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .feature-container {
    padding: 0 1rem;
  }

  .feature-image img {
    max-width: 100%;
  }

  .feature-tabs {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }

  .feature-tabs span {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }


  .footer-call p,
  .crm .section-description,
  .tech p {
    font-size: 1rem;
    text-align: center;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer-right {
    gap: 1.2rem;
  }

  .footer-nav {
    flex-direction: row;
    gap: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    text-align: center;
  }

  .contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }

  .form input,
  .form textarea {
    font-size: 0.9rem;
    text-align: center;
  }
}