
      body {
        margin: 0;
        font-family: "Poppins", sans-serif;
        background: radial-gradient(circle at top left, #0a0f2c, #000814);
        color: #fff;
        overflow-x: hidden;
      }

      /* ===================== HEADER ===================== */
      header {
        width: 100%;
        background: rgba(10, 15, 44, 0.9);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 123, 255, 0.2);
      }

      .navbar-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: #33c3ff;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .navbar-brand:hover {
        color: #007bff;
      }

      .navbar-nav .nav-link {
        color: #fff;
        font-weight: 500;
        margin-left: 25px;
        position: relative;
        transition: color 0.3s ease;
      }

      .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0%;
        height: 2px;
        background: linear-gradient(45deg, #007bff, #33c3ff);
        transition: width 0.3s ease;
      }

      .navbar-nav .nav-link:hover {
        color: #33c3ff;
      }

      .navbar-nav .nav-link:hover::after {
        width: 100%;
      }

      /* ===================== HERO SECTION ===================== */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 90px; /* Offset for fixed header */
      }

      .content h2 {
        font-size: 3.2rem;
        font-weight: 800;
        color: #f8fafc;
      }

      .content h2 span {
        background: -webkit-linear-gradient(45deg, #007bff, #33c3ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .divider {
        width: 70px;
        height: 4px;
        background: #007bff;
        margin: 20px 0;
        border-radius: 5px;
      }

      .description p {
        color: #b8c4d9;
        font-size: 1.05rem;
        line-height: 1.7;
      }

      .btn {
        background: linear-gradient(45deg, #007bff, #33c3ff);
        color: #fff;
        font-weight: 600;
        border: none;
        padding: 12px 30px;
        border-radius: 50px;
        transition: 0.3s ease;
      }

      .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
      }

      /* ===================== ORBIT AREA ===================== */
      .visual-content {
        position: relative;
        width: 420px;
        height: 420px;
        margin: auto;
      }

      .center-image {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        overflow: hidden;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 40px rgba(0, 123, 255, 0.6);
        z-index: 2;
      }

      .center-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: float 5s ease-in-out infinite alternate;
      }

      @keyframes float {
        from {
          transform: translateY(0px);
        }
        to {
          transform: translateY(-15px);
        }
      }

      .orbit {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 380px;
        height: 380px;
        transform: translate(-50%, -50%);
        border: 2px dashed rgba(0, 123, 255, 0.2);
        border-radius: 50%;
      }

      .orbit i {
        position: absolute;
        width: 65px;
        height: 65px;
        background: radial-gradient(circle, #007bff, #0056b3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
        transition: 0.4s ease;
        cursor: pointer;
      }

      .orbit i:hover {
        transform: scale(1.25);
        background: #fff;
        color: #007bff;
        box-shadow: 0 0 30px rgba(0, 123, 255, 0.9);
      }

      .orbit i::after {
        content: attr(title);
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 123, 255, 0.1);
        color: #33c3ff;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease, bottom 0.3s ease;
        pointer-events: none;
      }

      .orbit i:hover::after {
        opacity: 1;
        bottom: -45px;
      }

      /* Fixed Orbit Positions */
      .orbit i:nth-child(1) {
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
      .orbit i:nth-child(2) {
        top: 25%;
        right: 5%;
        transform: translate(50%, -50%);
      }
      .orbit i:nth-child(3) {
        bottom: 25%;
        right: 5%;
        transform: translate(50%, 50%);
      }
      .orbit i:nth-child(4) {
        bottom: 0%;
        left: 50%;
        transform: translate(-50%, 50%);
      }
      .orbit i:nth-child(5) {
        bottom: 25%;
        left: 5%;
        transform: translate(-50%, 50%);
      }
      .orbit i:nth-child(6) {
        top: 25%;
        left: 5%;
        transform: translate(-50%, -50%);
      }

      /* ===================== RESPONSIVE ===================== */
      @media (max-width: 992px) {
        header {
          padding: 10px 0;
        }
        .navbar-nav {
          background: rgba(0, 0, 0, 0.8);
          text-align: center;
          border-radius: 10px;
        }
        .navbar-nav .nav-link {
          margin: 10px 0;
        }

        .hero {
          text-align: center;
          padding: 100px 0 60px;
        }

        .content h2 {
          font-size: 2.5rem;
        }

        .visual-content {
          width: 320px;
          height: 320px;
          margin-top: 50px;
        }

        .center-image {
          width: 180px;
          height: 180px;
        }

        .orbit {
          width: 280px;
          height: 280px;
        }

        .orbit i {
          width: 50px;
          height: 50px;
          font-size: 20px;
        }
      }

      @media (max-width: 576px) {
        .content h2 {
          font-size: 2rem;
        }

        .description p {
          font-size: 0.95rem;
        }

        .visual-content {
          width: 260px;
          height: 260px;
        }

        .center-image {
          width: 150px;
          height: 150px;
        }

        .orbit {
          width: 230px;
          height: 230px;
        }

        .orbit i {
          width: 45px;
          height: 45px;
          font-size: 18px;
        }
      }


/*SERVICES SECTION CSS*/

  #services {
    background: linear-gradient(180deg, #0a0f2c, #000814);
    border-top: 1px solid rgba(0, 123, 255, 0.15);
    padding: 120px 0;
  }

  .service-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 123, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.3), rgba(51, 195, 255, 0.3));
    transition: all 0.4s ease;
    z-index: 0;
  }

  .service-box:hover::before {
    top: 0;
  }

  .service-box:hover {
    transform: translateY(-10px);
    border-color: rgba(51, 195, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.3);
  }

  .service-box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #007bff, #33c3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
  }

  .service-box:hover .icon {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(51, 195, 255, 0.6);
  }

  .service-box h4 {
    color: #33c3ff;
  }

  .service-box p {
    color: #b8c4d9;
  }

  @media (max-width: 768px) {
    #services {
      padding: 80px 0;
    }
    .service-box {
      margin-bottom: 20px;
    }
  }


/*PORTFOLIO SECTION CSS*/

  /* Background and Section Styling */
  .portfolio-section {
    background: linear-gradient(135deg, #031226 0%, #012a4a 45%, #004173 100%);
    color: #fff;
    padding: 90px 0;
    border-top: 1px solid rgba(51, 195, 255, 0.2);
    border-bottom: 1px solid rgba(51, 195, 255, 0.2);
    position: relative;
  }

  /* Optional Glow Effect */
  .portfolio-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.3), transparent 70%);
    filter: blur(80px);
    animation: floatGlow 10s ease-in-out infinite alternate;
  }

  @keyframes floatGlow {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(50px, 50px);
    }
  }

  .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .section-title span {
    background: linear-gradient(45deg, #00c6ff, #33c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-subtitle {
    color: #b0becf;
    font-size: 1rem;
    max-width: 650px;
    margin: 10px auto 0;
  }

  /* Portfolio Card */
  .portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 198, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.05);
    transition: 0.4s ease;
    cursor: pointer;
  }

  .portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s ease;
  }

  .portfolio-card:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
  }

  /* Overlay */
  .card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 123, 255, 0.85), rgba(51, 195, 255, 0.25));
    color: #fff;
    opacity: 0;
    border-radius: 16px;
    text-align: center;
    padding: 25px;
    transition: opacity 0.4s ease;
  }

  .portfolio-card:hover .card-overlay {
    opacity: 1;
  }

  .card-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .card-overlay p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Hover Glow */
  .portfolio-card:hover {
    box-shadow: 0 0 25px rgba(51, 195, 255, 0.35);
    border-color: rgba(51, 195, 255, 0.6);
    transform: translateY(-6px);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    .card-overlay p {
      font-size: 0.9rem;
    }
  }



/*TESTIMONIALS STYLING*/

  .testimonials-section {
    background: radial-gradient(circle at top left, #031119, #010b12);
    padding: 80px 0;
    position: relative;
  }

  .section-title {
    color: #33c3ff;
    font-weight: 700;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #007bff, #33c3ff);
    border-radius: 5px;
    margin: 15px auto;
  }

  .section-subtitle {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
  }

  .testimonial-card {
    background: rgba(10, 15, 44, 0.6);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.4);
    border-color: rgba(51, 195, 255, 0.4);
  }

  .client-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #007bff, #33c3ff);
    background-clip: padding-box;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
  }

  .testimonial-text {
    color: #e2e8f0;
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .client-info h5 {
    font-size: 1.1rem;
    color: #33c3ff;
    font-weight: 600;
  }

  .client-info span {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .stars i {
    color: #00c6ff;
    font-size: 1rem;
    margin: 0 2px;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.9rem;
    }

    .testimonial-card {
      padding: 25px 20px;
    }
  }



/*FAQ SECTION CSS*/
  .faq-section {
    background: rgba(10, 15, 44, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 80px 0;
    border-top: 1px solid rgba(0, 123, 255, 0.2);
  }

  .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .section-title span {
    background: linear-gradient(45deg, #007bff, #33c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 10px auto 0;
  }

  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.05);
    transition: 0.3s ease;
  }

  .faq-item:hover {
    border-color: #33c3ff;
    box-shadow: 0 0 20px rgba(51, 195, 255, 0.2);
  }

  .faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-question h5 {
    font-size: 1.05rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-question i.bi-question-circle {
    color: #33c3ff;
  }

  .faq-answer {
    display: none;
    padding: 0 25px 18px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .toggle-icon {
    color: #33c3ff;
    transition: transform 0.3s ease;
  }

  .faq-item.active .toggle-icon {
    transform: rotate(180deg);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    .faq-question h5 {
      font-size: 1rem;
    }
  }



/*CONTACT SECTION STYLING*/

  .contact-section {
    background: radial-gradient(circle at top left, rgba(10, 15, 44, 0.95), rgba(10, 15, 44, 0.9));
    backdrop-filter: blur(10px);
    color: #fff;
    position: relative;
  }

  .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
  }

  .section-title span {
    background: linear-gradient(45deg, #007bff, #33c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 10px auto 0;
  }

  /* Contact Info Card */
  .contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    color: #cbd5e1;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.05);
  }

  .contact-info h4 {
    color: #33c3ff;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .info-item i {
    font-size: 1.5rem;
    color: #33c3ff;
  }

  .info-item h6 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
  }

  .info-item p {
    font-size: 0.9rem;
    color: #94a3b8;
  }

  .social-links a {
    color: #33c3ff;
    font-size: 1.3rem;
    margin-right: 12px;
    transition: 0.3s ease;
  }

  .social-links a:hover {
    color: #007bff;
    transform: scale(1.2);
  }

  /* Contact Form */
  .contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.05);
  }

  .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.2);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    transition: 0.3s;
  }

  .form-control:focus {
    border-color: #33c3ff;
    box-shadow: 0 0 8px rgba(51, 195, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
  }

  .form-control::placeholder {
    color: #94a3b8;
  }

  .send-btn {
    background: linear-gradient(45deg, #007bff, #33c3ff);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: 0.4s ease;
  }

  .send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(51, 195, 255, 0.5);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    .contact-info,
    .contact-form {
      text-align: center;
    }
    .info-item {
      justify-content: center;
    }
  }

/*FOOTER STYLING*/

  .footer-section {
    background: rgba(10, 15, 44, 0.9);
    backdrop-filter: blur(10px);
    color: #e2e8f0;
    padding: 70px 0 20px;
    border-top: 1px solid rgba(0, 123, 255, 0.2);
  }

  .footer-brand {
    color: #33c3ff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .footer-social a {
    display: inline-block;
    color: #33c3ff;
    font-size: 1.2rem;
    margin-right: 12px;
    transition: 0.3s ease;
  }

  .footer-social a:hover {
    color: #007bff;
    transform: scale(1.2);
  }

  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #33c3ff;
    margin-bottom: 15px;
    position: relative;
  }

  .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #007bff, #33c3ff);
    border-radius: 2px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    color: #33c3ff;
    text-decoration: underline;
  }

  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-contact li {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-contact i {
    color: #33c3ff;
  }

  .footer-divider {
    border-color: rgba(0, 123, 255, 0.2);
    margin: 40px 0 20px;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
  }

  @media (max-width: 768px) {
    .footer-section {
      text-align: center;
    }

    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-social a {
      margin: 0 8px;
    }
  }

