

/* Section 1 -> Just After Navber */
/* Animation Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Hero Section Styling */
.hero-section {
  padding: 80px 5%;
  background: radial-gradient(circle at top right, rgba(18, 221, 240, 0.05), transparent),
              radial-gradient(circle at bottom left, rgba(145, 40, 195, 0.05), transparent);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Feature List */
.hero-features {
  list-style: none;
  margin-bottom: 40px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.hero-features ion-icon {
  color: var(--tertiary);
  font-size: 22px;
}

/* SVG Illustration Area */
.hero-image {
  display: flex;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.hero-image svg {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-features li { justify-content: center; }
  .hero-image { order: -1; } /* Image on top for mobile */
}









/* Section 2 -> Features Section */


.solutions-section {
  padding: 80px 5%;
  background-color: #f9f9ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.second-group {
  border-top: 1px solid #e0e0e0;
  padding-top: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
}

.section-header h2 span {
  color: var(--primary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.solution-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-10px);
  border-color: var(--tertiary);
  box-shadow: 0 15px 35px rgba(48, 27, 243, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(48, 27, 243, 0.08);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon ion-icon {
  font-size: 30px;
  color: var(--primary);
}

.solution-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #1a1a1a;
}

.solution-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Detail Card Specifics */
.detail-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.view-more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.view-more:hover {
  gap: 12px;
}

@media (max-width: 768px) {
  .section-header h2 { font-size: 1.8rem; }
}






/* Section 3 ->  */

.stats-section {
  position: relative;
  padding: 100px 5%;
  background-color: var(--white);
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-intro {
  max-width: 800px;
  margin-bottom: 60px;
}

.stats-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.stats-intro h2 span {
  color: var(--secondary);
}

.stats-intro p {
  line-height: 1.8;
  color: #666;
  font-size: 1.1rem;
}

.counters-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter-card {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(48, 27, 243, 0.05);
  border-bottom: 4px solid var(--tertiary);
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
}

.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.counter-card p {
  font-weight: 600;
  color: #444;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-intro { text-align: center; }
  .counter-number { font-size: 2.5rem; }
}









/* section 4 */
/* Tailor-Made Solutions Styling */
.tailor-made-section {
  background-color: #0f1015; /* Sleek dark background */
  padding: 100px 5%;
  color: #ffffff;
}

.dark-header h2 {
  color: #ffffff !important;
  margin-bottom: 20px;
}

.dark-header p {
  color: #a0a0a0 !important;
  max-width: 700px;
  margin: 0 auto 60px;
}

.tailor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 35px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.tailor-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-12px);
  border-color: var(--tertiary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Card (Enterprise) highlight */
.featured-card {
  border-color: rgba(145, 40, 195, 0.3);
  background: linear-gradient(145deg, rgba(48, 27, 243, 0.05), rgba(145, 40, 195, 0.05));
}

.tailor-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
}

.startup-icon { background: rgba(18, 221, 240, 0.1); color: var(--tertiary); }
.enterprise-icon { background: rgba(145, 40, 195, 0.1); color: var(--secondary); }
.dev-icon { background: rgba(48, 27, 243, 0.1); color: var(--primary); }

.tailor-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.tailor-card p {
  color: #b0b0b0;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 30px;
  flex-grow: 1;
}

.know-more {
  color: var(--tertiary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.know-more:hover {
  gap: 15px;
  color: #fff;
}







/* section 5 */
.human-tech-section.light-theme {
  background-color: #ffffff; /* Pure white background */
  padding: 100px 5%;
  position: relative;
}

/* Subtle background decoration */
.human-tech-section.light-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(18, 221, 240, 0.05), transparent),
              radial-gradient(circle at 10% 90%, rgba(48, 27, 243, 0.03), transparent);
  pointer-events: none;
}

.human-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.human-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #ffffff;
  border-radius: 25px;
  border: 1px solid #f0f0f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.human-card:hover {
  transform: scale(1.02);
  border-color: var(--tertiary);
  box-shadow: 0 20px 40px rgba(48, 27, 243, 0.08);
}

.human-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 8px 15px rgba(48, 27, 243, 0.2);
}

.human-text h3 {
  color: var(--text-main);
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.human-text p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .human-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .human-icon {
    margin-bottom: 10px;
  }
}




/* section 6 */
.features-section {
  padding: 100px 5%;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid transparent; /* Keeps layout stable on hover */
}

.feature-item:hover {
  background: #fcfcff;
  transform: translateY(-5px);
  border-color: rgba(18, 221, 240, 0.3); /* Using Tertiary color */
}

.feature-icon {
  font-size: 40px;
  color: var(--primary); /* Using #301BF3 */
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

/* Small decorative dot behind icon */
.feature-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--tertiary); /* Using #12DDF0 */
  border-radius: 50%;
  opacity: 0.2;
  bottom: 0;
  right: -5px;
  z-index: -1;
}

.feature-item h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}




/* Section 7 */

.performance-section {
  padding: 100px 5%;
  background-color: #fcfcff;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.perf-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f5;
}

.perf-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(48, 27, 243, 0.08);
  border-color: var(--secondary);
}

.perf-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 6px 15px rgba(48, 27, 243, 0.2);
}

.perf-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 700;
}

.perf-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .performance-grid {
    grid-template-columns: 1fr;
  }
  .perf-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}






/* Section 8 */

.testimonial-section {
  padding: 100px 5%;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative circle background */
.testimonial-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18, 221, 240, 0.05) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #fdfdfd;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #f0f0f5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(145, 40, 195, 0.08);
  border-color: var(--secondary);
}

/* Featured Card Style */
.highlight-card {
  border-bottom: 4px solid var(--primary);
}

.stars {
  color: #ffb400; /* Standard gold for stars */
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.stars ion-icon {
  margin-right: 2px;
}

.feedback {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.client-details h4 {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.client-details span {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}








/* Section 9 -> FAQ */
.faq-section {
  padding: 100px 5%;
  background-color: #fcfcff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  transition: background 0.3s;
}

.faq-question span {
    font-size: 1.1rem;
}

.faq-question ion-icon {
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: #fafaff;
  padding: 0 25px;
}

.faq-answer p {
  padding: 20px 0;
  color: #666;
  line-height: 1.6;
}

/* Active State Styles */
.faq-item.active {
  border-color: var(--tertiary);
  box-shadow: 0 10px 20px rgba(48, 27, 243, 0.05);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust as needed */
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-question ion-icon {
  transform: rotate(45deg);
  color: var(--secondary);
}






/* Section 10 Footer */
.main-footer {
  background-color: #f8f9fa;
  padding: 60px 5% 20px;
  border-top: 1px solid #eee;
  color: #444;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-address img{
    width: 180px;
}

.footer-address h4 {
  color: var(--primary); /* #301BF3 */
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.footer-address p {
  line-height: 1.6;
  font-size: 1rem;
  color: #555;
}

.contact-link {
  color: var(--secondary); /* #9128C3 */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: 0.3s;
}

.contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--tertiary); /* #12DDF0 */
  transition: width 0.3s;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #888;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    align-items: center;
  }
}






/* Rotate the dashed ring */
.ring-rotate {
  transform-origin: center;
  animation: rotateClockwise 20s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating nodes animation */
.node {
  animation: floatNodes 5s ease-in-out infinite;
}

.node-whatsapp { animation-delay: 0s; }
.node-sms { animation-delay: 1s; }
.node-rcs { animation-delay: 2s; }
.node-ai { animation-delay: 3s; }

@keyframes floatNodes {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Connection line pulsing effect */
.line-pulse {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: lineDraw 3s ease-in-out infinite;
}

@keyframes lineDraw {
  0% { stroke-dashoffset: 100; opacity: 0.1; }
  50% { stroke-dashoffset: 0; opacity: 0.5; }
  100% { stroke-dashoffset: -100; opacity: 0.1; }
}

/* Hub scaling animation */
.hub-group {
  transform-origin: center;
  animation: hubScale 4s ease-in-out infinite;
}

@keyframes hubScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}