@charset "utf-8";
/* CSS Document */

/* ================= SITE LOADER ================= */
#site-loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff; /* match site background #0b1020; */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  max-width: 70%;
  margin-bottom: 20px;
}

/* Spinner */
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*----------------------*/

/* ================= GLOBAL ================= */
/* ===== NAVBAR ===== */
.navbar {
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: # !important;
}
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand span {
  color: # !important;
}
.navbar-brand img {
 /* height: 50px;*/
  transition: height 0.3s;
}
.navbar.scrolled img {
  height: 40px;
}
body {
  background-color: #ffffff;
  color: #000000;
}

section {
  padding: 20px 0;
}


/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  padding: 80px 0;
}


/* ================= SITE LOADER ================= */
#site-loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff; /* match site background #0b1020; */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  max-width: 70%;
  margin-bottom: 20px;
}

/* Spinner */
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #38bdf8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*----------------------*/


/* ================= HERO ================= */
.hero-carousel,
.hero-carousel .carousel-item {
  height: 100vh;
  min-height: 600px;
}

.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .overlay {
  position: absolute;
  inset: 0.5;
  background: rgba(11,16,32,0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ================= CARDS (FIXED VISIBILITY) ================= */

.bg-dark {
    background-color: #CCC; !important;
}

.card {
  background: #0a58ca;
  border: none;
  border-radius: 16px;
}

/* FIX: headings visibility */
.card h5 {
  color: #ffffff;          /* FIXED */
  font-weight: 600;
}

/* FIX: paragraph readability */
.card p {
  color: #cbd5e1;          /* FIXED */
}

/* ================= ABOUT SECTION ================= */
.about-text {
  color: #000000;          /* readable light gray */
  font-size: 1.1rem;
  line-height: 1.8;
}


/* Industries Section */
.industries-section { position: relative; min-height: 500px; overflow: hidden; display: flex; align-items: center; color: #fff; }
.industries-bg-carousel, .industries-bg-carousel .carousel-inner, .industries-bg-carousel .carousel-item { height: 100%; }
.industries-bg-carousel { position: absolute; inset: 0; z-index: 1; }
.industries-bg-carousel .carousel-item { background-size: cover; background-position: center; }
.industries-overlay { position: absolute; inset: 0; background: rgba(11,28,63,0.78); z-index: 2; }
.industries-content { position: relative; z-index: 3; width: 100%; }
.industry-box { background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); padding: 25px 15px; border-radius: 14px; }
.industry-box i { font-size: 36px; transition: transform 0.3s ease; }
.industry-box:hover i { transform: scale(1.2) rotate(5deg); }

/* Cards & Hover Effects */
.icon-box { font-size: 40px; color: #0d6efd; margin-bottom: 15px; transition: transform 0.3s ease; }
.card-hover, .service-card, .industry-box { transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.card-hover:hover, .service-card:hover, .industry-box:hover { transform: translateY(-8px) scale(1.03); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-primary:hover { background-color: #0a58ca; border-color: #0a58ca; transform: translateY(-2px); transition: all 0.3s ease; }


@media (max-width: 768px) {
  .industries-section { min-height: 60vh; padding: 50px 0; }
  .industry-box i { font-size: 28px; }
  section { padding: 20px 0; }
}

/* ================= WHY CHOOSE ================= */
.why-icon {
  font-size: 42px;
  color: #38bdf8;
  margin-bottom: 15px;
}

/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ================= FOOTER ================= */
.footer {
  background-color: #1c2237;
  font-size: 0.95rem;
}

.footer-top {
  background-color: #5a4fcf;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

/* NO underline on hover */
.footer a:hover {
  color: #38bdf8;
  text-decoration: none !important;
}

/* Social Icons */
.social-icons a {
  font-size: 1.2rem;
  color: #cbd5e1;
}

.social-icons a:hover {
  color: #38bdf8;
}

/* Bottom bar */
.footer-bottom {
  background-color: #0d1022;
}


/* ================= TECHNOLOGIES ================= */
#tech {
  background: radial-gradient(circle at top, #cccccc, #ffffff);
}

#tech .sub {
  color: #000000;
  font-size: 1rem;
}

/* Logo Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
}

/* Logo Card */
.logo-card {
  background: #666666;
  border-radius: 16px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s ease;
}

.logo-card svg {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}

.logo-card span {
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hover effect */
.logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(56,189,248,0.25);
}

.learn-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.learn-link:hover {
  color: #0ea5e9;
  text-decoration: none;
}

.navbar-brand img {
  /*height: 50px; */
  transition: height 0.3s;
}
.navbar.scrolled img {
  height: 40px;
}

