body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

/* Blurred background image */
.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("copilot wallpaper.jpg");
  background-size: cover;
  background-position: center;
  /* filter: blur(10px); */
  z-index: -2;
}

/* Optional: dark semi-transparent overlay for contrast */
.blur-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 13, 255, 0.29); /* Adjust opacity for brightness */
  opacity: 0.6;
  z-index: -1;
}

/* Main content wrapper */
.content-wrapper {
  position: relative;
  z-index: 1;
}
/* 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: #0e615386;
  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: #020806de;
  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;
  }

  /*Power Platform*/
 .hero-powerplatform-elevated {
  position: relative;
  background: linear-gradient(135deg, #fdfdfd 0%, #f6f9ff 100%);
  padding: 120px 60px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.hero-bg-layer {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242,200,17,0.15), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-left {
  flex: 1 1 550px;
  max-width: 600px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, #3ec28b89, #277459, #0066ff, #0063b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn-accent {
  background-color: #f2c811;
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.hero-btn-accent:hover {
  background-color: #e0b700;
}

.hero-right {
  flex: 1 1 500px;
  text-align: center;
  padding-top: 30px;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  transform: scale(1.05);
}

.power-platform-overview {
  background-color: #ffffff;
  padding: 100px 40px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-card {
  background: #f9fafc;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.platform-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  margin-bottom: 16px;
}

.platform-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Individual Card Themes */
.card-apps {
  border-left: 6px solid #742774; /* Power Apps Purple */
}
.card-automate {
  border-left: 6px solid #0066ff; /* Power Automate Blue */
}
.card-bi {
  border-left: 6px solid #f2c811; /* Power BI Yellow */
}
.card-agent {
  border-left: 6px solid #0063b1; /* Power Virtual Agent Blue */
}

.usp-section {
  background: #ffffff;
  padding: 100px 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.usp-header {
  max-width: 750px;
  margin: 0 auto 60px;
  text-align: center;
}

.usp-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.usp-header p {
  font-size: 16px;
  color: #555;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.usp-card {
  background: #f9fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.usp-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.usp-icon.apps { background-color: #742774; }
.usp-icon.automate { background-color: #0066ff; }
.usp-icon.bi { background-color: #f2c811; }
.usp-icon.pages { background-color: #4f6bed; }

.usp-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.usp-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}

.usp-tag {
  display: inline-block;
  background-color: #e6eefc;
  color: #2a4d9b;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.why-inknowfly {
  background-color: #f2f4f8;
  padding: 100px 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.inknowfly-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.why-inknowfly h2 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.why-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 28px;
  color: #742774; /* Inknowfly accent or match Power Platform */
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.why-item p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

.cta-card-section {
  background: #f5f7fb;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
}

.cta-card {
  background: #fff;
  max-width: 720px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cta-content {
  max-width: 480px;
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.cta-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #742774;
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #5e1d5e;
}

/*Power Pages */

.hero-alt {
  background: #f0f4fa;
  padding: 100px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.hero-card {
  flex: 1;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.hero-card h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.hero-card p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.hero-btn-alt {
  background-color: #4f6bed;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero-btn-alt:hover {
  background-color: #3c4fb0;
}

.hero-side-visual {
  flex: 1;
  text-align: center;
}

.hero-side-visual img {
  max-width: 40%;
  height: auto;
}

/* Section Container */
.power-platform-intro {
  padding: 80px 30px;
  background: #f9fbfe;
  color: #1a1a1a;
  font-family: 'Segoe UI', sans-serif;
  opacity: 0.95;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(100, 100, 255, 0.2); /* Soft blue glow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(100, 100, 255, 0.3);
}

.feature-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}



/* Inner Container for Max Width */
.power-platform-intro .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.power-platform-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

/* Section Description */
.power-platform-intro p {
  font-size: 16.5px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #444;
  max-width: 820px;
}

/* Responsive Card Grid */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card Base Style */
.card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top 0.3s ease;
  border-top: 4px solid transparent;
}

/* Hover Animation */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Card Title */
.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4f6bed;
  margin-bottom: 10px;
}

/* Card Description */
.card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.5;
}

/* ---------------------------------- */
/* App-Specific Border Animations     */
/* ---------------------------------- */

/* Power BI – Yellow */
.card.power-bi:hover {
  border-top: 4px solid #f9c400;
}

/* Power Apps – Purple */
.card.power-apps:hover {
  border-top: 4px solid #742774;
}

/* Power Automate – Blue */
.card.power-automate:hover {
  border-top: 4px solid #0078d4;
}

/* Power Pages – Indigo */
.card.power-pages:hover {
  border-top: 4px solid #5c2d91;
}

/* Power Virtual Agents – Green */
.card.power-virtual-agents:hover {
  border-top: 4px solid #107c10;
}

/* Section Styling */
.power-pages-intro {
  padding: 80px 30px;
  background-color: #f4f7fb;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

/* Inner Container */
.power-pages-intro .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.power-pages-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

/* Paragraphs */
.power-pages-intro p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
  max-width: 820px;
  margin-bottom: 20px;
}

/* Features Section */
.power-pages-features {
  padding: 70px 30px;
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.power-pages-features .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Feature Card */
.feature-card {
  background-color: #f4f7fb;
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border-top: 4px solid #5c2d91; /* Power Pages brand accent */
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
}

/* Feature Title */
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
}

/* Feature Text */
.feature-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #555;
}

/* Market-Style Section */
.market-banner {
  background: linear-gradient(90deg, #5c2d91 0%, #7446b8 100%);
  color: #ffffff;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.market-banner .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.market-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Paragraph */
.market-banner p {
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 800px;
  color: #f1f1f1;
}

/* CTA Card Section */
.cta-card-section {
  padding: 60px 20px;
  background-color: #f9f9fb;
  font-family: 'Segoe UI', sans-serif;
}

/* CTA Card Styling */
.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-left: 6px solid #5c2d91; /* Power Pages Accent */
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

/* CTA Text */
.cta-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.cta-text p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 10px;
  background-color: #fdfdfde5;
  color: #040404;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #f3f3f3;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-text,
  .cta-action {
    width: 100%;
  }

  .cta-button {
    margin-top: 20px;
  }
}

/* USP Section */
.usp-section {
  padding: 80px 30px;
  background-color: #f7f9fc;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

/* Container */
.usp-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.usp-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2d2d2d;
}

/* USP Grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* USP Card */
.usp-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #5c2d91; /* Power Pages Accent */
  transition: all 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
}

.usp-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2a2a2a;
}

.usp-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #555;
}


/* Co Pilot */


:root {
  --bg-color: linear-gradient(#03132d,#290546);
  --text-color: #ffffff;
  --subtext-color: #cccccc;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --bubble-user: rgba(0, 153, 255, 0.2);
  --bubble-ai: rgba(140, 100, 255, 0.15);
}

/* Hero Section */
.genai-hero {
  background: var(--bg-color);
  padding: 100px 30px;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

.genai-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.genai-text {
  flex: 1 1 500px;
}

.genai-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.genai-text p {
  font-size: 17px;
  color: var(--subtext-color);
  line-height: 1.6;
}

/* Chat Preview */
.genai-visual {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  transition: box-shadow 0.4s ease, border 0.4s ease;
}
.logo-inline {
  width: 80px;
  height: auto;
  margin-left: 12px;
  vertical-align: middle;
  display: inline-block;
}

.h1-inline {
  display: inline-block;
  vertical-align: middle;
}


/* Soft Glow Border (always on) */
.glass-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #33b5ff, #b388ff);
  opacity: 0.3;
  z-index: -1;
  filter: blur(8px);
}

/* Optional: Glow intensifies on hover */
.glass-card:hover::before {
  opacity: 0.7;
  filter: blur(80px);
}



/* Chat Bubbles */
.chat-bubble {
  font-size: 14px;
  margin-bottom: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  line-height: 1.5;
  opacity: 0;
  animation: bubbleIn 0.8s ease forwards;
  max-width: 100%;
  word-wrap: break-word;
  backdrop-filter: blur(8px);
}

.chat-bubble.user {
  background: var(--bubble-user);
  color: #ffffff;
  text-align: right;
  align-self: flex-end;
  animation-delay: 0.4s;
}

.chat-bubble.ai {
  background: var(--bubble-ai);
  color: #000000;
  text-align: left;
  align-self: flex-start;
  animation-delay: 1.2s;
}

/* Animations */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bubbleIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* SECTION BASE */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.conversational-ai-premium {
  background: linear-gradient(#080134, #161b22);
  padding: 100px 40px;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  color: #e6edf3;
}

.premium-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  background: #0d111724;
  border: 2px solid #30363d;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(13, 19, 19, 0.08);

}

.premium-title {
  font-size: 2.8rem;
  text-align: center;
  color: #58a6ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 60px;
  position: relative;
}

.premium-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: #00ffff;
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #00ffff;
}

/* PREMIUM CARD - HOVER EXPAND MODE */

.premium-card {
  background:linear-gradient(#080134, #161b22);
  border: 1px solid #30363d;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 100px;
  cursor: pointer;
  
}

.card-points {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

/* On hover, reveal the content */
.premium-card:hover .card-points {
  max-height: 300px; /* enough to show the full content */
  opacity: 1;
  pointer-events: auto;
}

/* Optional: give a glow when hovering */
.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.card-title {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 18px;
  border-left: 4px solid #00ffff;
  padding-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-points {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #c9d1d9;
  line-height: 1.6;
}

.card-points li::before {
  content: '⦿';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-container {
    padding: 40px 20px;
  }

  .premium-title {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-points li {
    font-size: 0.95rem;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

.conversational-ai-premium {
  background: linear-gradient(to bottom, #080134, #161b22bb);
  padding: 100px 40px;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  color: #e6edf3;
}

.premium-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  background: transparent;
  border-radius: 20px;
}

.premium-title {
  font-size: 2.6rem;
  text-align: center;
  color: #58a6ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 60px;
  position: relative;
}

.premium-title::after {
  content: '';
  width: 120px;
  height: 4px;
  background: #00ffff;
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px #00ffff;
}

.premium-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CYBORG CARD */
.premium-card {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid #30363d;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  height: auto;
}

.card-title {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 0;
  border-left: 4px solid #00ffff;
  padding-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hide points initially */
.card-points {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 20px;
  pointer-events: none;
}

/* Reveal on hover */
.premium-card:hover .card-points {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.card-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #c9d1d9;
  line-height: 1.6;
}

.card-points li::before {
  content: '⦿';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-size: 1rem;
}

/* Hover glow */
.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .premium-container {
    padding: 40px 20px;
  }

  .premium-title {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-points li {
    font-size: 0.95rem;
  }
}

.business-benefits {
  background: linear-gradient(to bottom,  #080134, #161b22bb); /* Light, clean background */
  padding: 100px 40px;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  color: #0a0a0a;
}

.copilot-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.copilot-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #0f2b46;
  letter-spacing: 1px;
  margin-bottom: 60px;
  position: relative;
}

.copilot-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: #00bcd4; /* Cyan accent */
  margin: 20px auto 0;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 8px #00bcd4;
}

.copilot-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.copilot-card {
  background: #ffffff;
  border: 1px solid #cddbe5;
  border-radius: 16px;
  padding: 30px 32px;
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.copilot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 188, 212, 0.2);
}

.copilot-icon {
  font-size: 2.5rem;
  color: #00bcd4;
  flex-shrink: 0;
  margin-top: 4px;
}

.copilot-card h3 {
  font-size: 1.35rem;
  color: #004b5f;
  margin-bottom: 6px;
}

.copilot-card p {
  font-size: 1rem;
  color: #37474f;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .copilot-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .copilot-icon {
    margin-bottom: 12px;
  }
}


.our-usp {
  background: linear-gradient(to bottom, #0b0249f2, #252c327b);
  padding: 100px 40px;
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  color: #0f2b46;
}

.usp-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.usp-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
}

.usp-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: #00bcd4;
  margin: 20px auto 0;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 8px #00bcd4;
}

.usp-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.usp-card {
  background: #ffffff;
  border: 1px solid #cfdbe5;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-point {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 20px;
  pointer-events: none;
}
.usp-card:hover .usp-point {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.usp-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #004b5f;
}

.usp-card p {
  font-size: 1rem;
  color: #37474f;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .usp-title {
    font-size: 2rem;
  }

  .usp-card h3 {
    font-size: 1.1rem;
  }

  .usp-card p {
    font-size: 0.95rem;
  }
}
