:root {
      --bg: #0a0d1a;
      --card-bg: rgba(255, 255, 255, 0.05);
      --primary: #273774;
      --secondary: #273774;
      --text: #7c3aed;
      --accent: #7c3aed;
      --glow: 0 0 30px rgba(0, 224, 255, 0.5);
      --border: rgba(0, 224, 255, 0.2);
    }
    .social-links a{text-decoration: none!important;}
.nav-links a{text-decoration: none!important;}
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
.hero {
      height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    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;
}
    /* Preloader */
    #preloader {
      position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
      background: var(--bg); display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.8s ease;
    }
    .loader {
      width: 90px; height: 90px; border: 6px solid transparent;
      border-top: 6px solid var(--primary); border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Custom Cursor */
    #cursor {
      position: fixed; width: 14px; height: 14px; background: var(--primary);
      border-radius: 50%; pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%); mix-blend-mode: difference;
      transition: transform 0.15s ease, background 0.3s;
    }
    .cursor-grow { transform: translate(-50%, -50%) scale(3) !important; background: var(--secondary); }

    /* Hero */
    .hero {
      min-height: 100vh; display: flex; align-items: center; position: relative;
      overflow: hidden; padding-top: 6rem;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 80%, rgba(0, 224, 255, 0.2), transparent 60%),
                  radial-gradient(circle at 80% 30%, rgba(255, 42, 109, 0.15), transparent 60%);
      z-index: 0;
    }
    .hero-content { position: relative; z-index: 2; text-align: center; }
    .hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: 6.5rem; font-weight: 900;
      background: linear-gradient(135deg, #00e0ff, #ff2a6d);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.1; margin-bottom: 1rem;
      animation: floatText 6s ease-in-out infinite;
    }
    @keyframes floatText {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    .hero p {
  font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    color: #fff;
    font-weight: 600;
    }
    .btn-cta {
         background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--glow);
    transition: all 0.4s ease;
text-decoration: none;
    }
    .btn-cta:hover {
      transform: translateY(-5px); box-shadow: 0 0 50px rgba(0, 224, 255, 0.8);
    }
#contact{margin-bottom: 30px;}
    /* Section Title */
    .section-title {
      text-align: center; font-size: 3.2rem; font-weight: 900;
     margin: 4.5rem 0 4.5rem; position: relative;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-title::after {
      content: ''; position: absolute; bottom: -15px; left: 50%;
      transform: translateX(-50%); width: 100px; height: 5px;
      background: var(--primary); border-radius: 3px;
      box-shadow: var(--glow);
    }

    /* About */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center;
    }
    .about-img {
      border-radius: 28px; overflow: hidden; box-shadow: var(--glow);
      transform: perspective(1000px) rotateY(-5deg);
      transition: transform 0.6s ease;
    }
    .about-img:hover { transform: perspective(1000px) rotateY(0); }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }

    /* Why Cards - 3D Tilt */
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
    }
    .why-card {
      background: var(--card-bg); backdrop-filter: blur(16px);
      border: 1px solid var(--border); border-radius: 24px;
          padding: 1.5rem 1.2rem; text-align: center; height: 100%;
      transition: all 0.5s ease; position: relative; overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .why-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,224,255,0.1), rgba(255,42,109,0.1));
      opacity: 0; transition: opacity 0.5s;
    }
    .why-card:hover::before { opacity: 1; }
    .why-card:hover {
      transform: translateY(-15px) scale(1.03);
      box-shadow: 0 25px 60px rgba(0, 224, 255, 0.3);
    }
    .why-icon {
      width: 90px; height: 90px; margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem; color: #000;
      box-shadow: var(--glow);
    }
    .why-card h3 {
      font-size: 1.5rem; margin-bottom: 1rem;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
.why-icon .fas{color: #fff;}
    /* Strengths - Circular Progress Style */
    .strengths-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2.5rem;
    }
    .strength-item {
      text-align: center; position: relative;
    }
    .strength-circle {
      width: 140px; height: 140px; margin: 0 auto 1.5rem;
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .strength-circle svg {
      width: 100%; height: 100%; transform: rotate(-90deg);
    }
    .strength-circle circle {
      fill: none;     stroke: rgb(0 0 0 / 10%); stroke-width: 8;
    }
    .strength-circle .progress {
      stroke: url(#gradient); stroke-linecap: round; stroke-width: 8;
      stroke-dasharray: 377; stroke-dashoffset: 377;
      transition: stroke-dashoffset 1.5s ease;
    }
    .strength-item:hover .progress {
      stroke-dashoffset: 75; /* ~80% */
    }
    .strength-icon-inner {
      position: absolute; font-size: 2.5rem; color: var(--primary);
    }
    .strength-item h3 {
      font-size: 1.4rem; margin-bottom: 0.8rem;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    /* Services - Image Overlay Reveal */
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
    }
    .service-card {
      position: relative; height: 400px; border-radius: 28px; overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); cursor: pointer;
    }
    .service-img {
      width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;
    }
    .service-overlay {
      position: absolute; inset: 0; background: rgba(10, 13, 26, 0.9);
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      padding: 2rem; text-align: center; opacity: 0; transition: opacity 0.6s ease;
      backdrop-filter: blur(8px);
    }
    .service-card:hover .service-img { transform: scale(1.15); }
    .service-card:hover .service-overlay { opacity: 1; }
    .service-overlay i {
      font-size: 3.5rem; color: var(--text); margin-bottom: 1rem;
    }
    .service-overlay h3 {
      font-size: 1.7rem; margin-bottom: 1rem;
      background: linear-gradient(90deg, var(--text), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
  .service-overlay p{color: #fff; font-size: 18px;}
    /* Contact */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; margin-top: 4rem;
    }
    .contact-info {
      background: var(--card-bg); backdrop-filter: blur(16px);
      border: 1px solid var(--border); border-radius: 28px; padding: 2.5rem;
      box-shadow: var(--glow); height: fit-content;
    }
    .contact-info h2 {
      font-size: 2.2rem; margin-bottom: 1.5rem;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .contact-form {
      background: #fff; padding: 3rem; border-radius: 32px;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    }
    .form-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    }
    .form-full { grid-column: 1 / -1; }
    .form-group { position: relative; }
    .form-group input, .form-group textarea {
      width: 100%; background: #f8f9fa; border: none;
      padding: 1.2rem 1.4rem; border-radius: 18px; font-size: 1rem;
      color: #333; transition: all 0.3s ease;
    }
    .form-group label {
      position: absolute; top: 1.2rem; left: 1.4rem; color: #888;
      font-size: 0.95rem; pointer-events: none; transition: all 0.3s ease;
    }
    .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: 16px; font-size: 0.75rem; color: var(--primary);
      background: #fff; padding: 0 8px; font-weight: 600;
    }
    .send-btn {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
          color: #ffffff; border: none; padding: 1.1rem 3rem; border-radius: 50px;
      font-weight: 700; font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; gap: 12px; margin-top: 1.5rem;
      box-shadow: var(--glow); transition: all 0.4s ease;
    }
    .send-btn:hover {
      transform: translateY(-4px); box-shadow: 0 0 50px rgba(0, 224, 255, 0.8);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 4.5rem; }
    }
    @media (max-width: 768px) {
      .hero h1 { font-size: 3.5rem; }
      .section-title { font-size: 2.5rem; }
      .form-grid { grid-template-columns: 1fr; }
      .section-title {
    margin: 2.5rem 0 4.5rem;}

    }

    /* ============== NAVBAR ============== */
    .navbar {
      position: fixed!important;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      padding: 1rem 0;
      transition: all 0.4s ease;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);  background: #fff;
    }

    .navbar.scrolled {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 0;
      box-shadow: var(--glow);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .logo {
      font-size: 1.8rem;    cursor: pointer;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    /* Desktop Nav Links */
    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links a {
      color: var(--text);
      font-weight: 500;
      font-size: 1rem;
      position: relative;
      padding: 0.5rem 0;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a i {
      font-size: 1.1rem;
      transition: transform 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
      border-radius: 1px;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

    .nav-links a:hover i,
    .nav-links a.active i {
      transform: translateY(-2px);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    /* Hamburger Button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 30px;
      height: 22px;
      cursor: pointer;
      z-index: 1001;
      transition: all 0.3s ease;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--primary);
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      transform-origin: center;
    }

    /* Hamburger to X Animation */
    .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: scale(0.3);
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 320px;
      height: 100vh;
      background: rgba(15, 15, 26, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 6rem 2rem 2rem;
      transition: right 0.5s cubic-bezier(0.77, 0, 0.18, 1);
      z-index: 1000;
      overflow-y: auto;
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
      border-left: 1px solid var(--border);
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 224, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s 
ease;
    text-decoration: none;
    }

    .mobile-menu.open a {
      opacity: 1;
      transform: translateX(0);
    }

    .mobile-menu a i {
      width: 24px;
      text-align: center;
      color: #fff;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      color: var(--primary);
      padding-left: 8px;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 999;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }
.navbar{ display: block!important; position: fixed;}
    /* Responsive */
    @media (max-width: 992px) {
      .hamburger {
        display: flex;
      }

      .nav-links {
        display: none;
      }
.navbar{z-index: 99999999; }

      .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
      .mobile-menu a:nth-child(2) { transition-delay: 0.2s; }
      .mobile-menu a:nth-child(3) { transition-delay: 0.3s; }
      .mobile-menu a:nth-child(4) { transition-delay: 0.4s; }
      .mobile-menu a:nth-child(5) { transition-delay: 0.5s; }
    }

    @media (max-width: 480px) {
      .logo {
        font-size: 1.5rem;
      }

      .mobile-menu {
        max-width: 100%;
      }
    }

    /* ============= FOOTER ============= */
    .footer {
      background: var(--card-bg);
      border-top: 1px solid var(--border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 3rem 2rem 0rem;
      margin-top: auto;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      gap: 2rem;
      align-items: start;
    }

    /* Brand */
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .footer-desc {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px;
    }

    /* Links */
    .footer-col h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      color: var(--text);
      position: relative;
      padding-bottom: 0.5rem;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--primary);
      border-radius: 1px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
        margin-left: -15px;
}

    .footer-links a {
      color: var(--muted);
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a i {
      font-size: 0.8rem;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
      transform: translateX(4px);
    }

    .footer-links a:hover i {
      opacity: 1;
    }

    /* Social */
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      width: 40px;
      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: var(--primary);
      font-size: 1.1rem;
      transition: all 0.4s ease;
    }

    .social-links a:hover {
      background: var(--primary);
      color: #000;
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    }

    /* Bottom Bar */
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 0.9rem;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

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

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

    /* Responsive */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
      .footer-desc {
        max-width: 100%;
      }
    }

    @media (max-width: 576px) {
      .footer-col h3::after {
      left: 8%;
        transform: translateX(-50%);
      }
      .footer-links a:hover {
        transform: none;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Arrow Scroll to Top Button */
    .arrow-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #000;
      border: none;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px) scale(0.8);
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      z-index: 999;
      backdrop-filter: blur(8px);
    }

    .arrow-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .arrow-top:hover {
      transform: translateY(-6px) scale(1.12);
      box-shadow: 0 0 45px rgba(0, 212, 255, 0.7);
    }

    .arrow-top:active {
      transform: translateY(-4px) scale(1.08);
    }

    .arrow-top i {
      animation: bounce 2s infinite; color: #fff;
    }

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

    /* Responsive */
    @media (max-width: 576px) {
      .arrow-top {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
      }
    }