/* index.css - Completely Redesigned */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --primary: #1e6b4f; /* Deep, rich forest green */
  --primary-dark: #164c38; /* Even darker green for depth */
  --secondary: #c9a227; /* Muted, classic gold */
  --accent: #d4af37; /* A brighter, metallic gold for highlights */
  --dark: #0a0a0a;
  --dark-gray: #1a1a1a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
}

body {
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
} */

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 180px;
  transition: all 0.3s ease;
}

.menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.menu ul li a:hover::after,
.menu ul li a.active::after {
  width: 100%;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: var(--primary);
}

.readmore_btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn_1 {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
  text-decoration: none;
}

.btn_1:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  color: var(--white);
}

.bar-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.bar-icon:hover {
  color: var(--primary);
}

/* Hero Section */
.hero_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 190px;
  /* background: radial-gradient(
      circle at 30% 20%,
      rgba(121, 40, 202, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 255, 136, 0.15) 0%,
      transparent 50%
    ),
    var(--dark); */
  background: var(--gradient);
}

.hero_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.hero-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.animated-title {
  margin-bottom: 20px;
}

.word span {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bounce 2s infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn.primary {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.cta-btn.secondary {
     background: transparent;
    color: var(--white);
  border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.element img {
  width: 40px;
  height: 40px;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.element-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

.element-4 {
  bottom: 15%;
  right: 20%;
  animation-delay: 3s;
}

.element-5 {
  top: 50%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.main-hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  animation: pulse 4s ease-in-out infinite;
}

.main-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.section-header h2 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(121, 40, 202, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.about-content h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about-content h3 span {
  background: var(--light-gray);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.stats-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat h4 {
  font-size: 2.5rem;
  background: var(--secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.mission-highlights {
  margin-top: 40px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.highlight i {
  font-size: 2rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
}

.highlight h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.about_img {
  position: relative;
  animation: fadeInRight 1s ease;
}

.about_img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about_img:hover img {
  transform: scale(1.02);
}

/* Services Section */
/* .services-section {
  padding: 100px 0;
  background: var(--dark);
} */

.service-card {
  background: var(--dark-gray);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 15px;
  color: var(--primary-dark);
}

/* Technology Section */
.technology-section {
  padding: 100px 0;
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.tech-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.tech-content h2 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.tech-features {
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.feature i {
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
}

.feature h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.tech-visual {
  position: relative;
  animation: fadeInLeft 1s ease;
}

.tech-graphic {
  position: relative;
  width: 100%;
  height: 400px;
}

.tech-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--gradient);
}

.faq-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark-gray);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

/* Footer */
footer {
  background: var(--white);
  padding: 80px 0 0;
}

.footer_logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer_logo p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.quick_links h5 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.quick_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick_links ul li {
  margin-bottom: 12px;
}

.quick_links ul li a {
  color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.quick_links ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 60px;
}

.footer-bottom p {
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(6, 6, 6, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Sidebar Styles - Fixed */
.sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 300px;
  height: 100%;
  background: var(--light-gray);
  z-index: 1002;
  transition: all 0.3s ease;
  padding: 30px;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.sidebar.open {
  right: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  backdrop-filter: blur(5px);
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nav-header img {
  width: 150px;
}

.close_sider {
  width: 35px;
  height: 35px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: all 0.3s ease;
}

.close_sider:hover {
  transform: rotate(90deg);
}

.sibde_links {
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.sibde_links li {
  margin-bottom: 15px;
  list-style: none;
}

.sibde_links li a {
  color: var(--accent);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sibde_links li a:hover,
.sibde_links li a.active {
  color: var(--primary);
  padding-left: 10px;
}

.contact-sidbar {
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.contact-sidbar h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.contact-sidbar li {
  margin-bottom: 15px;
  list-style: none;
}

.contact-sidbar li a {
  color: rgb(52, 125, 25);
  text-decoration: none;
  font-size: 14px;
  /* display: flex; */
  /* align-items: flex-start; */
  gap: 10px;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.contact-sidbar li a:hover {
  color: var(--primary);
}

.contact-sidbar li a i {
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.sidebar .header_btn {
  margin-top: 30px;
}

.sidebar .header_btn a {
  display: block;
  text-align: center;
  background: var(--secondary);
  color: var(--light-gray);
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sidebar .header_btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Hide sidebar login button on desktop */
@media (min-width: 992px) {
  .sidebar .header_btn {
    display: none;
  }
}

/* About Page Specific Styles */

/* Breadcrumb Section */
.about_breadcrumb {
  /* padding: 200px 0 60px; */
  background: var(--dark-gray);
  position: relative;
  overflow: hidden;
}

.about_breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(121, 40, 202, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.breadcrump_content {
  text-align: center;
}

.breadcrump_content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* font-family: "Orbitron", sans-serif; */
}

.breadcrump_content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrump_content ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.breadcrump_content ul li a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrump_content ul li a:hover {
  color: var(--primary-dark);
}

/* About Section (Updated for about page) */
.about-section {
  padding: 100px 0;
  background: var(--gradient);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.1rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Roadmap Section */
.roadmap-section {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.roadmap-row {
  margin-top: 60px;
}

.roadmap-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.roadmap-box {
  background: var(--dark);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.roadmap-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: 1;
}

.roadmap-box:hover::before {
  left: 0;
}

.roadmap-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.roadmap-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.roadmap-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.roadmap-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--white);
  /* font-family: "Orbitron", sans-serif; */
}

.roadmap-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.95rem;
}

.roadmap-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Subscribe Section */
.subscribe-section {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}


.subscribe-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.subscribe-image {
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.subscribe-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.subscribe-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.subscribe-content h3 span {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subscribe-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  max-width: 500px;
}

.newsletter-form form {
  display: flex;
  gap: 15px;
  background: var(--dark-gray);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 25px;
  color: var(--white);
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero-section {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.services-hero-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.services-hero-image {
  text-align: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.services-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.services-hero-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: var(--white);
  line-height: 1.2;
}

.services-hero-content h2 span {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.highlight-content h5 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
  /* font-family: "Orbitron", sans-serif; */
}

.highlight-content p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Services Section (Updated for services page) */
.services-section {
  padding: 100px 0;
  background: var(--gradient);
}

.services-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.services-section .service-card {
  background: var(--i);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* .services-section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: 1;
} */

.services-section .service-card:hover::before {
  left: 0;
}

.services-section .service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.services-section .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.services-section .service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.services-section .service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.services-section .service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}


.services-section .service-link {
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-section .service-link:hover {
  gap: 15px;
  color: var(--primary-dark);
}

/* Technology Section (Updated for services page) */
.technology-section {
  padding: 100px 0;
  background: var(--gradient);
}

.technology-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.technology-section .section-header {
  margin-bottom: 60px;
}

.tech-content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--white);
}

.tech-content h3 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.tech-features {
  margin-top: 30px;
}

.tech-features .feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tech-features .feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.tech-features .feature i {
  font-size: 1.8rem;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 5px;
  flex-shrink: 0;
}

.tech-features .feature h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.tech-features .feature p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.tech-visual {
  position: relative;
  text-align: center;
}

.tech-graphic {
  position: relative;
  width: 100%;
  height: 400px;
}

.tech-graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  border-radius: 15px;
}

/* CTA Section (Updated for services page) */
.cta-section {
  padding: 100px 0;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .cta-btn.primary {
  background: var(--white);
  color: var(--dark);
}

.cta-section .cta-btn.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-section .cta-btn.secondary:hover {
  background: var(--white);
  color: var(--dark);
}

/* Contact Page Specific Styles */

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.contact-info {
  padding: 40px;
  background: var(--dark-gray);
  border-radius: 15px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
  /* font-family: "Orbitron", sans-serif; */
}

.contact-info > p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-content h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
  /* font-family: "Orbitron", sans-serif; */
}

.contact-content a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-content a:hover {
  color: var(--accent);
}

.contact-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
  font-size: 1rem;
}

.social-media h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
  /* font-family: "Orbitron", sans-serif; */
}

.social-media .social-links {
  display: flex;
  gap: 15px;
}

.social-media .social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-media .social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Contact Form */
.contact-form {
  padding: 40px;
  background: var(--dark-gray);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--white);
  /* font-family: "Orbitron", sans-serif; */
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .cta-btn {
  width: 100%;
  padding: 18px 30px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  display: block;
  border: none;
}

/* CTA Section (Updated for contact page) */

/* Chatbot Styles */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.chatbot-toggle i {
  color: white;
  font-size: 24px;
}

.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: 80%;
  padding: 12px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.bot-message {
  background: #f1f1f1;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.user-message {
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.chatbot-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid #eee;
  background: white;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
}

.chatbot-input button {
  background: linear-gradient(135deg, #2ecc71, #1abc9c);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.faq-option {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.faq-option:hover {
  background: #f1f1f1;
  border-color: #2ecc71;
}

.input-hint {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  font-style: italic;
}

/* Responsive styles */
@media (max-width: 768px) {
  .chatbot-window {
    width: 300px;
    height: 450px;
  }

  .chatbot-container {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 30px);
    right: 15px;
  }
}
