:root {
      --primary: #273774;
      --accent: #57e0ff;
      --accent-dark: #00aaff;
      --text: #e0f7fa;
      --bg: #0a0f1f;
      --glass: rgba(39, 55, 116, 0.25);
      --border: rgba(87, 224, 255, 0.4);
      --glow: 0 0 30px rgba(87, 224, 255, 0.6);
      --shadow: 0 15px 35px rgba(39, 55, 116, 0.2);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }
p{ font-size: 16px;   color: #fff;}
    /* Magnetic Cursor */

    /* Preloader */
    #preloader {
      position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
      background: var(--primary); display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.8s, visibility 0.8s;
    }
    .loader {
      width: 80px; height: 80px; border: 6px solid rgba(87, 224, 255, 0.2);
      border-top: 6px solid var(--accent); border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Navbar */
    .navbar {
      backdrop-filter: blur(20px); background: var(--glass); border-bottom: 1px solid var(--border);
      padding: 1.2rem 0; transition: all 0.4s; box-shadow: 0 0 30px rgba(87,224,255,0.1);
      z-index: 1050;
    }
    .navbar.scrolled { padding: 0.6rem 0; background: rgba(39,55,116,0.9); }
    .navbar-brand {
      font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900;
      background: linear-gradient(90deg, #fff, var(--accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .nav-link {
      color: white !important; font-weight: 600; position: relative;
      padding: 0.5rem 1rem !important; transition: 0.3s;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px;
      background: var(--accent); transition: 0.4s; transform: translateX(-50%);
    }
    .nav-link:hover::after, .nav-link.active::after { width: 80%; }

    /* Hero */
   /* ===============================================
   GLOBAL SECTION STYLES
=============================================== */

#hero {
    height: 100vh;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background: url(../../assets/img/slider/slide1a.jpg);
    background-color: #767676f0;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    display: flex
;
    align-items: center;
    background-position: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1;
}
.hero-title {
    opacity: 1 !important;
}

.hero-title {
    position: relative;
    z-index: 3;
    margin-bottom: 1.5rem;
}
.hero-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, var(--accent), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 224, 255, 0.8), 0 0 80px rgba(0, 224, 255, 0.5), 0 0 120px rgba(0, 224, 255, 0.3);
    letter-spacing: 5px;
    transform: perspective(1000px) rotateX(12deg);
    animation: floatTitle 6s infinite 
ease-in-out;
}
.hero-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--accent);
    text-stroke: 2.5px var(--accent);
    text-shadow: var(--glow);
    margin-top: -1.2rem;
    animation: pulseStroke 3s infinite;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2.5rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-pad {
  padding: 4rem 0;
}
@media (max-width: 992px) {
  .section-pad {
    padding: 5rem 0;
  }
}
/* Custom Hamburger Icon */
.navbar-toggler {
  outline: none;
  box-shadow: none;
}

.toggler-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.toggler-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff; /* IMPORTANT */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggler-icon span:nth-child(1) {
  top: 0;
}

.toggler-icon span:nth-child(2) {
  top: 8px;
}

.toggler-icon span:nth-child(3) {
  top: 16px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
     margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #00aaff, #57e0ff);
  border-radius: 2px;
}

.section-lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===============================================
   BACKGROUNDS
=============================================== */
.bg-deep {
  background: #0a0f1f;
}

.bg-gradient-why {
  background: linear-gradient(135deg, #0a0f1f 0%, #0f1a2e 100%);
}

.bg-gradient-services {
  background: linear-gradient(to bottom, #0f1a2e, #0a0f1f);
}

/* ===============================================
   GLASS PANEL / CARDS
=============================================== */
.glass-panel {
  background: rgba(20, 35, 60, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: white;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.65;
}

/* ===============================================
   ABOUT IMAGE
=============================================== */
.about-image-frame {
  position: relative;
}
.about-image-frame img {
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s ease;
}
.about-image-frame:hover img {
  transform: scale(1.02);
}
.image-accent {
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.16), rgba(87, 224, 255, 0.08));
  border-radius: 1.75rem;
  z-index: -1;
  filter: blur(18px);
}

/* ===============================================
   WHY CHOOSE - TIMELINE
=============================================== */
.why-timeline {
  position: relative;
}
.timeline-connector {
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, rgba(87, 224, 255, 0.15), rgba(0, 170, 255, 0.25), rgba(87, 224, 255, 0.15));
  transform: translateX(-50%);
  border-radius: 3px;
  z-index: 0;
}
.glass-step {
  position: relative;
  z-index: 1;
    padding: 2rem 1rem 0.5rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(87, 224, 255, 0.12);
  transition: all 0.4s ease;
  height: 100%;
}
.glass-step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(87, 224, 255, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: #0a0f1f;
  border: 2px solid #57e0ff;
  color: #57e0ff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
}
.glass-step h4 {
  color: #e0f7ff;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

/* ===============================================
   STRENGTHS CARDS
=============================================== */
.strength-card {
  padding: 2rem 1.6rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}
.strength-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.strength-card h4 {
  color: #57e0ff;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

/* ===============================================
   SERVICES CARDS
=============================================== */
.service-card-pro {
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(20, 35, 60, 0.38);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.4s ease;
  height: 100%;
}
.service-card-pro:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}
.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card-pro:hover .service-image img {
  transform: scale(1.08);
}
.service-content {
  padding: 1.8rem 2rem;
}
.service-content h4 {
  color: white;
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
}

/* ===============================================
   CONTACT FORM
=============================================== */
.contact-info-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.icon-frame {
  width: 60px;
  height: 60px;
  background: rgba(87, 224, 255, 0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  flex-shrink: 0;
}
.icon-frame i {
  color: #57e0ff;
  font-size: 1.6rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  transition: all 0.3s ease;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: #57e0ff;
  box-shadow: 0 0 0 0.25rem rgba(87, 224, 255, 0.18);
}
.form-label {
  color: rgba(255, 255, 255, 0.75);
}

.btn-primary {
  background: linear-gradient(90deg, #00aaff, #57e0ff);
  border: none;
  font-weight: 600;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(87, 224, 255, 0.35);
}
    /* Footer */
    .footer { background: linear-gradient(135deg, rgba(39,55,116,0.3), rgba(15,26,46,0.6)); backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; margin-top: 5rem; }
  .offcanvas.offcanvas-end{display: none;}
    /* Responsive */
    @media (max-width: 768px) {
      .hero-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;}
      .hero-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;}
      .hero h1 { font-size: 3.5rem; }
      .section-title { font-size: 2.5rem; }
      .service-card { height: 320px; }
      ul.navbar-nav{    color: #fff;
    z-index: 99999;
    position: absolute;}
    .offcanvas.offcanvas-end{display: block!important;}
    }

   

/* Footer */
    footer {
      position: relative;
      background: linear-gradient(135deg, #0f1a3d 0%, #0a0f1f 100%);
      padding: 80px 0 40px;
      overflow: hidden;
      border-top: 1px solid var(--border);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      position: relative;
      z-index: 2;
    }

    /* Logo & Tagline */
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .footer-logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      background: linear-gradient(90deg, #ffffff, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: var(--glow);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .footer-logo:hover {
      text-shadow: 0 0 50px rgba(87, 224, 255, 0.9);
      transform: scale(1.05);
    }

    .footer-tagline {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* Quick Links */
    .footer-links h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
      color: var(--accent);
      text-shadow: 0 0 15px rgba(87, 224, 255, 0.4);
    }
.social-links {
    display: flex
;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    width: 40px; text-decoration: none;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s 
ease;
}
.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}
    .footer-links ul {
      list-style: none;    padding-left: 0px;
    margin-left: -15px;
    }

    .footer-links li {
      margin: 0.7rem 0;
      transform: perspective(1000px) rotateX(0deg);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding-left: 20px;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .footer-links a::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: bold;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
      text-shadow: 0 0 10px var(--accent);
      padding-left: 25px;
    }

    .footer-links a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-links li:hover {
      transform: perspective(1000px) rotateX(8deg) translateY(-3px);
    }

    /* Copyright */
    .footer-bottom {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px dashed rgba(87, 224, 255, 0.3);
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      position: relative;
      z-index: 2;
    }

    /* Scroll to Top */
   #scrollTopBtn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 30, 60, 0.9);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  z-index: 9999;
}

#scrollTopBtn:hover {
  background: #1e3a8a;
  transform: translateY(-3px);
}

#scrollTopBtn:focus {
  outline: none;
}

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* Particle Background */
    #footer-particles {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    /* Glass Overlay */
    .footer-overlay {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: var(--glass);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 0;
      opacity: 0.4;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-links h3 { margin-bottom: 1rem; }
      .scroll-top { right: 20px; bottom: 20px; width: 45px; height: 45px; }
      .footer-logo { font-size: 1.9rem; }
    }

    @media (max-width: 480px) {
      .footer-logo { font-size: 1.7rem; }
      .footer-links a { font-size: 0.95rem; }
    }