*, body, html {
  font-family: "Roboto", sans-serif;
  --bs-primary: #005395;
  --ms-main: #005395;
  --bs-btn-bg: #005395;
  --bs-btn-bg-hover: lighten(#005395, 3);
  --ms-main-hover: lighten(#005395, 3);
  --ms-main-hover-stronger: lighten(#005395, 5);
  --bs-primary-rgb: 0, 83, 149;
  --bs-secondary-color: rgba(25, 27, 31, 0.925);
  --bs-body-color: color.adjust($color: #212529, $lightness: -10, $space: hsl);
}

.text-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--ms-main-hover);
  --bs-btn-hover-border-color: var(--ms-main-hover-stronger);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--ms-main-hover);
  --bs-btn-active-border-color: var(--ms-main-hover-stronger);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--ms-main-hover);
  --bs-btn-hover-border-color: var(--ms-main-hover-stronger);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--ms-main-hover-stronger);
  --bs-btn-active-border-color: var(--ms-main-hover-stronger);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-bg: transparent;
  --bs-gradient: none;
}

a {
  color: var(--bs-primary);
}

.accordion {
  --bs-accordion-active-bg: var(--bs-light-bg-subtle);
  --bs-accordion-active-color: var(--bs-dark);
}

.cta a {
  text-decoration: none;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.ea a {
  text-decoration: none;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.ea .btn:not(:disabled):not(.disabled):not(.btn-link):not(.btn-danger):hover {
  border: 1px !important;
}

.fullscreen-image-background {
  background-size: cover;
  background-position: bottom;
}

.divider {
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  background-color: var(--bs-primary);
}

.light-weight {
  font-family: "Manrope", sans-serif;
  font-weight: 200;
}

.heavy-weight {
  font-family: "Reem Kufi Fun", sans-serif;
}

.regular-content {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
}

@media screen and (max-width: 768px) {
  .regular-content {
    font-size: 16px;
    line-height: 26px;
  }
}
section {
  transform-style: preserve-3d;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.no-parallax {
  background-color: #111;
  z-index: 999;
}

.parallax-image {
  background: var(--bg-image);
  background-size: cover;
}

.blur-10 {
  backdrop-filter: blur(10px);
}

.blur-5 {
  backdrop-filter: blur(5px);
}

.blur-20 {
  backdrop-filter: blur(20px);
}

.service_container {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  min-height: 155px;
}
.service_container i {
  font-size: 3rem;
  color: var(--bs-primary);
}

footer .footer-box {
  min-height: 150px;
}
footer .icon {
  margin-bottom: 10px;
  color: var(--bs-light);
  padding: 15px;
  background-color: var(--bs-primary);
  border-radius: 5px;
}
footer .icon svg {
  fill: var(--bs-light);
  height: 64px;
  width: 64px;
}

.lazy-loading-background {
  background-image: url("/static/lazy-loader-placeholder.svg");
  background-size: cover;
  background-position: center center;
}
.lazy-loading-background.visible {
  background-image: var(--bg-image);
}

.accordion-header button {
  background-color: var(--bs-light-bg-subtle);
  color: var(--bs-dark);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.accordion-body {
  border: 1px solid var(--bs-light-bg-subtle);
}

.text-muted, label {
  font-family: "Manrope", sans-serif;
}

.service-background {
  transition: all 0.5s;
}
.service-background .regular-content {
  line-height: 26px;
  text-align: center;
}
.service-background .tint {
  transition: all 0.5s;
}
.service-background .content .title {
  transition: top 0.5s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
}
.service-background .content .text {
  transition: top 0.5s ease-in-out;
  top: 500px;
}
.service-background:hover .tint {
  --bs-bg-opacity: 0.85;
}
.service-background:hover .content .title {
  top: -100px;
}
.service-background:hover .content .text {
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .service-background {
    transition: all 0.5s;
  }
  .service-background .regular-content {
    line-height: 21px;
    font-size: 14px;
  }
  .service-background .tint {
    --bs-bg-opacity: 0.65 !important;
  }
  .service-background .content .title {
    font-size: 18px;
    transition: none 0.5s ease-in-out;
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 6px !important;
    width: max-content;
    display: inline-block;
  }
  .service-background .content .text {
    transition: none 0.5s ease-in-out;
    top: 85px;
    transform: translate(-7px, -30px) !important;
  }
  .service-background:hover .content .title {
    top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .service-background:hover .content .text {
    top: 85px;
    transform: translate(-7px, -30px) !important;
  }
}
.navbar-brand > img {
  transition: all 0.3s;
  max-height: 130px;
  height: 100%;
}

#header {
  transition: max-height 0.3s ease-in-out;
}
#header > nav {
  transition: max-height 0.3s ease-in-out;
}
#header > nav > .container {
  transition: max-height 0.3s ease-in-out;
  max-height: 170px;
}
#header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
#header.header-fixed > nav > .container {
  max-height: 70px;
}
#header.header-fixed .navbar-brand > img {
  max-height: 65px;
}

.navbar-toggler:focus {
  --bs-navbar-toggler-focus-width: 0;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
}

.bg-image {
  position: absolute;
  inset: 0;
}
.bg-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .bg-image img {
    width: 100vw !important;
    height: 500px;
  }
}
.img-placeholder {
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transition: filter 0.5s ease-out;
}
.img-placeholder.loaded {
  filter: blur(0);
  background-image: unset !important;
}

.ceo-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ceo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: -1;
}

.quote-container {
  position: relative;
  z-index: 2;
}

.quote-mark {
  font-size: 6rem;
  color: #0d6efd;
  opacity: 0.3;
  position: absolute;
  top: -30px;
  right: 8px;
  font-family: Georgia, serif;
  line-height: 1;
}

.heading-custom {
  color: #5c666f;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 0 40px;
}

.blockquote-custom {
  font-size: 1.25rem;
  font-style: italic;
  color: #495057;
  line-height: 1.6;
  margin: 0;
  padding: 0 0 0 40px;
  position: relative;
  border: none;
}

.ceo-image {
  width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.ceo-image:hover {
  transform: scale(1.05);
}

.ceo-info h5 {
  color: #212529;
  font-weight: 600;
  margin-bottom: 5px;
}

.ceo-info p {
  color: #6c757d;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.company-badge {
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blockquote-custom {
    font-size: 1.1rem;
    padding-left: 30px;
  }
  .quote-mark {
    font-size: 13rem;
    top: -40px;
    right: -5px;
  }
  .ceo-image {
    width: 200px;
    height: auto;
  }
}
:root {
  --primary-gradient: linear-gradient(135deg, #0d41fd 0%, var(--bs-primary) 100%);
  --secondary-gradient: linear-gradient(135deg, #93c4fb 0%, #57a1f5 100%);
  --hero-overlay: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  --text-gradient: linear-gradient(135deg, #667eea 0%, var(--bs-primary) 50%, #93a8fb 100%);
  --animation-duration: 0.8s;
  --animation-delay: 0.2s;
}

/* Hero Section Base Styles */
.hero-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/* Enhanced Overlay */
.hero-overlay {
  background: var(--hero-overlay);
  backdrop-filter: blur(1px);
}

/* Floating Background Shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.hero-content {
  animation: fadeInUp var(--animation-duration) ease-out;
}

.hero-badge {
  animation: fadeInUp var(--animation-duration) ease-out var(--animation-delay);
}

.hero-title {
  animation: fadeInUp var(--animation-duration) ease-out calc(var(--animation-delay) * 2);
  line-height: 1.2;
}

.hero-subtitle {
  animation: fadeInUp var(--animation-duration) ease-out calc(var(--animation-delay) * 3);
}

.hero-actions {
  animation: fadeInUp var(--animation-duration) ease-out calc(var(--animation-delay) * 4);
}

.hero-stats {
  animation: fadeInUp var(--animation-duration) ease-out calc(var(--animation-delay) * 5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Text Gradient */
.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Enhanced Buttons */
.hero-btn-primary {
  background: var(--primary-gradient);
  border: none;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.hero-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Badge Styling */
.hero-badge .badge {
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
  z-index: 3;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.parallax-container .hero-section {
  height: 100vh;
}

/* Responsive Design */
@media (max-width: 768px) {
  .parallax-container .hero-section {
    height: 500px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .stat-item h3 {
    font-size: 2rem;
  }
  .shape {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-stats {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-badge,
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-stats {
    animation: none;
  }
  .shape {
    animation: none;
  }
  .scroll-arrow {
    animation: none;
  }
}
/* Focus States */
.hero-btn-primary:focus,
.hero-btn-secondary:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/*# sourceMappingURL=app.css-Fx80uhl.map */
