img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #05070a;
  --bg-dark: #020305;
  --bg-card: rgba(10, 15, 25, 0.8);
  --text: #ffffff;
  --muted: #a0a0a0;
  --accent: #f6b952;
  --accent-hover: #f8b42d;
  --bord: rgba(243, 166, 31, 0.2);
  --bord-bright: rgba(243, 166, 31, 0.5);
  --nav-height: 75px;
  --theme135: linear-gradient(135deg, #01060c 0%, #171b26 50%, #01060c 100%);
  --theme90: linear-gradient(90deg, #01060c 0%, #171b26 50%, #01060c 100%);
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #01060c 0%, #171b26 50%, #01060c 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
p {
  
  text-justify: inter-word;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 2px solid var(--accent);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.icon-color {
  color: var(--accent);
  width: 40px;
  height: 40px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 60px;
  width: auto;
}
.logo-main {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: -0.2px;
}
.logo-sub {
  display: none;
}
.menu {
  display: flex;
  align-items: center;
}
.menu a {
  margin-left: 30px;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}
.menu a:hover {
  color: var(--accent);
}
.menu .cta {
  background: var(--accent);
  color: #000;
  padding: 8px 24px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 30px;
  text-transform: none;
}
.menu .cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  color: #333;
}
.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  width: 100%;
  overflow: hidden;
  padding: 0;
}
.slider-container {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out;
  display: flex;
  align-items: center;
  padding: 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
  border-bottom: 2px solid var(--bord-bright);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  transform: translateY(20px);
  transition: transform 0.8s ease-out;
}
.slide.active .hero-content {
  transform: translateY(0);
}
.hero-slider h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.accent-text {
  color: var(--accent);
}
.hero-text {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(243, 166, 31, 0.3);
}
.dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 10px;
}
.btn {
  display: inline-block;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  border: 0;
  border-radius: 4px;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 166, 31, 0.2);
}
section {
  padding: 100px 80px;
  background: transparent;
}
section h2 {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: left;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--theme90);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(5px);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  background: var(--theme135);
}
.card-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  width: 100%;
  padding-bottom: 15px;
  justify-content: center;
  border-bottom: 2px solid var(--bord);
}
.service-icon {
  width: 60px;
  height: 60px;
}
.card h3 {
  font-size: 1.5rem;
  color: #fff;
}
.card p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1rem;
}
.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.blog-card {
  background: var(--theme90);
  border: 1px solid var(--bord);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  background: var(--theme135);
}
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-content {
  padding: 25px;
}
.blog-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.blog-card p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-left {
  background: var(--theme90);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--bord);
  backdrop-filter: blur(10px);
}
.contact-left h2,
.contact-right h2 {
  margin-bottom: 10px;
}
.contact-left p {
  color: var(--muted);
  margin-bottom: 40px;
}
.contact-left form input,
.contact-left form select,
.contact-left form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #222;
  border-radius: 4px;
  background: #0a0a0a;
  color: #fff;
  font-family: inherit;
}
.contact-left form input:focus,
.contact-left form select:focus {
  border-color: var(--accent);
  outline: none;
}
.contact-right {
  background: transparent;
  padding: 0;
}
.contact-info {
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #111;
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item-icon {
  color: var(--accent);
  font-size: 1.4rem;
  width: 24px;
}
.contact-item h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}
.map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bord);
}
.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-footer {
  background: linear-gradient(to bottom, #0a0a0a, #000);
  padding: 60px 80px 30px;
  border-top: 1px solid rgba(246, 185, 82, 0.1);
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 1px;
}

.footer-center {
  text-align: center;
  flex: 2;
}

.footer-center h3 {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tagline-row .line {
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.tagline-row p {
  font-size: 1rem;
  color: #ccc;
  font-weight: 300;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex: 1;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-logo,
  .footer-social {
    justify-content: center;
  }
}
/* Contact Page Specific Styles */
.contact-hero-list {
  list-style: none;
  margin-top: 30px;
}
.contact-hero-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}
.contact-hero-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.3rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-divider {
  text-align: center;
  margin: 50px 0;
  position: relative;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bord);
  z-index: 1;
}
.section-divider-text {
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  padding: 0 40px;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #fff;
}
.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.steps-column::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
}
.step-item {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-dark);
  border: 2px solid var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
}
.step-content h4 {
  color: var(--accent);
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.approach-card {
  background: var(--theme90);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}
.approach-card h3 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 1.6rem;
}
.approach-list {
  list-style: none;
}
.approach-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #fff;
}
.approach-list li i {
  color: var(--accent);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.industry-card {
  background: var(--bg-dark);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.3s ease;
}
.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.industry-card h4 {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2;
}

.cta-banner {
  background: var(--theme90);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 50px 60px;
  margin: 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}
.cta-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cta-icon {
  font-size: 3rem;
  color: var(--accent);
}
.cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--accent);
  text-align: left;
}
.cta-text p {
  color: #fff;
  font-size: 1.1rem;
}
.cta-btn {
  white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-slider {
    padding: 0;
  }
  .slide {
    padding: 0 60px;
  }
  section {
    padding: 80px 40px;
  }
  footer {
    padding: 40px;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
  .approach-card {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .hero-slider h1 {
    font-size: 3.2rem;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-left {
    padding: 30px;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .cta-content {
    flex-direction: column;
  }
  .cta-text h2 {
    text-align: center;
  }
  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 15px 20px;
  }
  .hamburger {
    display: flex;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 20px 40px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1050;
    gap: 30px;
    overflow-y: auto;
  }
  .menu.active {
    right: 0;
  }
  .menu a {
    margin: 0;
    font-size: 1.2rem;
  }
  .menu .cta {
    margin: 0;
    padding: 12px 30px;
  }

  .hero-slider {
    min-height: 60vh;
  }
  .slider-container {
    height: 60vh;
  }
  .slide {
    padding: 0 20px;
    text-align: center;
    justify-content: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-slider h1 {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .hero-overlay {
    background: rgba(0, 0, 0, 0.8);
  }

  section {
    padding: 60px 20px;
  }
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .contact-info {
    margin-bottom: 30px;
  }
  .map {
    height: 250px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-links a {
    margin: 0 10px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .approach-card {
    grid-column: span 1;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-divider-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }
  .logo-main {
    font-size: 1.2rem;
  }
  .logo-sub {
    font-size: 0.6rem;
  }

  .hero-slider {
    min-height: 50vh;
  }
  .slider-container {
    height: 50vh;
  }
  .hero-slider h1 {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    padding: 12px 20px;
  }
  .slider-dots {
    bottom: 20px;
  }
}

/* data entry services */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background: #000;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?auto=format&fit=crop&w=1400&q=80")
    no-repeat center right;
  background-size: contain;
  opacity: 0.6;
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 30%, transparent 100%);
  z-index: 2;
}
.hero-left {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
.hero-left h1 {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-tagline span {
  color: var(--accent);
}
.hero-desc {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  text-align: left;
}
.hero-checklist {
  list-style: none;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.hero-checklist li::before {
  content: "✓";
  background: var(--accent);
  color: #000;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-header::before,
.section-header::after {
  content: "";
  height: 2px;
  width: 100px;
  background: var(--accent);
  opacity: 0.5;
}
.section-header h2 {
  margin: 0;
  font-size: 2.2rem;
  color: var(--accent);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 0 40px;
}
.solution-card {
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 15px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.solution-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.solution-card .icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.solution-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.solution-card p {
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
}

.how-we-work-container {
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.how-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 30px;
  right: -10px;
  color: var(--accent);
  font-size: 1.5rem;
  opacity: 0.6;
}
.how-icon-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--accent);
  background: rgba(246, 185, 82, 0.1);
}
.how-step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #fff;
}
.how-step p {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

.industry-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}
.industry-grid-compact.bottom-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 750px;
  margin-top: 15px;
}
.industry-card-small {
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  text-align: center;
  border-radius: 4px;
}
.industry-card-small .icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.industry-card-small h4 {
  font-size: 0.85rem;
  color: #fff;
}

.cta-banner-exact {
  background: linear-gradient(90deg, #111 0%, #222 100%);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 40px;
}
.cta-left-content {
  display: flex;
  align-items: center;
  gap: 25px;
}
.cta-large-icon {
  font-size: 3rem;
  color: var(--accent);
}
.cta-text-content h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 5px;
  text-align: left;
}
.cta-text-content p {
  color: #eee;
  margin: 0;
  text-align: left;
}
.cta-button-rounded {
  background: var(--accent);
  color: #000;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.cta-button-rounded:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-we-work-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .how-step:not(:last-child)::after {
    display: none;
  }
  .industry-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-grid-compact.bottom-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* chat support */
body {
  background: #05070a
    url("https://www.transparenttextures.com/patterns/dark-matter.png"); /* Subtle texture */
}

/* Hero Refinement */
.hero-section-chat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px;
  background: #000;
  position: relative;
  overflow: hidden;
  min-height: 550px;
}
.hero-section-chat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1549923746-c502d488b3ea?auto=format&fit=crop&w=1400&q=80")
    no-repeat center right;
  background-size: cover;
  opacity: 0.7;
  z-index: 1;
}
.hero-section-chat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 35%, transparent 100%);
  z-index: 2;
}
.hero-chat-left {
  position: relative;
  z-index: 3;
  max-width: 650px;
}
.hero-chat-left h1 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-chat-left .tagline {
  font-size: 1.3rem;
  color: #ccc;
  line-height: 1.5;
  max-width: 500px;
}

/* Section Ornament */
.page-light-trail {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("https://www.transparenttextures.com/patterns/stardust.png"); /* Particle effect */
  opacity: 0.3;
  z-index: 0;
}

/* About Section Refinement */
.chat-about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 80px;
  align-items: center;
  position: relative;
}
.chat-about-text h3 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 25px;
  line-height: 1.4;
}
.chat-about-text p {
  color: #eee;
  margin-bottom: 30px;
  text-align: left;
}
.chat-checklist {
  list-style: none;
}
.chat-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #fff;
}
.chat-checklist li::before {
  content: "✓";
  background: var(--accent);
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
}
.chat-about-img img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Solutions Grid Refinement */
.solutions-title {
  text-align: center;
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
}
.chat-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 40px;
}
.chat-solution-card {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(246, 185, 82, 0.15);
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}
.chat-solution-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}
.chat-solution-card .icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 25px;
}
.chat-solution-card h4 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.chat-solution-card p {
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}

/* Features & Benefits Refinement */
.features-benefits {
  padding: 80px;
  position: relative;
}
.features-grid-chat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 100px;
  margin-top: 50px;
}
.feature-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(246, 185, 82, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-info h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature-info p {
  color: #888;
  font-size: 0.95rem;
  text-align: left;
}

/* CTA Banner Exact */
.cta-chat-exact {
  background: url("https://images.unsplash.com/photo-1556742031-c6961e8560b0?auto=format&fit=crop&w=1400&q=80")
    no-repeat center center;
  background-size: cover;
  margin: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.cta-chat-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 30%,
    rgba(0, 0, 0, 0.6) 100%
  );
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-chat-left h2 {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: left;
}
.cta-chat-left p {
  color: #eee;
  font-size: 1.1rem;
  max-width: 600px;
  text-align: left;
  margin: 0;
}
.cta-btn-rounded {
  background: var(--accent);
  color: #000;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  white-space: nowrap;
}

/* Footer Exact match */
.footer-chat {
  background: #000;
  padding: 60px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer-brand h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.footer-vision {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.footer-vision::before,
.footer-vision::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--accent);
}
.footer-vision span {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-bottom: 30px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

@media (max-width: 1200px) {
  .chat-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .cta-chat-overlay {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-chat-left h2,
  .cta-chat-left p {
    text-align: center;
  }
  .chat-about {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .features-grid-chat {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.team-section {
    padding: 100px 0 100px 80px;
    overflow: hidden;
}

.team-header {
    max-width: 800px;
    margin-bottom: 60px;
    padding-right: 80px;
}

.team-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.team-header p {
    font-size: 1.2rem;
    color: var(--muted);
    text-align: left;
}

.team-scroll-container {
    overflow-x: auto;
    padding-bottom: 60px;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.team-scroll-container::-webkit-scrollbar {
    display: none;
}

.team-cards {
    display: flex;
    gap: 30px;
    padding-right: 80px;
}

.team-card {
    flex: 0 0 350px;
    position: relative;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.3s ease;
}

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

.team-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    color: #000;
    z-index: 5;
    transition: all 0.3s ease;
}

.team-card:hover .team-info {
    bottom: -20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
    text-align: left;
}

.team-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    text-align: left;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .team-section {
        padding-left: 40px;
    }
    .team-header {
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0 60px 20px;
    }
    .team-header {
        padding-right: 20px;
        margin-bottom: 40px;
    }
    .team-header h2 {
        font-size: 2.2rem;
    }
    .team-card {
        flex: 0 0 300px;
    }
    .team-cards {
        padding-right: 20px;
    }
}

/* Blog Specific Styles */
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--accent);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-details-container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-article {
    background: var(--theme90);
    border: 1px solid var(--bord);
    border-radius: 12px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.blog-article h1 {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-article .featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--bord);
}

.blog-article-content {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-article-content p {
    margin-bottom: 25px;
    text-align: left;
}

.blog-article-content h2, 
.blog-article-content h3 {
    color: #fff;
    margin: 40px 0 20px;
}

.blog-article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 30px;
    background: rgba(246, 185, 82, 0.05);
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--theme90);
    border: 1px solid var(--bord);
    border-radius: 12px;
    padding: 30px;
}

.sidebar-widget h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--bord);
    padding-bottom: 10px;
}

.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 5px;
}

.recent-post-info span {
    font-size: 0.8rem;
    color: var(--muted);
}

@media (max-width: 992px) {
    .blog-details-container {
        grid-template-columns: 1fr;
    }
    
    .blog-article {
        padding: 30px;
    }
    
    .blog-article h1 {
        font-size: 2rem;
    }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.modal-content {
  background: var(--theme135);
  margin: 10% auto;
  padding: 40px;
  border: 1px solid var(--accent);
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--muted);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--accent);
}

.modal h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--bord);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(246, 185, 82, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

