    /* About Section Styles (Injected to bypass cache) */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 992px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }
    }

    .about-subtitle {
      color: var(--primary);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 15px;
    }

    .about-title {
      font-family: var(--font-heading);
      font-size: 38px;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .about-text {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 30px;
      font-size: 16px;
    }

    .about-visuals {
      position: relative;
      height: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .visual-circle {
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 2px dashed rgba(220, 53, 69, 0.2);
      z-index: 1;
    }

    .visual-item {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 2;
      width: 140px;
    }

    .visual-item img {
      width: 90px !important;
      height: 90px !important;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      object-fit: cover;
      border: 4px solid white;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: border-radius 0.3s ease;
    }

    .visual-item:hover img {
      border-radius: 50%;
    }

    .visual-badge {
      position: absolute;
      top: 60px;
      right: 20px;
      background: white;
      color: var(--primary);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
      font-size: 12px;
      z-index: 3;
    }

    .visual-label {
      margin-top: 10px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 13px;
      color: var(--text-dark);
      background: white;
      padding: 6px 16px;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      white-space: nowrap;
    }

    .visual-1 {
      top: 20px;
      left: 5%;
    }

    .visual-2 {
      top: 70px;
      right: 5%;
    }

    .visual-3 {
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    @media (max-width: 768px) {
      .about-content {
        text-align: center;
      }

      .about-title {
        font-size: 28px;
      }

      .about-visuals {
        transform: scale(0.8);
        height: 320px;
      }

      .mobile-reduce-gap-bottom {
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
      }

      .mobile-reduce-gap-top {
        padding-top: 20px !important;
        margin-top: 0px !important;
      }
    }

    /* Hero Section Layout (Injected to bypass cache) */
    .hero-container {
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      gap: 40px;
    }

    @media (min-width: 768px) {
      .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        /* Text gets slightly more space than image */
      }

      .hero-content {
        text-align: left !important;
        max-width: 100% !important;
        margin: 0 !important;
      }
    }

    .hero-image {
      display: flex;
      justify-content: center;
      position: relative;
    }

    @keyframes bannerFloat {
      0% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }

      100% {
        transform: translateY(0);
      }
    }

    .hero-image img {
      width: 100%;
      max-width: 450px;
      height: 500px;
      object-fit: contain;
      mix-blend-mode: multiply;
      animation: bannerFloat 2.5s ease-in-out infinite;
    }

    /* Mobile Hotfix for Hero Overlapping Navbar */
    @media (max-width: 768px) {
      .hero {
        height: auto !important;
        min-height: auto !important;
        padding: 100px 0 0px !important;
        /* Ensure enough space under navbar */
        align-items: flex-start !important;
      }

      .hero-title {
        font-size: 40px !important;
        margin-top: 10px !important;
      }

      .hero-image img {
        height: 400px !important;
        mix-blend-mode: multiply !important;
        -webkit-mix-blend-mode: multiply !important;
        animation: bannerFloat 2.5s ease-in-out infinite !important;
        -webkit-animation: bannerFloat 2.5s ease-in-out infinite !important;
      }
    }

    /* Dropdown Styles */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 10px 0;
      min-width: 250px;
      z-index: 1000;
      list-style: none;
      border: 1px solid rgba(0, 0, 0, 0.05);
      max-height: 400px;
      overflow-y: auto;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu li {
      padding: 0;
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .dropdown-menu li a::after {
      display: none !important;
      /* Hide the underline animation for dropdown items */
    }

    .dropdown-menu li a:hover {
      background: rgba(220, 53, 69, 0.05);
      color: var(--primary) !important;
      padding-left: 25px;
      /* Subtle hover effect */
    }

    @media (max-width: 768px) {
      .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        padding: 5px 0 5px 15px;
        max-height: 300px;
        overflow-y: auto;
      }

      .dropdown:hover .dropdown-menu,
      .dropdown:focus-within .dropdown-menu,
      .dropdown:active .dropdown-menu {
        display: block;
      }
    }

    /* Sticky Register Widget */
    .sticky-register-btn {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background: var(--primary);
      color: white;
      padding: 24px 10px;
      border-radius: 0 10px 10px 0;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      border: none;
      box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
      z-index: 999;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transition: background 0.3s ease;
      letter-spacing: 2px;
    }

    .sticky-register-btn:hover {
      background: #b1334f;
    }

    /* Modal Overlay & Content */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: white;
      width: 90%;
      max-width: 450px;
      border-radius: 16px;
      padding: 40px 30px;
      position: relative;
      transform: scale(0.9);
      transition: all 0.3s ease;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      max-height: 90vh;
      overflow-y: auto;
    }

    @media (max-width: 768px) {
      .modal-content {
        padding: 25px 20px;
      }

      .modal-title {
        font-size: 20px;
      }

      .modal-subtitle {
        margin-bottom: 15px;
      }

      .register-form .form-group {
        margin-bottom: 10px;
      }

      .register-form input,
      .register-form select {
        padding: 10px 12px;
      }
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      font-size: 28px;
      color: var(--text-light);
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .modal-close:hover {
      color: var(--primary);
    }

    .modal-title {
      font-family: var(--font-heading);
      font-size: 24px;
      color: var(--text-dark);
      margin-bottom: 5px;
      text-align: center;
    }

    .modal-subtitle {
      font-size: 14px;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 25px;
    }

    .register-form .form-group {
      margin-bottom: 15px;
    }

    .register-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 5px;
    }

    .register-form input,
    .register-form select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 14px;
      transition: border-color 0.3s ease;
    }

    .register-form input:focus,
    .register-form select:focus {
      outline: none;
      border-color: var(--primary);
    }

    /* WhatsApp AI Widget */
    .whatsapp-widget {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
    }

    .whatsapp-btn {
      width: 60px;
      height: 60px;
      background-color: #25D366;
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: transform 0.3s ease;
      color: white;
      font-size: 32px;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
    }

    .whatsapp-chat-box {
      position: absolute;
      bottom: 80px;
      right: 0;
      width: 320px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      display: none;
      flex-direction: column;
      transform-origin: bottom right;
      animation: popUp 0.3s ease forwards;
    }

    @keyframes popUp {
      from {
        opacity: 0;
        transform: scale(0.8);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .whatsapp-chat-box.active {
      display: flex;
    }

    .chat-header {
      background: #075E54;
      color: white;
      padding: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .chat-header img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .chat-header-info h4 {
      margin: 0;
      font-size: 15px;
      font-family: var(--font-heading);
    }

    .chat-header-info p {
      margin: 2px 0 0;
      font-size: 12px;
      opacity: 0.8;
    }

    .chat-body {
      padding: 15px;
      background: #E5DDD5;
      height: 250px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .chat-msg {
      max-width: 85%;
      padding: 10px 15px;
      border-radius: 15px;
      font-size: 13px;
      line-height: 1.4;
      position: relative;
    }

    .chat-msg.bot {
      background: white;
      align-self: flex-start;
      border-top-left-radius: 0;
    }

    .chat-msg.user {
      background: #DCF8C6;
      align-self: flex-end;
      border-top-right-radius: 0;
    }

    .chat-time {
      font-size: 10px;
      color: #999;
      display: block;
      text-align: right;
      margin-top: 5px;
    }

    .chat-footer {
      padding: 15px;
      background: #F0F0F0;
      display: flex;
      gap: 10px;
    }

    .chat-footer input {
      flex: 1;
      padding: 10px 15px;
      border: none;
      border-radius: 20px;
      outline: none;
      font-family: var(--font-body);
    }

    .chat-footer button {
      background: #128C7E;
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background 0.2s;
    }

    .chat-footer button:hover {
      background: #075E54;
    }

    /* Extracted from index.html for SonarQube Compliance */
    .slider-empty-msg {
      padding: 40px;
      text-align: center;
      width: 100%;
    }

    .slider-mobile-chunk {
      flex: 0 0 100%;
    }

    .slider-mobile-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      padding: 0 5px;
    }

    .slider-slide-inner-custom {
      position: relative;
      cursor: pointer;
    }

    .slider-slide-img {
      object-fit: cover;
      filter: blur(4px);
      transition: filter 0.3s ease;
    }

    .slider-lock-icon-container {
      position: absolute;
      top: 42%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.65);
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 2px solid rgba(212, 175, 55, 0.7);
    }

    .slider-lock-icon {
      font-size: 20px;
      color: #d4af37;
    }

    .slider-caption-custom {
      font-size: 16px;
    }

    .browse-more-container {
      text-align: center;
      margin-top: 30px;
    }

    .btn-browse-more {
      padding: 12px 40px;
      font-size: 16px;
    }

    .btn-browse-icon {
      margin-left: 8px;
    }

    .about-section {
      padding-bottom: 10px;
    }

    .success-stories-section {
      margin-bottom: 80px;
    }

    .reg-msg-box {
      display: none;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 5px;
      text-align: center;
    }

    .btn-full-width {
      width: 100%;
      margin-top: 10px;
    }

    .btn-share {
      width: 100%;
      margin-top: 10px;
      background: #f8fafc;
      color: #1e293b;
      border: 1px solid #cbd5e1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .sign-in-msg {
      display: none;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 5px;
      text-align: center;
      font-size: 13px;
    }

    .remember-me-container {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      font-size: 13px;
    }

    .remember-me-label {
      font-weight: normal;
    }

    .remember-me-check {
      width: auto;
      display: inline-block;
    }

    .forgot-password-link {
      color: var(--primary);
      text-decoration: none;
    }

    .no-account-text {
      text-align: center;
      margin-top: 20px;
      font-size: 14px;
      color: var(--text-light);
    }

    .register-free-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .wa-profile-img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid white;
    }

    .wa-close-btn {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
      margin-left: auto;
    }

    /* Highlight Profile Cards Model Styling (Clean Light Theme Profile Cards) */
    .slider-container {
      padding: 10px 45px !important;
    }

    @media (max-width: 768px) {
      .slider-container {
        padding: 10px 10px !important;
      }
    }

    #highlight-slider .slider-slide {
      flex: 0 0 100% !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box;
      padding: 5px 10px;
    }

    @media (max-width: 768px) {
      #highlight-slider .slider-slide {
        padding: 5px 2px !important;
      }
    }

    .slider-grid-desktop {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    .slider-grid-mobile {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 8px;
      width: 100%;
      box-sizing: border-box;
    }

    .highlight-card-model {
      position: relative;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 18px;
      padding: 28px 18px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      text-decoration: none;
      color: #1e293b;
      height: 100%;
      min-height: 280px;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .highlight-card-model:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
      border-color: var(--primary, #ed1c24);
      color: #0f172a;
    }

    .profile-card-close {
      display: none !important;
    }

    .highlight-card-avatar-wrapper {
      position: relative;
      width: 96px;
      height: 96px;
      margin: 6px auto 16px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .highlight-card-avatar {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f8fafc;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      filter: blur(4px);
    }

    .highlight-card-lock {
      position: absolute;
      bottom: 2px;
      right: 2px;
      width: 26px;
      height: 26px;
      background: #ffffff;
      color: #d4af37;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      border: 1.5px solid #d4af37;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }

    .highlight-card-info {
      width: 100%;
      margin-bottom: 18px;
    }

    .highlight-card-name {
      font-family: var(--font-heading, sans-serif);
      font-size: 16px;
      font-weight: 700;
      color: #0f172a;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%;
    }

    .highlight-card-subtitle {
      font-size: 13px;
      color: #64748b;
      margin-top: 4px;
      font-weight: 500;
    }

    .highlight-card-btn {
      width: 100%;
      background: var(--primary, #ed1c24);
      color: #ffffff;
      padding: 11px 0;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
      box-shadow: 0 4px 12px rgba(237, 28, 36, 0.2);
      display: block;
    }

    .highlight-card-btn:hover {
      background: #c9151c;
      transform: translateY(-1px);
      color: #ffffff;
    }

    .highlight-card-dismissed {
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.3s ease;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .highlight-card-model {
        padding: 16px 8px 14px;
        min-height: 230px;
      }

      .highlight-card-avatar-wrapper {
        width: 76px;
        height: 76px;
        margin: 2px auto 8px;
      }

      .highlight-card-info {
        margin-bottom: 12px;
      }

      .highlight-card-name {
        font-size: 13.5px;
      }

      .highlight-card-subtitle {
        font-size: 11.5px;
      }

      .highlight-card-btn {
        padding: 8px 0;
        font-size: 13px;
        border-radius: 8px;
      }
    }