/* 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("background.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, 64, 255, 0); /* Adjust opacity for brightness */
  opacity: 0.6;
  z-index: -1;
}
/* =============================
   Top Header Split with Clip
============================= */

.top-header {
  position: relative;
  width: 100%;
  height: 30px;
  display: flex;
  overflow: hidden;
  margin-bottom: 0px;
}

.top-left {
  background: #0242f0;
  padding: 20px 50px;
  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;
  margin-bottom: 0%;
}

.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 {
  position: relative;
  width: 100%;
  height: auto;
  background: #1c0c38ea;
  /* clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0% 0, 5% 0, 100% 100%, 0 100%); */
  color: white;
  z-index: 1;
  padding: 15px 30px;
  margin-top: 0px;
}

.header-menu .main-menu li a {
  color: #153fb2;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  -webkit-text-fill-color: #ffffff;
}

.header-menu .main-menu li a:hover {
  color: #ffffff14;
}

/* =============================
   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;
  }

  .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 SECTION: CYBORG STYLE === */
.hero-section {
  background: rgb(13, 13, 14); /* dark base */
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(1, 20, 65, 0.759), transparent 70%);
  animation: rotateGlow 20s linear infinite;
  z-index: 0;
}

/* Text content styling */
.hero-section .text-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
  color: #00ffff;
}

.hero-title span {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 30px;
  margin-top: 20px;
  color: #fcfcfc;
  max-width: 700px;
}

/* Buttons */
.hero-buttons .btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #15012f, #000000);
  border: none;
  color: #000;
  /* box-shadow: 0 0 10px #00ffff, 0 0 30px rgba(0, 255, 255, 0.5); */
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a0b0b, #0051ff);
  box-shadow: 0 0 15px #00ccff;
  color: #fff;
}

.btn-outline-light {
  border: 2px solid #ff00cc;
  color: #ff00cc;
}

.btn-outline-light:hover {
  background-color: #ff00cc;
  color: #000;
}

/* Hero image */
.hero-image {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.2));
  z-index: 2;
  position: relative;
}

/* Animation: glow rotation */
@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Animation: floating image */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
}


/*services we provide*/

/* === Services Section === */
.services-section {
  /* background-color: #f8f8f800; */
  background: transparent;
  margin-bottom: 10px;
}

.section-tag {
  font-size: 0.9rem;
  color: #004dff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #111111;
  max-width: 600px;
  margin: 0 auto;
}

/* === Card Styling === */
/* === Card Styling === */

/* .clip-path{
  background: #303030;
} */
.service-card {
  background: transparent;
  padding: 40px 25px;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.452);
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.service-card:hover {
  transform: translateY(-8px);
  background-color: #bcff8c85; 
  box-shadow: 0 15px 35px rgb(255, 255, 255);
  border-color: #bdff832d;
} 

/* Logo */
.service-logo {
  /* max-height: 60px; */
  width: 80px;
  /* margin-bottom: 20px; */
}

/* Titles and Text */
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f6f7ff;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-description {
  font-size: 0.95rem;
  color: #f9f9f9;
  line-height: 1.6;
  transition: color 0.3s;
}

/* Optional: Make text color shift slightly on hover */
.service-card:hover .service-title {
  color: #0044cc;
}
.service-card:hover .service-description {
  color: #000000;
}




/* Help Section */
.help-section {
  background-color: #ffffff00; /* icy, clean background */
  padding: 100px 0;
}

.help-list h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.help-content h6 {
  color: #0d6efd;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.help-content h2 {
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
}

.help-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.help-content .help-btn {
  background-color: #062c64;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: none;
  -webkit-text-fill-color: #fff;
  /* transition: background-color 0.2s ease-in-out; */
}

.help-content .help-btn:hover {
  background-color: #084298;
}

/* Grid layout for cards */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-top: 20px;
}

/* Card styling */
.help-card {
  background-color: #ffffff00;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(251, 139, 139, 0.19);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.help-card:hover {
  background-color: #f5f6f6;
  border-color: #ebfff9;
  color: #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1);
  cursor: pointer;
}


/*About company section*/

.about-company-section {
  background-color: #ffffffcc; /* Extra white background */
  padding: 100px 0;
  fill-opacity: 12px;
}

.about-text-content {
  padding-right: 30px;
}

.section-subtitle {
  color: #0d6efd;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2d3d;
}

.about-text-content p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

.about-image {
  max-width: 90%;
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
}
.tick-icon {
  color: #0d6efd;
  margin-right: 10px;
  font-size: 1.1rem;
}

.contact-cta-section {
  background-color: #ffffff84; /* clean white */
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
}
.contact-heading {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #0d2f66;
}
.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d2f66;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #000000;
}

.contact-info i {
  color: #0d6efd;
  margin-right: 8px;
}

.contact-form .form-control {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #000000;
}

.contact-form .btn {
  background-color: #0d6efd;
  color: white;
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #084ccf;
}

/* Footer */
footer {
  background-color: #0e615386;
  color: white;
  font-size: 14px;
}
.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;
}