/* Base Reset */
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: #303232;
    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: #181766;
  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 {
  display: none;
}

.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.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: #000000;
}

/* 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 */
/* Full-width hero with centered content and dark overlay */
.powerapps-hero {
  position: relative;
  background-image: url('PowerApps_grafika-1024x576.png'); /* your background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  
}

/* Dark overlay that covers entire hero */
.powerapps-overlay {
  background-color: rgba(83, 81, 81, 0.5); /* Dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  justify-content: center;
  text-align: center;
}

/* Centered content box */
.powerapps-content {
  text-align: center;
  color: #ffffff;
  max-width: 700px;
}

/* Logo styling */
.powerapps-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

/* Heading style */
.powerapps-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .powerapps-title {
    font-size: 1.5rem;
  }

  .powerapps-logo {
    max-width: 100px;
  }
}



.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;
  }
}



/* Section Hover Wrapper */
.usp-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s ease;
}
.usp-wrapper:hover .usp-section {
  transform: scale(1.02);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.usp-section {
  background-color: rgba(249, 250, 254, 0.95);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* USP Cards */
.usp-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.usp-icon {
  font-size: 2rem;
  color: #086ad7;
  margin-bottom: 15px;
  display: inline-block;
}

/* Typography */
.usp-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 10px;
}
.usp-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive tweak */
@media (max-width: 576px) {
  .usp-card {
    padding: 25px 15px;
  }
}

.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;
}
.mobile-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 9998;
}

.overlay.active {
  display: block;
}
