  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      padding: 0;
      margin: 0;
      background: linear-gradient(135deg, #1C0A2A 0%, #2D1B47 50%, #1a4d7a 100%);
  }

  /* Gradient Background */
  .hero-section {
      min-height: 100vh;
      background: linear-gradient(135deg, #1C0A2A 0%, #2D1B47 50%, #1a4d7a 100%);
      position: relative;
      overflow: hidden;
  }

  .hero-section::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(210, 12, 243, 0.15) 0%, transparent 70%);
      animation: pulse 8s ease-in-out infinite;
      top: -50%;
      left: -50%;
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }
  }

  /* Navigation */
  .navbar {
      background: rgba(28, 10, 42, 0.8);
      background-color: #fff;
      backdrop-filter: blur(10px);
      padding: 1.2rem 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
      -webkit-backdrop-filter: blur(10px) !important;
      outline: 6px solid #93268F !important;
  }

  .navbar-brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff !important;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .btn-quote {
      background: linear-gradient(135deg, #D20CF3 0%, #FF2D92 100%);
      color: white;
      border: none;
      padding: 0.7rem 2rem;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(210, 12, 243, 0.4);
  }

  .btn-quote:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(210, 12, 243, 0.6);
      color: white;
  }

  /* Hero Content */
  .hero-content {
      position: relative;
      z-index: 2;
      padding: 6rem 0;
  }

  h1 {
      font-size: 4rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .subtitle {
      font-size: 1.3rem;
      color: #D3D3D3;
      margin-bottom: 2.5rem;
      line-height: 1.6;
  }

  /* Feature List */
  .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: all 0.3s;
  }

  .feature-item:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(10px);
  }

  .feature-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #D20CF3 0%, #FF2D92 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1.2rem;
      box-shadow: 0 4px 15px rgba(210, 12, 243, 0.4);
  }

  .feature-icon i {
      color: white;
      font-size: 1.5rem;
  }

  .feature-text {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 500;
  }

  /* Badges */
  .badges {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      flex-wrap: wrap;
  }

  .badge-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 1.2rem 2rem;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
  }

  .badge-stars {
      color: #FFD700;
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
  }

  .badge-text {
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
  }

  .badge-subtext {
      color: #D3D3D3;
      font-size: 0.85rem;
  }

  /* Quote Form */
  .quote-form {
      background: rgba(28, 10, 42, 0.7);
      backdrop-filter: blur(20px);
      padding: 2.5rem;
      border-radius: 20px;
      border: 1px solid rgba(210, 12, 243, 0.3);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
      position: relative;
  }

  .quote-form::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      border-radius: 20px;
      z-index: -1;
      opacity: 0.3;
      filter: blur(10px);
  }

  .quote-form h3 {
      /* color: #FF2D92; */
      color: #fff;
      font-weight: 700;
      margin-bottom: 0.5rem;
  }

  .quote-form p {
      color: #D3D3D3;
      margin-bottom: 2rem;
  }

  .form-control {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 0.9rem 1.2rem;
      color: #fff;
      margin-bottom: 1.2rem;
      transition: all 0.3s;
  }

  .form-control:focus {
      background: rgba(255, 255, 255, 0.15);
      border-color: #FF2D92;
      box-shadow: 0 0 20px rgba(255, 45, 146, 0.3);
      color: #fff;
  }

  .form-control::placeholder {
      color: rgba(211, 211, 211, 0.6);
  }

  textarea.form-control {
      min-height: 120px;
      resize: vertical;
  }

  .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, #D20CF3 0%, #FF2D92 100%);
      color: white;
      border: none;
      padding: 1rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(210, 12, 243, 0.4);
  }

  .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(210, 12, 243, 0.6);
  }

  /* Portfolio Section */
  .portfolio-section {
      background: linear-gradient(180deg, #1C0A2A 0%, #0f0520 100%);
      padding: 5rem 0;
      position: relative;
  }

  .section-title {
      text-align: center;
      color: #fff;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
  }

  .section-subtitle {
      text-align: center;
      color: #D3D3D3;
      font-size: 1.2rem;
      margin-bottom: 4rem;
  }

  .portfolio-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s;
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: 100%;
  }

  .portfolio-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 50px rgba(210, 12, 243, 0.3);
      border-color: #FF2D92;
  }

  .portfolio-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      background: linear-gradient(135deg, #2D1B47 0%, #1a4d7a 100%);
  }

  .portfolio-content {
      padding: 2rem;
  }

  .portfolio-title {
      color: #fff;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .portfolio-text {
      color: #D3D3D3;
      line-height: 1.6;
  }

  /* Footer */
  .footer {
      background: #0a0015;
      padding: 3rem 0 1.5rem;
      border-top: 1px solid rgba(210, 12, 243, 0.2);
  }

  .footer-text {
      color: #D3D3D3;
      text-align: center;
  }


  /* Responsive */
  @media (max-width: 768px) {
      h1 {
          font-size: 2.5rem;
      }

      .subtitle {
          font-size: 1.1rem;
      }

      .hero-content {
          padding: 3rem 0;
      }

      .quote-form {
          margin-top: 3rem;
      }

       .navbar .container {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between !important;
        padding: 0.7rem 0 !important;
    }


    /* Email ko chhota space dena */
    .navbar-nav {
        flex-direction: row;
        align-items: center;
    }

    .nav-item a {
        font-size: 0.85rem !important;
        white-space: nowrap; /* wrap hone se rokta hai */
        display: flex;
        align-items: center;
    }

  }

  /* Scroll Indicator */
  .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.6);
      animation: bounce 2s infinite;
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateX(-50%) translateY(0);
      }

      50% {
          transform: translateX(-50%) translateY(10px);
      }
  }

  swiper-container {
      width: 100%;
      height: 100%;

  }

  swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50%;
      background-color: none;
      height: 30% !important;
  }

  swiper-slide img {
      width: 95%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;

  }

  swiper-slide img {
      box-shadow: 2px 2px 6px -2px #D6D6D4;
  }

  .float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px #999;
      z-index: 100;
  }

  .my-float {
      margin-top: 16px;
  }

  div#successMessage {
      background: linear-gradient(135deg, #D20CF3 0%, #FF2D92 100%);
      color: #fff;
      font-weight: 600;
      border: none;
      padding: 0.7rem;
  }