    body {
      background: linear-gradient(to right, rgb(59, 41, 63), rgb(56, 38, 61));
      font-family: 'Tajawal', sans-serif !important;

      
    }

        h1,
    h2,
    h3,
    h4,
    p,
    button,
    label{
      font-family: 'Tajawal', sans-serif !important;
    }


    .navbar-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-symbol {
      font-size: 1.8rem;
      margin-left: 10px;
      color: #7a5bb4;
      font-weight: 400;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-main {
      font-size: 1.6rem;
      font-weight: 700;
      color: rgb(176, 154, 215);

    }

    .logo-tag {
      font-size: 0.7rem;
      color: #7a5bb4;
      font-weight: 500;
      margin-top: 2px;
    }

    .navbar {
      backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(176, 154, 215, 0.3);
      padding: 0.8rem 2rem !important;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(93, 82, 117, 0.05);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover {
      transform: scale(1.02);
    }

    .logo-symbol {
      font-size: 2.2rem;
      margin-left: 12px;
      color: #7a5bb4;
      font-weight: 300;
      filter: drop-shadow(0 0 5px rgba(122, 91, 180, 0.2));
    }

    .logo-main {
      font-size: 1.8rem;
      font-weight: 800;
      color: rgb(176, 154, 215);
      letter-spacing: -0.5px;
    }

    .logo-tag {
      font-size: 0.75rem;
      color: #7a5bb4;
      font-weight: 600;
      margin-top: -2px;
      letter-spacing: 1px;
    }

    .navbar-nav .nav-link.active1 {
      color: white !important;
    }
    .navbar-nav .nav-link:focus {
  color: #ffffff !important;
}


.navbar-nav {
  text-align: center !important;
  padding: 10px 0 !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important; 
  justify-content: center !important;
}

.navbar-nav .nav-item {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.navbar-nav .nav-link {
  font-size: 18px !important;
  color: rgb(122, 91, 180) !important;
  padding: 8px 20px !important;
  position: relative !important;
  display: inline-block !important;
  width: max-content !important; 
  transition: all 0.3s ease !important;
}

.navbar-nav .nav-link:hover {
  color: rgb(243, 243, 244) !important;
  transform: translateY(-2px) !important;
}

.navbar-nav .nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 2px !important; 
  
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important; 
  
  width: 0 !important; 
  height: 2px !important;
  background: linear-gradient(135deg, rgb(159, 67, 224), rgb(122, 91, 180)) !important;
  transition: width 0.3s ease-in-out !important;
}

.navbar-nav .nav-link:hover::after {
  width: 60% !important; 
}

 .moving-pic {
    position: relative;
    display: inline-block;
    animation: floatAnim 4s ease-in-out infinite, pulseAnim 3s ease-in-out infinite;
    z-index: 2;
}

.moving-pic::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    border: 2px dashed rgba(122, 91, 180, 0.5);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotateFrame 20s linear infinite;
    z-index: -1;
}

.moving-pic::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px;
    right: -5px; bottom: -5px;
    border: 3px solid transparent; 
    border-top: 3px solid #9f43e0; 
    border-radius: 50%; 
    animation: rotateCircle 3s linear infinite; 
    z-index: 1;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes pulseAnim {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.03); filter: brightness(1.1); }
}

@keyframes rotateFrame {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    to { transform: rotate(360deg) scale(1); }
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes pulseAnim {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1); 
    }
    50% { 
        transform: scale(1.03); 
        filter: brightness(1.1); 
    }
}

.navbar-toggler {
  border: 1px solid rgba(176, 154, 215, 0.2) !important; 
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: rgba(59, 41, 63, 0.4) !important;
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  
  outline: none !important;          
  box-shadow: none !important;      
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  outline: none !important;         
  box-shadow: 0 0 10px rgba(176, 154, 215, 0.4) !important; 
  background: rgba(122, 91, 180, 0.2) !important;
  border-color: rgba(176, 154, 215, 0.5) !important;
  transform: scale(1.05);
}

.navbar-toggler i {
  font-size: 1.25rem !important;
  color: rgb(176, 154, 215) !important;
  transition: transform 0.3s ease;
}

.navbar-toggler:not(.collapsed) i {
  transform: rotate(90deg);
  color: white !important;
}


    .container .p {
      font-size: 50px;
    }

    .container .h3 {
      color: rgb(122, 91, 180);
    }

    .container {
      color: white
    }

    .feature-badge {
      display: inline-block;
      background: linear-gradient(90deg,
          rgba(122, 91, 180, 0.1),
          rgba(176, 154, 215, 0.1));
      color: rgb(159, 67, 224);
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 20px;
      border: 1px solid rgba(122, 91, 180, 0.2);
    }

    .tech-gradient {
      background: linear-gradient(90deg, rgb(159, 67, 224), #b09ad7);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: 800;
    }

    .hero-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
      color: rgb(122, 91, 180);
    }

    .features-quick span {
      font-size: 1.1rem;
      color: rgb(220, 204, 222);
      font-weight: 500;
    }

    .features-quick i {
      color: #28a745;
    }

    /* تمييز النص */
    .highlight-text {
      background: linear-gradient(90deg,
          rgba(122, 91, 180, 0.15),
          rgba(176, 154, 215, 0.15));
      padding: 3px 10px;
      border-radius: 5px;
      color: #9878d4;
      font-weight: 600;
    }

    .btn-primary {
      background: linear-gradient(135deg, rgb(159, 67, 224), rgb(122, 91, 180)) !important;
      border: none;
      padding: 12px 35px;
      border-radius: 50px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(122, 91, 180, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(122, 91, 180, 0.4);
    }

    .btn-outline-primary {
      border: 2px solid #7a5bb4;
      color: #7a5bb4;
      padding: 12px 35px;
      border-radius: 50px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
      background: linear-gradient(135deg, rgb(159, 67, 224), rgb(122, 91, 180)) !important;
      color: white;
      border-color: transparent;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(122, 91, 180, 0.2);
    }

.hero-section {
    background-color: transparent !important;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(122, 91, 180, 0.4) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.hero-section .shape {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px solid rgba(122, 91, 180, 0.6);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotate 20s infinite linear;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.hero-section .shape-1 {
    top: 10%;
    left: 10%;
    border-color: rgba(122, 91, 180, 0.8);
}

.hero-section .shape-2 {
    bottom: 10%;
    right: 10%;
    border-color: rgba(91, 46, 102, 0.8);
    animation-direction: reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


    .section i {
      border-radius: 50px;
      background-color: #a141cd;
      color: #000;
      padding: 0.5rem 0;
    }

    .about-card {
      background: rgba(255, 255, 255, 0.4);
      border-radius: 30px;
      border: 1px solid rgba(176, 154, 215, 0.2);
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
    }


    .title-line {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, transparent, rgb(122, 91, 180), transparent);
      margin-top: 10px;
      border-radius: 2px;
    }

    .custom-list li {
      margin-bottom: 15px;
      color: #d7c5ff;
      display: flex;
      align-items: center;
      transition: 0.3s;
    }

    .custom-list li i {
      color: rgb(124, 92, 180);
      margin-left: 15px;
      font-size: 1.2rem;
    }

    .custom-list li:hover {
      padding-right: 10px;
      color: rgb(184, 164, 221);
    }

    .image-wrapper {
      position: relative;
      padding: 20px;
    }

    .image-bg-blob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80%;
      background: rgba(176, 154, 215, 0);
      filter: blur(50px);
      border-radius: 50%;
      z-index: -1;
    }

    .moving-pic {
      animation: floatAbout 5s ease-in-out infinite;
    }

    @keyframes floatAbout {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-20px) rotate(2deg);
      }
    }


    .card {
      background: rgba(133, 111, 144, 0.115) !important;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(58, 57, 58, 0.3) !important;
      border-radius: 30px !important;
      color: #e0dfe3 !important;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card i {
      color: rgb(122, 91, 180);
      margin-bottom: 20px;
      transition: all 0.5s ease;
      filter: drop-shadow(0 0 10px rgba(122, 91, 180, 0.2));
    }

    .card h4 {
      font-weight: 800;
      color: rgb(122, 91, 180);
      margin-bottom: 15px;
    }

    .card p {
      font-size: 15px;
      line-height: 1.6;
      color: #5d5275;
      opacity: 0.9;
    }

    .card .btn-primary {
      background: linear-gradient(135deg, rgb(150, 70, 207), rgb(122, 91, 180)) !important;
      border: none !important;
      border-radius: 15px !important;
      padding: 10px 25px !important;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(122, 91, 180, 0.3);
    }

    .card:hover {
      transform: translateY(-15px) scale(1.02);
      background: rgba(47, 46, 46, 0.1) !important;
      border-color: rgb(150, 70, 207) !important;
      box-shadow: 0 20px 40px rgba(150, 70, 207, 0.15);
    }

    .card:hover i {
      transform: scale(1.2) rotate(5deg);
      color: rgb(150, 70, 207);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.6s;
    }

    .card:hover::before {
      left: 100%;
    }






    .hero-section .container h1 {
      color: rgb(122, 91, 180);

    }

    .hero-section .container h5 {
      color: rgb(128, 93, 170);

    }

    .hero-section .container p {
      color: rgb(255, 255, 255);
    }

    .form-check-label {
      color: rgb(255, 255, 255);
    }

    .hero-section .container h4 {
      color: rgb(143, 103, 192);
    }

.hero-quote {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    line-height: 1.8;
    color: #555;
    border-right: 4px solid #9f43e0;
    background: rgba(159, 67, 224, 0.03);
    border-radius: 5px;
    font-style: italic;
}

    .py-5 .text {
      color: #7a5ca0;
    }


    .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 15px;

    }

    .active1 {

      border-radius: 50px;
      background: linear-gradient(135deg, rgb(159, 67, 224), rgb(122, 91, 180)) !important;
      color: white;
      padding: 8px 20px;
      transition: all 1.5s;
    }

    .card-body {
      background-color: #1f2421e8;
    }

    .card {
      background-color: #00000041;
      color: rgb(255, 255, 255);
    }

    .img-fluid {
      fill: rgb(211, 207, 214);
    }


    .swiper-slide {
      height: 500 !important;
      display: flex;
    }

    .swiper-slide .card {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* توزيع المحتوى بالتساوي */
      border-radius: 25px !important;
      border: 1px solid rgba(176, 154, 215, 0.2) !important;
      background: #ffffff0d !important;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
      overflow: hidden;

    }

    .swiper-slide .card img {
      animation: none !important;
      height: 270px !important;
      width: 100%;
      object-fit: cover;
      border-bottom: 2px solid rgba(122, 91, 180, 0.1);

    }

    .swiper-slide .card-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;

    }

    .swiper-slide h3 {
      color: rgb(131, 105, 180);
      font-weight: 700;
      font-size: 1.3rem;
    }

    .swiper-slide p {
      font-size: 15px;
      color: #5d5275;
      flex-grow: 1;
      margin-bottom: 15px;
    }

    .swiper-slide small {
      display: block;
      padding-top: 10px;
      border-top: 1px dashed rgba(122, 91, 180, 0.3);
      color: rgb(131, 105, 180) !important;
      font-style: italic;
      font-weight: 600;
    }

    .swiper-slide .card:hover {
      transform: scale(0.98);
      border-color: rgb(122, 91, 180) !important;
      box-shadow: 0 10px 25px rgba(122, 91, 180, 0.1) !important;
    }


    .btn-primary.btn-lg {
      background: linear-gradient(135deg, rgb(159, 67, 224), rgb(122, 91, 180)) !important;
      border: none !important;
      padding: 15px 40px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      box-shadow: 0 8px 20px rgba(122, 91, 180, 0.3) !important;
      transition: all 0.4s ease;
    }

    .btn-primary.btn-lg:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 12px 30px rgba(159, 67, 224, 0.4) !important;
    }

    @keyframes floatImg {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .custom-form .form-label {
      color: #5d5275;
      font-weight: 600;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    .hero-section img {
      filter: drop-shadow(0 0 25px rgba(122, 91, 180, 0.4));
      animation: floatImg 4s ease-in-out infinite;
    }


    .card-question {
      background: rgba(255, 255, 255, 0.07) !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(150, 70, 207, 0.2) !important;
      border-radius: 40px !important;
      padding: 50px !important;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
    }

    .custom-form .form-label {
      color: #e0d9f0 !important;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .custom-form .form-control,
    .custom-form .form-select,
    .custom-form .input-group-text {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(150, 70, 207, 0.15) !important;
      border-radius: 15px !important;
      color: #d3ccd4 !important;
      padding: 12px 18px;
      transition: all 0.4s ease;
    }

    .custom-form .form-control:focus,
    .custom-form .form-select:focus {
      background: rgba(255, 255, 255, 0.12) !important;
      border-color: #c290f4 !important;
      box-shadow: 0 0 20px rgba(150, 70, 207, 0.3) !important;
      transform: translateY(-3px);
      outline: none;
    }

    .btn-submit {
      background: linear-gradient(135deg, rgb(150, 70, 207), rgb(122, 91, 180)) !important;
      color: white !important;
      border: none !important;
      border-radius: 20px !important;
      padding: 15px 60px !important;
      font-weight: 800 !important;
      box-shadow: 0 10px 25px rgba(122, 91, 180, 0.3) !important;
      transition: 0.4s;
    }

    .btn-submit:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 15px 35px rgba(150, 70, 207, 0.5) !important;
    }

    ::placeholder {
      color: rgba(255, 255, 255, 0.4) !important;
    }


    .card-question-quiz {
      backdrop-filter: blur(15px);
      border: 1px solid rgba(150, 70, 207, 0.3) !important;
      border-radius: 30px !important;
      min-height: 520px !important;
      /* ارتفاع موحد لكل الأسئلة */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      color: white;
      transition: 0.3s;
    }

    .option-container {
      position: relative;
      margin-bottom: 15px;
    }

    .option-container input[type="radio"] {
      display: none;
    }

    .option-container label {
      display: block;
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.1);
      padding: 15px 25px;
      border-radius: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .option-container input[type="radio"]:checked+label {
      background: rgba(150, 70, 207, 0.3) !important;
      border-color: #c290f4 !important;
      box-shadow: 0 0 15px rgba(150, 70, 207, 0.4);
      transform: translateX(-5px);
    }

    .option-container label:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .progress-bar-top {
      position: fixed;
      top: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(135deg, rgb(159, 67, 224), rgb(122, 91, 180)) !important;
      z-index: 9999;
      transition: width 0.4s ease;
    }

    :root {
      --primary-purple: #9f43e0;
      --soft-mauve: #5d5275;
    }

    body {
      color: white;
      overflow-x: hidden;
    }

    .hero-result {
      background: linear-gradient(180deg, rgba(159, 67, 224, 0.1) 0%, transparent 100%);
      border-radius: 0 0 100px 100px;
      padding-bottom: 80px;
    }

    .cards {
      background: rgba(27, 27, 27, 0.175);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(194, 144, 244, 0.15) !important;
      border-radius: 35px !important;
      padding: 40px 30px;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

      height: 100% !important;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
    }

    .cards:hover {
      transform: translateY(-15px) scale(1.02);
      background: rgba(76, 60, 81, 0.08) !important;
      border-color: var(--primary-purple) !important;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(159, 67, 224, 0.2);
    }

    .icon-box {
      width: 70px;
      height: 70px;
      background: rgba(159, 67, 224, 0.2);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      color: #c290f4;
      font-size: 1.8rem;
      transition: 0.3s;
    }

    .cards:hover .icon-box {
      background: var(--primary-purple);
      color: white;
      transform: rotate(10deg);
    }

    .btn-future {
      background: transparent;
      border: 2px solid var(--primary-purple);
      color: white;
      border-radius: 50px;
      padding: 12px 30px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.4s;
    }

    .btn-future:hover {
      background: var(--primary-purple);
      box-shadow: 0 0 30px var(--primary-purple);
      color: white;
    }

    .glow-title {
      font-size: 3.5rem;
      font-weight: 900;
      text-shadow: 0 0 30px rgba(159, 67, 224, 0.5);
    }


    .tp-main-wrapper {
      color: white;
      overflow-x: hidden;
    }

    .tp-glow-purple {
      color: #9f43e0 !important;
      text-shadow: 0 0 15px rgba(159, 67, 224, 0.4);
      font-weight: 800;
    }

    .tp-hero-img {
      filter: drop-shadow(0 0 15px rgba(159, 67, 224, 0.25));
      transition: 0.5s ease;
      max-width: 450px;
    }

    .tp-hero-img:hover {
      transform: translateY(-10px) scale(1.02);
      filter: drop-shadow(0 0 25px rgba(159, 67, 224, 0.4));
    }

    .tp-feature-card {
      background: rgba(255, 255, 255, 0.03) !important;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(159, 67, 224, 0.15) !important;
      border-radius: 25px;
      padding: 30px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: 0.4s;
    }

    .tp-feature-card:hover {
      background: rgba(255, 255, 255, 0.06) !important;
      border-color: #9f43e0 !important;
      transform: translateY(-8px);
    }

    .tp-tip-box {
      background: rgba(255, 255, 255, 0.02);
      padding: 20px;
      border-radius: 15px;
      transition: 0.3s;
    }

    .tp-tip-right {
      border-right: 4px solid #9f43e0;
    }

    .tp-tip-left {
      border-left: 4px solid #9f43e0;
    }

    @keyframes tpPulse {
      0% {
        transform: scale(1);
        opacity: 0.9;
      }

      50% {
        transform: scale(1.03);
        opacity: 1;
      }

      100% {
        transform: scale(1);
        opacity: 0.9;
      }
    }

    .tp-pulse-element {
      animation: tpPulse 4s ease-in-out infinite;
    }

.text-purple-solid-original {
    color: rgb(122, 91, 180) !important;
    font-weight: 800 !important;
}

.text-purple-icon-original {
    color: rgb(122, 91, 180);
    vertical-align: middle;
}

.clean-description-text {
    color: #4f4f4f;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.transparent-dashed-card {
    background: transparent !important; 
    border: 2px dashed rgba(122, 91, 180, 0.45); 
    border-right: 6px solid rgb(122, 91, 180); 
    box-shadow: 0 8px 25px rgba(122, 91, 180, 0.01);
    text-align: right;
    transition: all 0.3s ease;
}

.transparent-dashed-card:hover {
    border-color: rgb(122, 91, 180); 
    transform: translateY(-2px);
}

.advice-icon-wrap-dashed {
    color: rgb(122, 91, 180);
    font-size: 1.1rem;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.text-purple-heading-original {
    color: rgb(122, 91, 180);
}

.advice-body-text-dashed {
    color: #555555;
    line-height: 1.7;
    font-size: 0.98rem;
}
    


#home {
    min-height: 85vh;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}
.circle-1 {
    width: 400px;
    height: 400px;
    background: rgb(122, 91, 180);
    top: -10%;
    right: -5%;
}
.circle-2 {
    width: 300px;
    height: 300px;
    background: #3b293f;
    bottom: -5%;
    left: 5%;
}

.text-gradient {
    background: linear-gradient(to left, #b194d1, #7a5bb4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.bg-purple-soft {
    background: rgba(122, 91, 180, 0.2);
    border: 1px solid rgba(122, 91, 180, 0.4);
    color: #dfd5f0;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
}

.hero-img-wrapper {
    display: inline-block;
}
.floating-img {
    animation: floatAnimation 5s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.tech-frame {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px dashed rgba(122, 91, 180, 0.3);
    top: 5%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotateFrame 20s linear infinite;
}

@keyframes rotateFrame {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-outline-light:hover {
    background-color: rgb(122, 91, 180);
    border-color: rgb(122, 91, 180);
    color: #fff;
    transition: all 0.3s ease;
}



        .tp-footer-share {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 40px 20px;
        }

        .share-header {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .share-header .line {
            height: 1px;
            flex-grow: 1;
            background: linear-gradient(to right, transparent, rgba(159, 67, 224, 0.5), transparent);
        }

        .share-buttons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .share-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(159, 67, 224, 0.1);
            padding: 15px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            text-decoration: none !important;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .share-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #fff;
            transition: 0.4s;
            margin-left: 15px;
        }

        .share-info {
            text-align: right;
        }

        .share-info strong {
            display: block;
            color: #fff;
            font-size: 0.95rem;
        }

        .share-info span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
        }

        .share-card.whatsapp:hover {
            border-color: #25d366;
            background: rgba(37, 211, 102, 0.05);
            transform: translateY(-5px);
        }

        .share-card.whatsapp:hover .share-icon {
            background: #25d366;
            box-shadow: 0 0 15px #25d366;
        }

        .share-card.facebook:hover {
            border-color: #1877f2;
            background: rgba(24, 119, 242, 0.05);
            transform: translateY(-5px);
        }

        .share-card.facebook:hover .share-icon {
            background: #1877f2;
            box-shadow: 0 0 15px #1877f2;
        }

        .share-card.instagram:hover {
            border-color: #d6249f;
            background: rgba(214, 36, 159, 0.05);
            transform: translateY(-5px);
        }

        .share-card.instagram:hover .share-icon {
            background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
            box-shadow: 0 0 15px #d6249f;
        }

        .share-card.twitter:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
        }

        .share-card.twitter:hover .share-icon {
            background: #000;
            box-shadow: 0 0 15px #fff;
        }

        .tp-glow-purple {
            color: #c290f4;
            text-shadow: 0 0 10px rgba(159, 67, 224, 0.5);
            font-size: 1.5rem;
        }
.tp-card-header {
    color: rgb(122, 91, 180) !important;
    font-weight: 800 !important; 
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    padding-right: 10px !important;
    border-right: 4px solid rgb(122, 91, 180); 
    letter-spacing: 0.5px;
}


        