/* ============================================================= */
/* 1. GLOBAL – prevent any element from overflowing the viewport */
/* ============================================================= */
html, body { width: 100%; overflow-x: hidden; }
* { box-sizing: border-box; }

/* ---------------------------------------------------------------- */
/* 2. CONTAINER – keep all content inside the screen width        */
/* ---------------------------------------------------------------- */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* ---------------------------------------------------------------- */
/* 3. NAVBAR – force it to stay inside the viewport                */
/* ---------------------------------------------------------------- */
.navbar,
.navbar .container,
.navbar .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ---------------------------------------------------------------- */
/* 4. HERO / SECTIONS – avoid full-width background images         */
/* ---------------------------------------------------------------- */
.hero,
section,
.parallax-bg {
  width: 100%;
  min-width: 0;
}

/* ---------------------------------------------------------------- */
/* 5. OFFCANVAS – Bootstrap sometimes adds extra width on small screens */
/* ---------------------------------------------------------------- */
.offcanvas,
.offcanvas.show,
.offcanvas.showing,
.offcanvas.hiding {
  width: 100% !important;
  max-width: 100% !important;
}

/* ---------------------------------------------------------------- */
/* 6. TIMELINE – the line and cards must not push the page         */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 7. CONTACT – form grid & info must stay inside                  */
/* ---------------------------------------------------------------- */
.contact-wrapper,
.contact-info,
.contact-form-container {
  width: 100%;
  max-width: 100%;
}

/* ---------------------------------------------------------------- */
/* 8. FOOTER – keep columns inside the viewport                     */
/* ---------------------------------------------------------------- */
.custom-footer .container { padding-left: 15px !important; padding-right: 15px !important; }
.custom-footer .row { margin-left: 0 !important; margin-right: 0 !important; }

/* ---------------------------------------------------------------- */
/* 9. RESPONSIVE OVERRIDES – force everything to 100% on mobile   */
/* ---------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-toggler { margin-right: 0; }
  .offcanvas { width: 100% !important; }
  .row { --bs-gutter-x: 1rem; }
}

/* ---------------------------------------------------------------- */
/* 10. DEBUG – highlight any element that still overflows           */
/* ---------------------------------------------------------------- */
/* Remove this block in production – it’s only for you to spot problems */
/*
* { outline: 1px solid rgba(255,0,0,.1); }
*/

:root {
      --primary: #273774;
      --accent: #57e0ff;
      --text: #e0f7fa;
      --bg: #0a0f1f;
      --glass: rgba(39, 55, 116, 0.2);
      --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;
      position: relative;
      min-height: 100vh;
    }

    /* Cursor Trail */
    #cursor {
      position: fixed; width: 20px; height: 20px;
      background: var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      mix-blend-mode: difference; transform: translate(-50%, -50%);
      box-shadow: var(--glow); transition: 0.1s;
    }

    /* 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: 0.6s;
    }
    .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 */
 /* Glassmorphism Navbar */
  .navbar-glass {
    background: rgba(10, 15, 30, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1050;
  }

  .navbar-glass.scrolled {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  /* Brand Glass Effect */
  .brand-glass {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .brand-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }

  /* Nav Links */
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(87, 224, 255, 0.1);
  }

  .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--bs-accent);
    border-radius: 50%;
    transform: translateX(-50%);
  }

  /* Toggler Icon Animation */
  .toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
  }

  .toggler-icon span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
  }

  .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Accent Button */
  .btn-accent {
    background: linear-gradient(135deg, #57e0ff, #0099cc);
    color: #0a0f1e;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 0.65rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(87, 224, 255, 0.3);
  }

  .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(87, 224, 255, 0.4);
    background: linear-gradient(135deg, #6be8ff, #00aaff);
  }

  /* Offcanvas Improvements */
  .offcanvas {
    background: linear-gradient(135deg, #0a0f1e 0%, #121826 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
  }

  .offcanvas .nav-link:hover,
  .offcanvas .nav-link.active {
    color: var(--bs-accent) !important;
    background: rgba(87, 224, 255, 0.15);
  }

  /* Responsive Adjustments */
  @media (max-width: 991.98px) {
    .navbar-glass {
      padding: 0.75rem 0;
    }
    .offcanvas.offcanvas-end {
    display: block!important;
}
  }

    /* Hero */
    .hero {
      height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center;
    }
    #hero-video {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.5);
    }
    .hero::after {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(39,55,116,0.9), rgba(87,224,255,0.1));
    }
    #particles-js {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    }
    .hero-content {
      position: relative; z-index: 2; text-align: center; 
    }
    .hero h1 {
      font-family: 'Orbitron', sans-serif; font-size: 6.5rem; font-weight: 900;
      background: linear-gradient(90deg, #fff, var(--accent), #fff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      text-shadow: 0 0 50px rgba(87,224,255,0.6);
    }
    .offcanvas.offcanvas-end{display: none;}
    .hero p {
      font-size: 1.8rem; margin: 1.5rem 0; font-weight: 600; color: #fff;
    }
    .btn-neon {
      background: transparent; color: var(--accent); border: 2px solid var(--accent);
      padding: 1rem 3rem; border-radius: 50px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; position: relative; overflow: hidden; transition: 0.5s;
      box-shadow: var(--glow);
    }
    .btn-neon:hover {
      background: var(--accent); color: var(--primary); transform: translateY(-5px);
      box-shadow: 0 0 50px rgba(87,224,255,0.8);
    }

    /* Section Title */
    .section-title {
      font-family: 'Orbitron', sans-serif; font-size: 4rem; text-align: center; margin-bottom: 3rem;
   background: linear-gradient(90deg, #2d98a6, #53c2db);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      position: relative;
    }
    .section-title::after {
      content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
      width: 150px; height: 5px; background: var(--accent); border-radius: 3px;
      box-shadow: var(--glow);
    }

    /* Neon Cards */
    .neon-card {
      background: var(--glass); backdrop-filter: blur(20px); border-radius: 24px;
      padding: 2.5rem; height: 100%; border: 1px solid var(--border);
      transition: 0.6s; box-shadow: var(--shadow);
      position: relative; overflow: hidden;
    }
    .neon-card::before {
      content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
      background: linear-gradient(45deg, var(--accent), var(--primary), var(--accent));
      border-radius: 24px; z-index: -1; opacity: 0; transition: 0.6s;
    }
    .neon-card:hover::before { opacity: 1; }
    .neon-card:hover {
      transform: translateY(-20px) scale(1.03);
      box-shadow: 0 0 60px rgba(87,224,255,0.5);
    }
    .icon-3d {
      width: 100px; height: 100px; margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem; color: white; box-shadow: var(--glow);
      transition: 0.6s;
    }
    .neon-card:hover .icon-3d {
      transform: rotateY(180deg) scale(1.2);
      box-shadow: 0 0 80px rgba(87,224,255,0.9);
    }

    /* Back to Top */
    .back-to-top {
      position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
      background: var(--accent); color: var(--primary); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
      box-shadow: var(--glow); opacity: 0; visibility: hidden;
      transition: 0.4s; z-index: 1000;
    }
    .back-to-top.show { opacity: 1; visibility: visible; }

    /* 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;
      position: relative;
      overflow: hidden;
    }
    .footer::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      animation: glowLine 3s infinite linear;
    }
    @keyframes glowLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
    .footer-logo {
      font-weight: 800; font-size: 1.6rem; color: white;
      background: linear-gradient(90deg, white, var(--accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      transition: 0.4s; display: inline-block;
    }
    .footer-logo:hover { transform: scale(1.05) translateY(-3px); }
    .footer-links a {
      color: var(--text); text-decoration: none; display: block; margin-bottom: 0.7rem;
      font-weight: 500; position: relative; padding-left: 20px; transition: 0.3s;
    }
    .footer-links a::before { content: '•'; color: var(--accent); position: absolute; left: 0; }
    .footer-links a:hover { color: var(--accent); transform: translateX(8px); }
    .subscribe-input {
      background: rgba(255,255,255,0.1); border: 1px solid var(--border); color: white;
      border-radius: 50px 0 0 50px; padding: 0.75rem 1.2rem; backdrop-filter: blur(10px);
    }
    .subscribe-btn {
      background: var(--accent); color: var(--primary); border: none;
      border-radius: 0 50px 50px 0; padding: 0.75rem 1.2rem; font-weight: 700;
      transition: 0.4s; position: relative; overflow: hidden;
    }
    .subscribe-btn:hover { background: white; transform: translateX(5px); }
    .social-icon:hover {
      transform: translateY(-5px) rotate(360deg); background: var(--accent); color: var(--primary);
      box-shadow: 0 0 25px rgba(87,224,255,0.6);
    }
    .copyright {
      font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 2rem;
      padding-top: 1.5rem; border-top: 1px solid rgba(87,224,255,0.2);
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 3.5rem; }
      .section-title { font-size: 2.5rem; }
      .timeline-container {padding: 0px 0px!important;}
      .offcanvas-body {
    background: #000;}
    }
.social-icons a, #backToTop{text-decoration: none!important;}
    /* SERVICES - NEW 3D FLIP CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.service-card {
  perspective: 1000px;
  height: 380px;
}

.service-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-inner {
  transform: rotateY(180deg);
}

.service-front, .service-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}

.service-front {
  background: linear-gradient(135deg, var(--primary), #1a1f3d);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.service-card:hover .service-img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.service-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(39,55,116,0.8), rgba(87,224,255,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0;
  transition: 0.5s;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-back {
  background: linear-gradient(135deg, #1a1f3d, var(--primary));
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.service-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  transition: 0.4s;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: 0.4s;
}

.service-link:hover {
  color: white;
}

.service-link:hover::after {
  width: 100%;
}

/* Parallax Background */
.parallax-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background: url(../../assets/img/background/bg-service.jpg);
    background-color: #767676f0;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    display: flex;
    background-position: center;
  filter: brightness(0.3);
  transform: translateY(0);
  z-index: 1;
  filter: brightness(0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card { height: 320px; }
  .service-content h3 { font-size: 1.4rem; }
}

/* WHY CHOOSE US - 3D TIMELINE */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

.timeline-line {
  position: absolute;
  top: 0; left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(87, 224, 255, 0.5);
  animation: pulseLine 3s infinite;
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.timeline-item {
  position: relative;
  margin: 4rem 0;
  width: 50%;
  z-index: 2;
}

.timeline-item.right {
  left: 50%;
}

.timeline-card {
  background: rgba(39, 55, 116, 0.25);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(87, 224, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
  transition: 0.6s;
  position: relative;
  margin-left: 3rem;
}

.timeline-item.right .timeline-card {
  margin-left: 0;
  margin-right: 3rem;
}

.timeline-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(87, 224, 255, 0.4);
  border-color: var(--accent);
}

.timeline-icon {
  position: absolute;
  top: 50%; left: -60px;
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 0 30px rgba(87, 224, 255, 0.6);
  transform: translateY(-50%);
  z-index: 3;
  transition: 0.5s;
}

.timeline-item.right .timeline-icon {
  left: auto;
  right: -60px;
}

.timeline-card:hover .timeline-icon {
  transform: translateY(-50%) scale(1.2) rotate(15deg);
  box-shadow: 0 0 50px rgba(87, 224, 255, 0.9);
}

.timeline-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 992px) {
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .timeline-card {
    margin-left: 3rem !important;
  }
  .timeline-icon {
    left: -60px !important;
    right: auto !important;
  }
}

@media (max-width: 576px) {
  .timeline-card {
    padding: 1.5rem;
    margin-left: 2rem !important;
  }
  .timeline-icon {
    width: 55px; height: 55px;
    font-size: 1.4rem;
    left: -50px !important;
  }
}

/* OUR STRENGTHS - SIMPLE & ATTRACTIVE */
.strength-box {
  background: rgba(39, 55, 116, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(87, 224, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.strength-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, transparent, var(--accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}

.strength-box:hover::before {
  opacity: 1;
}

.strength-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(87, 224, 255, 0.25);
  border-color: var(--accent);
}

.strength-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 0 30px rgba(87, 224, 255, 0.4);
  transition: 0.5s;
}

.strength-box:hover .strength-icon {
  transform: scale(1.15);
  box-shadow: 0 0 45px rgba(87, 224, 255, 0.7);
  animation: pulseIcon 1.5s infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1.15); }
  50% { transform: scale(1.25); }
}

.strength-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: white;
  background: linear-gradient(90deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strength-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .strength-box {
    padding: 1.8rem 1.2rem;
  }
  .strength-icon {
    width: 70px; height: 70px; font-size: 1.7rem;
  }
}


    /* === LEFT: Contact Info === */
    .contact-wrapper{padding-bottom: 50px; padding-top: 50px;}
    .contact-info {
      flex: 1;
      padding: 2rem;
          background: rgb(75 182 220);
      backdrop-filter: blur(16px);
      border-radius: 24px;
      border: 1.5px solid var(--border);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      min-width: 280px;
    }

    .contact-info h2 {
      font-size: 2.2rem;
      color: var(--accent);
      margin-bottom: 1.5rem;
      position: relative;
    }

    .contact-info h2::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 0;
      width: 60px; height: 3px;
      background: var(--accent);
      border-radius: 2px;
      box-shadow: 0 0 15px var(--accent);
    }

    .info-item {
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
    }

    .info-item strong {
      color: white;
      display: block;
      margin-bottom: 0.3rem;
    }

    .info-item a {
      color: var(--accent);
      text-decoration: none;
    }

    .info-item a:hover {
      text-decoration: underline;
    }

    /* === RIGHT: Form === */
    .contact-form-container {
      flex: 1.5;
      background: white;
      padding: 2.5rem;
      border-radius: 28px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      position: relative;
      overflow: hidden;
    }

    .contact-form-container::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, rgba(87,224,255,0.05), rgba(39,55,116,0.05));
      pointer-events: none;
      border-radius: 28px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-full {
      grid-column: 1 / -1;
    }

    .form-group {
      position: relative;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      background: #f8f9fa;
      border: none;
      padding: 1rem 1.2rem;
      border-radius: 16px;
      font-size: 1rem;
      color: #333;
      transition: all 0.3s ease;
      box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
    }
.toggler-icon {
    display: flex
;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
}
.toggler-icon span {
    display: block;
    height: 3px;
    background: #57e0ff;
    border-radius: 2px;
    transition: 0.3s;
}
.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
    visibility: visible;
}
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(87,224,255,0.3), inset 0 2px 8px rgba(0,0,0,0.1);
      background: white;
    }

    .form-group textarea {
      min-height: 80px;
      resize: vertical;
    }

    /* Floating Labels */
    .form-group label {
      position: absolute;
      top: 1rem; left: 1.2rem;
      color: #999;
      font-size: 0.95rem;
      pointer-events: none;
      transition: all 0.3s ease;
      transform-origin: left;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
      top: -10px;
      left: 10px;
      font-size: 0.75rem;
      color: var(--accent);
      background: white;
      padding: 0 6px;
      font-weight: 600;
    }

    /* Send Button */
    .send-btn {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 1.5rem auto 0;
      box-shadow: 0 8px 25px rgba(87,224,255,0.4);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .send-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(87,224,255,0.6);
    }

    .send-btn::after {
      content: '';
      position: absolute;
      width: 20px; height: 20px;
      background: white;
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0);
      opacity: 0;
      transition: all 0.6s ease;
    }

    .send-btn:active::after {
      transform: translate(-50%, -50%) scale(8);
      opacity: 0.3;
    }

    .send-btn i {
      font-size: 1.2rem;
      transition: transform 0.4s ease;
    }

    .send-btn:hover i {
      transform: translateX(5px);
    }

    /* Success Message */
    .success {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: 1rem;
      color: var(--accent);
      font-weight: 600;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.6s ease;
    }

    .contact-form:valid .success {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-wrapper {
        flex-direction: column;
      }
      .contact-info {
        min-width: auto; margin-bottom: 30px;
      }
    }

    @media (max-width: 576px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      .contact-form-container {
        padding: 2rem;
      }
    }

    .main-content {
      flex: 1;
      padding: 3rem 0;
    }

    /* FOOTER */
    .custom-footer {
      background: linear-gradient(135deg, rgba(10,15,31,0.98), rgba(20,25,50,0.95));
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(87,224,255,0.2);
      padding: 4rem 0 2rem;
      position: relative;
      overflow: hidden;
    }

    .custom-footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at 50% 0%, rgba(87,224,255,0.15) 0%, transparent 60%);
      pointer-events: none;
    }

    .footer-logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      background: linear-gradient(90deg, white, var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
      display: inline-block;
    }

    .footer-logo i {
      color: var(--accent);
      margin-right: 8px;
    }

    .footer-desc {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.75);
      max-width: 300px;
      line-height: 1.7;
    }

    .footer-links h5 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.2rem;
      color: white;
      margin-bottom: 1.2rem;
      position: relative;
    }

    .footer-links h5::after {
      content: '';
      position: absolute;
      bottom: -6px; left: 0;
      width: 40px; height: 3px;
      background: var(--accent);
      border-radius: 2px;
      box-shadow: 0 0 15px var(--accent);
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.95rem;
      display: block;
      padding: 0.4rem 0;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 10px;
    }

    .footer-links a::before {
      content: '→';
      position: absolute;
      left: -15px;
      opacity: 0;
      transition: all 0.3s ease;
      color: var(--accent);
    }

    .footer-links a:hover::before {
      opacity: 1;
      left: 0;
    }

    /* Social Icons */
    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 1.5rem;
    }

    .social-icon {
      width: 44px; height: 44px;
      background: rgba(87,224,255,0.15);
      border: 1.5px solid rgba(87,224,255,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.1rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .social-icon::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      background: var(--accent);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.5s ease;
      z-index: 0;
    }

    .social-icon i {
      position: relative;
      z-index: 1;
      transition: color 0.4s ease;
    }

    .social-icon:hover {
      transform: translateY(-5px) scale(1.1);
      border-color: var(--accent);
      box-shadow: 0 10px 25px rgba(87,224,255,0.4);
    }

    .social-icon:hover::before {
      width: 100%; height: 100%;
    }

    .social-icon:hover i {
      color: var(--primary);
    }

    /* Newsletter */
    .newsletter-form {
      max-width: 320px;
    }

    .newsletter-form .form-control {
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(87,224,255,0.3);
      color: white;
      border-radius: 50px;
      padding: 0.75rem 1.2rem;
      font-size: 0.95rem;
      backdrop-filter: blur(8px);
    }

    .newsletter-form .form-control::placeholder {
      color: rgba(255,255,255,0.6);
    }

    .newsletter-form .form-control:focus {
      background: rgba(255,255,255,0.15);
      border-color: var(--accent);
      box-shadow: 0 0 20px rgba(87,224,255,0.3);
      color: white;
    }

    .newsletter-btn {
      position: absolute;
      right: 6px; top: 6px;
      width: 40px; height: 40px;
      background: var(--accent);
      border: none;
      border-radius: 50%;
      color: var(--primary);
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .newsletter-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(87,224,255,0.6);
    }

    /* Bottom Bar */
    .footer-bottom {
      border-top: 1px solid rgba(87,224,255,0.15);
      padding-top: 1.5rem;
      margin-top: 3rem;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
    }

    .footer-bottom a {
      color: var(--accent);
      text-decoration: none;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

    /* Floating Particles */
    .particle {
      position: absolute;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.6;
      animation: float 6s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }
.footer-links{    font-size: 23px;
    color: #9aecff;
    margin-bottom: 15px;}
   .custom-footer ul     {padding-left: 0px;}
      .custom-footer li {list-style: none;
    padding-bottom: 10px;}
     .custom-footer li  a    {color: #fff;
    text-decoration: none;
    list-style: none;
    font-size: 18px;
    margin-bottom: 11px;}
    /* Responsive */
    @media (max-width: 768px) {
      .footer-logo { font-size: 1.8rem; }
      .social-icons { justify-content: center; }
      .newsletter-form { max-width: 100%; }
    }