body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}
/* h1, h2, h3 {
  color: #1d3b72;
  margin-top: 1em;
} */

/* Header CTA Top Bar */
/* Top header styling for large screens */
header.header-2 .top-header {
  position: relative;
  background: transparent;
  padding: 10px 0;
  z-index: 1;
}

/* Background shape using clip-path for large screens */
header.header-2 .top-header::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 714px;
  background: #153fb2;
  clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Contact text inside top header */
header.header-2 .top-header .top-contact span {
  color: #ffffff;
  font-size: 14px;
  margin-right: 10px;
  white-space: nowrap;
}
header.header-2 .top-header .top-contact .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustment: medium screens */
@media (max-width: 1199px) {
  header.header-2 .top-header {
    padding: 6px 30px;
  }
}

/* Responsive adjustment: small screens */
@media (max-width: 991px) {
  header.header-2 .top-header {
    background: #086ad7;
    padding: 6px 15px;
  }

  header.header-2 .top-header::before {
    display: none; /* Remove clipped background on mobile */
  }

  header.header-2 .top-header .top-contact span,
  header.header-2 .top-header .top-contact .separator {
    color: #ffffff;
  }
}


/* Header Main Navigation */
.main-header-wraper {
  background-color: #09053e;
  border-bottom: 1px solid #eee;
}
.header-menu .main-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.header-menu .main-menu li {
  display: inline-block;
  margin: 0 15px;
}
.header-menu .main-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s;
}
.header-menu .main-menu li a:hover {
  color: #086ad7;
}

/* Consultancy Button */
.theme-btn {
  display: inline-block;
  background-color: #086ad7;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.theme-btn:hover {
  background-color: #0b5ec7;
}
.header-right {
  margin-right: right;
}

/* Mobile Nav */
.mobile-nav-bar {
  position: relative;
}
#hamburger {
  cursor: pointer;
}
.mobile-nav {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  z-index: 99;
  width: 250px;
}
.mobile-nav.active {
  display: block;
}
.mobile-nav a {
  display: block;
  margin-bottom: 10px;
  color: #333;
}

/* Main Content */
main.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
section {
  margin-bottom: 50px;
}
ul {
  padding-left: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
th, td {
  padding: 10px;
  border: 1px solid #ccc;
}
th {
  background: #e3f2fd;
}

/* CTA Section */
.bg-light {
  background-color: #f9f9f9 !important;
}
.rounded {
  border-radius: 10px;
}
.text-center {
  text-align: center;
}

/* Footer */
footer {
  background-color: #1a237e;
  color: white;
  font-size: 14px;
}

/* Fix: Consultancy Button Position (Desktop) */
@media (min-width: 1200px) {
  .header-right {
    margin-left: auto !important;
    justify-content: flex-end;
  }
}

/* Preloader Animation Support */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preloader.loaded {
  display: none;
}
.animation-preloader .spinner {
  border: 4px solid #eee;
  border-top: 4px solid #086ad7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.txt-loading {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  color: #086ad7;
}
.letters-loading {
  position: relative;
  display: inline-block;
}
.letters-loading::before {
  content: attr(data-text-preloader);
  color: #086ad7;
  position: absolute;
  top: -3px;
  left: 0;
  transform: rotateY(-90deg);
  opacity: 0;
  animation: letters-loading 4s infinite;
}
.letters-loading:nth-child(2)::before { animation-delay: 0.2s; }
.letters-loading:nth-child(3)::before { animation-delay: 0.4s; }
.letters-loading:nth-child(4)::before { animation-delay: 0.6s; }
.letters-loading:nth-child(5)::before { animation-delay: 0.8s; }
.letters-loading:nth-child(6)::before { animation-delay: 1s; }
.letters-loading:nth-child(7)::before { animation-delay: 1.2s; }
.letters-loading:nth-child(8)::before { animation-delay: 1.4s; }

/* Animations */
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
@keyframes letters-loading {
  0%, 75%, 100% { opacity: 0; transform: rotateY(-90deg); }
  25%, 50% { opacity: 1; transform: rotateY(0); }
}
.hero-card .card-style {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.hero-card .card-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.hero-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #464141;
}
.hero-card p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0;
}
.top-contact {
  font-size: 14px;
  color: #ffffff;
}
.top-contact span {
  display: inline-block;
  margin-right: 5px;
  white-space: nowrap;
}
.top-contact .separator {
  color: #888;
  font-weight: 400;
}

/* Full Background Hero Section */
.hero-full-bg {
  position: relative;
  background-image: url('797357-hyperautomation-vs-intelligent-process-automation.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.hero-container {
  max-width: 1920px;      
  margin: 0 auto;
}
/* Overlay for better text contrast */
.hero-full-bg .overlay {
  background-color: rgba(45, 52, 115, 0.727); /* dark overlay */
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  display: flex;
  align-items: center;
}

/* Text styling */
.hero-full-bg .content {
  max-width: 800px;
}
.hero-full-bg h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.hero-full-bg p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.hero-full-bg .hero-logo {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.white-paragraph.h2{
  text-align: center;
  color: #fbfbfb;
  font-family: "Catamaran", Sans-serif;
  font-size: 46px;     
  font-weight: 700;     
  line-height: 66px;
  padding: 20px 20px 20px 20px;
  
}
.big-bold {
  text-align: center;
  font-family: "Catamaran", Sans-serif;
  font-size: 20px;     
  align-items:flex-start;
}

.zoom-container {
  background: #ffffff; /* Light neutral background */
  color: #222;
  padding: 60px 40px;
  border-radius: 16px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

  /* Zoom on hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zoom-container:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.zoom-container h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.feature-list li {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.feature-list li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 576px) {
  .zoom-container {
    padding: 40px 20px;
  }
}

#apps {
  padding: 60px 0;
}
#apps h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a237e;
  text-align: center;
}
#apps p {
  font-size: 1rem;
  color: #444;
}
#apps ul {
  padding-left: 20px;
}
#apps li {
  padding: 0 0;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.feature-core-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e3e3e3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.feature-core-card:hover {
  transform: scale(0.97);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: #086ad7;
}

/* Icon styles */
.feature-icon i {
  font-size: 2rem;
  color: #086ad7;
}
.feature-core-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a237e;
}
.feature-core-card p {
  font-size: 0.95rem;
  color: #555;
}

.reason-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: color 0.3s ease;
  z-index: 1;
}

/* Background sliding layer */
.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #086ad7, #47a8f5);
  transition: all 0.4s ease;
  z-index: 0;
}

/* Hover effect: slide background in from left */
.reason-card:hover::before {
  left: 0;
}

/* Raise text above background */
.reason-card * {
  position: relative;
  z-index: 1;
}

/* On hover: change text color */
.reason-card:hover h5,
.reason-card:hover p,
.reason-card:hover .reason-number {
  color: #fff;
}

/* Number styling */
.reason-number {
  font-size: 2rem;
  font-weight: bold;
  color: #086ad7;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Heading */
.reason-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Paragraph */
.reason-card p {
  font-size: 0.95rem;
  color: #444;
  transition: color 0.3s ease;
}

/* Responsive padding */
@media (max-width: 576px) {
  .reason-card {
    padding: 25px 15px;
  }
}

.challenges-section {
  background-color: #f8f9fc;
}

.challenge-card {
  display: flex;
  gap: 20px;
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: flex-start;
}

.challenge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.challenge-icon {
  font-size: 1.8rem;
  color: #086ad7;
  flex-shrink: 0;
  margin-top: 5px;
}

.challenge-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 5px;
}

.challenge-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
.challenges-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}

@media (max-width: 767px) {
  .challenges-img {
    margin-bottom: 20px;
  }
}

.footer-modern {
  background-color: #0d1b2a;
  color: #f8f9fa;
  font-size: 0.95rem;
}

.footer-modern .footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-modern .footer-link:hover {
  color: #fff;
}

.footer-modern h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-modern small {
  display: block;
  font-size: 0.75rem;
  color: #999;
}

 .card-container {
    max-width: 1000px;
    margin: 2rem auto;
    background: #f9fafb;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  }

  .card-text-content {
    flex: 1;
  }

  .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2b2f42;
    margin-bottom: 1rem;
  }

  .card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }

  .highlight {
    color: #0078d4;
    font-weight: 600;
  }

  .card-image {
    flex: 0 0 250px;
    max-width: 700px;
  }

  .card-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .card-container {
      flex-direction: column;
      text-align: center;
    }

    .card-image {
      max-width: 100%;
    }
  }

  .glass-banner {
    width: 100%;
    min-height: 300px;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    color: #2b2f42;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .glass-banner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0078d4 0%, #00b4f0 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
  }

  .glass-text {
    flex: 1;
    z-index: 1;
  }

  .glass-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .glass-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
  }

  .glass-description strong {
    color: #0078d4;
  }

  .glass-graphic {
    flex: 0 0 280px;
    z-index: 1;
  }

  .glass-graphic img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
  }

  @media (max-width: 768px) {
    .glass-banner {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }

    .glass-graphic {
      margin-top: 1.5rem;
    }
  }

.features-grid {
    max-width: 1100px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .feature-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: #0078d4;
  }

  .feature-icon {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 0.75rem;
  }

  .feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2b2f42;
  }

  .feature-desc {
    font-size: 0.95rem;
    color: #555;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
  }

  .feature-card:hover .feature-desc {
    opacity: 1;
    max-height: 150px;
    margin-top: 1rem;
  }


  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .benefit-card {
    background: #ffffff;
    border: 1px solid #e3e7ec;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .benefit-card:hover {
    border-color: #0078d4;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 120, 212, 0.08);
  }

  .benefit-icon {
    font-size: 1.5rem;
    color: #0078d4;
    margin-top: 0.2rem;
  }

  .benefit-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }