/* Reset & Fonts */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("services-wallpaper.jpg"); */
  background-size:cover;
  background-position: center;
  filter: blur(15px);
  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.275); /* Adjust opacity for brightness */
  opacity: 0.6;
  z-index: -1;
}

/* =============================
   Top Header Split with Clip
============================= */

.top-header {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  overflow: hidden;
}

.top-left {
  background: #0b1c66dc;
  padding: 10px 30px;
  width: 50%;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  color: white;
  z-index: 1;
}

.top-contact span {
  font-size: 14px;
  margin-right: 15px;
  white-space: nowrap;
  color: #fff;
}

.top-contact .separator {
  color: rgba(255, 255, 255, 0.6);
}

.top-right {
  background: transparent;
  padding: 10px 20px;
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

.social-profile a {
  color: #153fb2;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
}

/* =============================
   Main Header Section
============================= */

.main-header-wraper {
  background: #080439;
  z-index: 0;
  position: relative;
}

.header-menu .main-menu li a {
  color: #fefefe;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

.header-menu .main-menu li a:hover {
  color: #fffffff9;
}

/* =============================
   Mobile Nav Styles
============================= */

/* Hamburger Container */
.mobile-nav-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Hamburger icon with 3 lines */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background-color: #ffffff; /* Or white if your header background is dark */
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}


.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #153fb2;
  color: #ffffff;
  z-index: 1000;
  padding: 30px 20px;
  transition: right 0.3s ease-in-out;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .close-nav {
  background: none;
  border: none;
  font-size: 24px;
  color: #ffffff;
  position: absolute;
  top: 15px;
  right: 20px;
}

.mobile-nav .sidebar-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav .sidebar-nav ul li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.mobile-nav .action-bar a {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* =============================
   Responsive Fixes
============================= */

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    height: auto;
    /* background-color: #ffffff; */
  }

  .top-left,
  .top-right {
    width: 100%;
    clip-path: none;
    padding: 10px 20px;
  }

  .social-profile {
    justify-content: center;
    width: 100%;
  }
}

/* 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 Section*/

.hero-service-section {
  padding: 100px 0;
  background-color: #e6f2f8c4; /* Soft white with a touch of cool */
  color: #1b1e21;
}

.hero-service-section .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #0d2f4f;
  line-height: 1.3;
}

.hero-service-section .hero-title span {
  color: #2e74ff; /* Accent color for trust and professionalism */
}

.hero-service-section .hero-subtext {
  font-size: 18px;
  margin: 20px 0 30px;
  color: #4a4a4a;
}

.hero-service-section .hero-btn {
  padding: 12px 28px;
  font-weight: 600;
  background-color: #2e74ff;
  border: none;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero-service-section .hero-btn:hover {
  background-color: #1a57d3;
}

.hero-service-section img {
  max-width: 90%;
}


@keyframes zoomInCard {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }

}



.industries-section{
  background:linear-gradient(150deg,rgb(71, 1, 141),rgb(30, 29, 29) );
  
}

.industry-card {
  /* background: #f8f9fc; */
  border: 1px solid #dee2e6;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.industry-card.active {
  animation: zoomInCard 2s ease-in-out;
}

.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2),
              0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #0e615386;
  color: white;
  font-size: 14px;
  margin-top: 15px;
}
.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;
}