  /* Style the scrollbar container */
  ::-webkit-scrollbar {
      width: 12px;
      /* Width of the vertical scrollbar */
      height: 12px;
      /* Height of the horizontal scrollbar */
  }

  /* Style the scrollbar track (background of the scrollbar) */
  ::-webkit-scrollbar-track {
      background-color: #f5f5f5;
      /* Light grey background for scrollbar in light mode */
      border-radius: 0px;

      /* Rounded corners */
  }

  /* Style the scrollbar thumb (the draggable part of the scrollbar) */
  ::-webkit-scrollbar-thumb {
      background-color: var(--primary-color);
      /* Dark grey thumb */
      border-radius: 0px;

      /* Rounded corners */
  }

  /* On hover, change the thumb color */
  ::-webkit-scrollbar-thumb:hover {
      background-color: var(--paragraph-color);
      /* Darker grey when hovered */
  }

  /* Style the scrollbar corner (if there's a bottom-right corner scrollbar) */
  ::-webkit-scrollbar-corner {
      background-color: #f1f1f1;
  }



  /* Pulsating Animation */
  @keyframes pulseEffect {
      0% {
          transform: scale(1);
          opacity: 0.8;
      }

      50% {
          transform: scale(1.05);
          opacity: 1;
      }

      100% {
          transform: scale(1);
          opacity: 0.8;
      }
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  .animate-bounce {
      animation: bounce 3s ease-in-out infinite;
  }

  .very-small {
      font-size: 10px;
  }

  .main-hero-img {
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 8px solid white;
  }

  .main-hero-img:hover {
      transform: scale(1.02) rotate(-1deg);
  }

  /* Define CSS Variables for Light Mode */
  :root {
      --primary-blue: #0d6efd;
      /* Primary Blue */
      --primary-dark: #0a58ca;
      /* Dark Blue */
      --primary-light: #6ea8fe;
      /* Light Blue */
      --text-dark: #1a1a1a;
      --text-light: #555555;

      --primary-color: var(--primary-blue);
      --secondary-color: #1a1a1a;
      --background-color: #ffffff;
      /* Pure white background */
      --section-bg-alt: #fcfcfc;
      /* Almost white for subtle section variation */
      --glass-bg: rgba(255, 255, 255, 0.85);
      --text-color: #1a1a1a;
      /* Dark text for white background */
      --paragraph-color: var(--text-light);
      --grey-color: #f0f0f0;
      --button-text-color: white;
      --card-bg: #ffffff;
      --border-subtle: rgba(0, 0, 0, 0.08);
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }



  /* General Styles */
  body {
      overflow-x: hidden;
      font-family: "Lexend";
      margin: auto;
      padding: 0;
      background-color: var(--background-color);
      color: var(--text-color);
  }

  html,
  body,
  h1,
  h2,
  h3 {
      font-size: 13px;
  }


  /* Social Cards */
  .social-card {
      transition: var(--transition-smooth);
      border-radius: 0;
  }

  .social-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  }

  .hover-translate-y {
      transition: var(--transition-smooth);
  }

  .hover-translate-y:hover {
      transform: translateY(-10px) !important;
  }

  .transition-smooth {
      transition: var(--transition-smooth);
  }

  .bg-primary-light {
      background-color: rgba(13, 110, 253, 0.1) !important;
  }

  /* Background Glow Animations */
  .bg-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0) 70%);
      filter: blur(60px);
      z-index: -1;
      pointer-events: none;
  }

  .glow-top-right {
      top: -100px;
      right: -100px;
  }

  .glow-bottom-left {
      bottom: -100px;
      left: -100px;
  }

  /* Home Hero Background */
  /* Hero Sections Backgrounds */
  .hero-home {
      background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('../assets/hero-bg-studio.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 100px 0;
  }

  .hero-about {
      background: linear-gradient(rgba(13, 110, 253, 0.05), rgba(255, 255, 255, 0.9)), url('../assets/hero-bg-studio.png');
      background-size: cover;
      background-position: top;
  }

  .hero-services {
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95)), url('../assets/hero-bg-studio.png');
      background-size: cover;
      background-position: bottom;
      filter: hue-rotate(-15deg);
  }

  .hero-portfolio {
      background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.98)), url('../assets/hero-bg-studio.png');
      background-size: cover;
      background-position: center;
      backdrop-filter: saturate(1.5);
  }

  .hero-packages {
      background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.95)), url('../assets/hero-bg-studio.png');
      background-size: cover;
      background-position: center;
      filter: brightness(1.05);
  }

  .hero-contact {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(13, 110, 253, 0.4)), url('../assets/hero.png');
      background-size: cover;
      background-position: center;
  }

  /* Service Detail Heroes */
  .hero-service-detail {
      background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(13, 110, 253, 0.2)), url('../assets/hero-bg-studio.png') !important;
      background-size: cover !important;
      background-position: center !important;
  }

  .hero-service-app {
      background-blend-mode: multiply;
  }

  .hero-service-web {
      background-blend-mode: soft-light;
  }

  .hero-service-ecom {
      background-blend-mode: darken;
  }

  .hero-service-logo {
      background-blend-mode: darken;
  }

  .hero-service-brand {
      background-blend-mode: darken;
  }

  .hero-service-smm {
      background-blend-mode: dark;
  }

  .hero-service-seo {
      background-blend-mode: luminosity;
  }

  /* Foooter */
  footer {
      background: var(--section-bg-alt);
      color: var(--text-color);
      font-family: "Lexend", sans-serif;
      border-top: 1px solid var(--border-subtle);
  }

  /* Creative Section */
  .creative-section {
      max-width: 1250px;
      margin: auto;
      padding: 50px;
  }

  /* Main Container */
  .content-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
  }

  /* Custom Transitions & Hover Effects */
  .transition-smooth {
      transition: var(--transition-smooth);
  }

  .hover-translate-y:hover {
      transform: translateY(-8px);
  }

  /* Responsive Adjustments */

  /* Services */
  .services-section {
      max-width: 1250px;
      margin: auto;
      padding: 10px;
  }

  .services-section h2 {
      max-width: 800px;
      margin: auto;
      padding: 20px;
      font-size: 36px;
      font-weight: 600;
      text-align: center;
  }

  .services-section h2 span {
      color: var(--primary-color);
  }

  .services-section .description {
      text-align: center;
      max-width: 1000px;
      margin: auto;
      font-size: 16px;
      color: #ccc;
      margin-bottom: 30px;
  }

  /* Service Cards */
  /* Services Carousel */
  .services-carousel-container {
      position: relative;
      height: 450px;
      width: 100%;
      margin: 50px auto;
      perspective: 1000px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: visible;
  }

  .service-carousel-item {
      position: absolute;
      width: 320px;
      padding: 35px 25px;
      background: white;
      border: 1px solid var(--border-subtle);
      border-radius: 15px;
      text-align: center;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      user-select: none;
      backface-visibility: hidden;
  }

  .service-carousel-item img {
      width: 70px;
      height: 70px;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
  }

  .service-carousel-item:hover img {
      transform: scale(1.1) translateY(-5px);
  }

  .service-carousel-item h5 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      color: var(--text-color);
  }

  .service-carousel-item p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-light);
  }

  .services-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: max-content;
  }

  .service-card {
      background: white;
      padding: 30px 20px;
      border: 1px solid var(--border-subtle);
      border-radius: 12px;
      width: 280px;
      text-align: center;
      transition: var(--transition-smooth);
      flex-shrink: 0;
      margin: 0 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }

  .service-card img {
      width: 60px;
      height: 70px;
      margin-bottom: 10px;
  }

  .service-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .service-card p {
      font-size: 14px;
      color: #ddd;
  }

  .service-card:hover {
      border-color: var(--primary-color);
      transform: translateY(-8px);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  }

  .carousel-indicators {
      text-align: center;
      margin-top: 15px;
  }

  .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #555;
      border-radius: 0px;
      display: inline-block;
      transition: background 0.3s;
      cursor: pointer;
  }

  .dot.active {
      background-color: var(--primary-color);
  }

  /* Features Section */
  .service-features {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 80px;
  }

  .feature-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding-left: 24px;
      /* border-left: solid 0.1px rgba(13, 110, 253, 0.4); */
  }

  .feature-box-one {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding-left: 24px;
  }

  .feature-box h3 {
      font-family: "Sora";
      font-size: 18px;
      font-weight: 600;
      text-align: center;
  }

  .feature-box .feature-icon {
      font-size: 40px;
      /* background: #222; */
      padding: 20px;
      border-radius: 0px;
      color: var(--primary-color);
      transition: 0.3s ease-in-out;
  }

  .feature-box:hover .feature-icon {
      transform: scale(1.1);
  }

  .feature-box-one .feature-icon {
      font-size: 40px;
      /* background: #222; */
      padding: 20px;
      border-radius: 0px;
      color: var(--primary-color);
      transition: 0.3s ease-in-out;
  }

  .feature-box-one:hover .feature-icon {
      transform: scale(1.1);
  }

  /* Stats Section */
  .stats-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      /* margin-top: 30px; */
      margin-bottom: 30px;
      background: var(--section-bg-alt);
      border: 1px solid var(--border-subtle);
      /* padding: 20px; */
      border-radius: 0px;
  }

  .stat-box {
      background: white;
      border-radius: 12px;
      text-align: center;
      border: 1px solid var(--border-subtle);
      min-width: 191px;
      min-height: 102px;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }

  .stat-box:hover {
      border-color: var(--primary-color);
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      background: white;
  }

  .stat-number {
      margin-bottom: 10px;
      margin-top: 0px;
      font-size: 41px;
      font-weight: bold;
      color: var(--primary-color);
  }

  .stat-label {
      font-family: "Roboto Mono";
      text-transform: uppercase;
      font-weight: 500;
      font-size: 13px;
      color: #bbb;
  }

  /* "Know More" Box */
  .know-more {
      background: var(--grey-color);
      color: var(--text-color);
      cursor: pointer;
      border: 1px solid var(--border-subtle);
  }

  .know-more:hover {
      background: var(--primary-color);
      color: white;
  }

  /* Showcase Grid */
  .showcase-projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1250px;
      margin: auto;
      padding: 20px;
  }

  @media (max-width: 768px) {
      .showcase-projects {
          grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      }
  }

  /* Project Card */
  .showcase-card-image-scroll {
      object-position: 50% 0%;
      object-fit: cover;
      transition: object-position 3.5s ease-in-out;
  }

  .showcase-card-image-scroll:hover {
      object-position: 50% 100% !important;
      /* Change object-position to bottom on hover */
  }

  .showcase-card {
      background: white;
      border-radius: 0px;

      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease-in-out;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  }

  .showcase-card:hover {
      transform: translateY(-5px);
  }

  .showcase-card img {
      width: 100%;
      border-radius: 0px;

  }

  .showcase-arrow-link img {
      border-radius: 0px;
  }

  /* Project Info */
  .showcase-info {
      text-align: left;
      padding: 15px;
  }

  .showcase-category {
      font-family: "Roboto Flex";
      font-size: 26px;
      text-transform: uppercase;
      /* font-weight: bold; */
      color: var(--primary-color);
      display: block;
      margin-bottom: 5px;
  }

  .showcase-info h3 {
      font-size: 12px;
      text-transform: uppercase;
      color: var(--text-light);
      /* font-weight: bold; */
  }

  /* Arrow Link */
  .showcase-arrow-link {
      position: absolute;
      right: 15px;
      bottom: 15px;
      font-size: 18px;
      color: white;
      text-decoration: none;
      transition: color 0.3s;
  }

  .showcase-arrow-link:hover {
      color: var(--primary-color);
  }

  /* Learn More Button */
  .showcase-learn-more {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 16px;
      background: var(--primary-color);
      color: white;
      border: none;
      border-radius: 0px;

      cursor: pointer;
      font-weight: bold;
      transition: var(--transition-smooth);
  }

  .showcase-learn-more:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
  }

  /* Project Card Images */
  .showcase-card img {
      width: 100%;
      height: 300px;
      /* Uniform height for all images */
      object-fit: cover;
      /* Ensures the image covers the area without distortion */
      border-radius: 0px;

  }

  /* Arrow Image Fix */
  .showcase-arrow-link img {
      width: auto;
      /* Adjust width as needed */
      height: auto;
      /* Ensure the arrow image remains its natural size */
      object-fit: none;
      /* No scaling, keep original aspect ratio */
  }

  /*.showcase-card:nth-child(n+7) {*/
  /*display: none;*/
  /* Hide cards after the first 6 */
  /*}*/

  /* About */

  /* Legacy Hero Section Removed - Handled by Bootstrap 5 */

  /* Legacy Story Section Removed - Handled by Bootstrap 5 Grid */

  /* what-we-do */
  /* Legacy What We Do Section Removed - Handled by Bootstrap 5 */


  /* CTA Section */

  /* Legacy Unique CTA & Contact Sections Removed - Handled by Bootstrap 5 */

  /* Additional Inquiries Section */
  .inquiries-section-unique {
      background: var(--section-bg-alt);
      padding: 50px 5%;
      text-align: center;
      color: var(--text-color);
      border-top: 1px solid var(--border-subtle);
  }

  .inquiries-section-unique h2 {
      font-size: 2rem;
      font-weight: bold;
  }

  .highlight-text {
      color: var(--primary-color);
  }

  .inquiries-section-unique p {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 20px;
  }

  /* Inquiries Container */
  .inquiries-container-unique {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
  }

  /* Inquiry Box */
  .inquiry-box-unique {
      background: white;
      padding: 12px 20px;
      border-radius: 0px;

      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-color);
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }

  .inquiry-box-unique i {
      color: var(--primary-color);
      font-size: 1.2rem;
  }

  .inquiry-box-unique:hover {
      background: var(--section-bg-alt);
      border-color: var(--primary-color);
  }


  /* Responsive Design */
  @media (max-width: 768px) {
      .inquiries-container-unique {
          flex-direction: column;
          align-items: center;
      }

      .inquiry-box-unique {
          width: 100%;
          justify-content: center;
      }
  }

  /* Services */
  .hero-form form {
      position: relative;
      display: flex;
      background: white;
      padding: 45px;
      flex-direction: column;
      border-radius: 0px;
      border-width: 10px 0px 0px 0px;
      border-style: solid;
      border-color: var(--primary-color);
      margin-top: 200px;
      gap: 15px;
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
      border-top: 10px solid var(--primary-color);
  }

  .hero-form input,
  .hero-form textarea {
      padding: 10px;
      border: 1px solid var(--border-subtle);
      background: white;
      color: var(--text-color);
      border-radius: 0px;
  }

  .hero-form .checkbox {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
  }

  .form-button {
      padding: 10px;
      background: var(--primary-color);
      color: black;
      font-weight: bold;
      border: none;
      border-radius: 0px;

      cursor: pointer;
  }

  .form-button:hover {
      background: var(--primary-color);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero-section {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      .hero-content {
          margin-bottom: 0 !important;
      }

      .hero-content h1 {
          font-size: 16px;
      }

      .hero-form form {
          margin-top: 20px !important;
      }

      .tech-section p {
          width: auto !important;
      }
  }

  /*Tech Section */
  .tech-section {
      text-align: center;
      background: var(--section-bg-alt);
      padding: 50px 20px;
      color: var(--text-color);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
  }

  .tech-section h2 {
      font-size: 2rem;
      font-weight: bold;
  }

  .tech-section h2 span {
      color: var(--primary-color);
  }

  .tech-section p {
      justify-self: center;
      max-width: 1250px;
      margin-top: 10px;
      font-size: 1rem;
      color: var(--text-light);
  }

  .tech-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
      gap: 20px;
  }

  .tech-icons .icon {
      padding: 20px 40px 5px 40px;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 2px solid var(--primary-color);
      border-radius: 0px;
      transition: var(--transition-smooth);
  }

  .tech-icons .icon:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .tech-icons .icon img {
      max-width: 100%;
      max-height: 100%;
  }

  /* Section with Platforms  */
  .search-platforms {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: white;
      padding: 35px 25px 10px 25px;
      border-radius: 0px;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
      max-width: 1100px;
      margin: auto;
      position: relative;
      overflow: hidden;
  }

  @media (max-width: 768px) {
      .search-platforms {
          flex-direction: column;
      }
  }

  .search-content {
      max-width: 500px;
  }

  .search-content h2 {
      color: var(--text-color);
      font-size: 28px;
      margin-bottom: 10px;
  }

  .search-content p {
      color: var(--text-light);
      font-size: 16px;
  }

  .search-icons {
      display: flex;
      gap: 20px;
      position: relative;
  }

  .search-icons .icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border-radius: 0px;
      border: 2px solid var(--primary-color);
      padding: 10px 5px 0px 5px;
      position: relative;
      animation: float 3s ease-in-out infinite;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }

  .search-icons .icon:nth-child(2) {
      animation-delay: 0.3s;
      margin-top: 100px;
      margin-left: -50px;
  }

  .search-icons .icon:nth-child(3) {
      animation-delay: 0.6s;
      margin-left: -40px;
  }

  .search-icons .icon:nth-child(4) {
      animation-delay: 0.9s;
      margin-top: 100px;
      margin-left: -50px;
  }

  .search-icons .icon img {
      width: 60%;
      height: auto;
      animation: bubble 3s ease-in-out infinite;
  }

  /* Floating Animation */
  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  /* Bubble effect for slight expansion */
  @keyframes bubble {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
      }
  }

  /* App Dev Section */
  .app-development {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--background-color);
  }

  .app-development h2 {
      color: var(--text-color);
      font-size: 32px;
      margin-bottom: 15px;
  }

  .app-development h2 span {
      color: var(--primary-color);
  }

  .app-development p {
      color: var(--text-light);
      max-width: 800px;
      margin: auto;
      font-size: 16px;
      line-height: 1.6;
  }

  .app-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1250px;
      margin: 40px auto;
  }

  /* Styling for individual cards */
  .app-card {
      display: flex;
      background: white;
      border: 1px solid var(--border-subtle);
      padding: 25px 40px 45px 25px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      align-items: center;
      transition: var(--transition-smooth);
      position: relative;
  }

  .app-card:hover {
      border-color: var(--primary-color);
      transform: translateY(-5px) !important;
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  }

  /* Alternating card positions */
  .app-card:nth-child(1),
  .app-card:nth-child(2) {
      transform: translateX(-50px) !important;
      /* transform: translateY(-10px); */
  }

  .app-card:nth-child(3),
  .app-card:nth-child(4) {
      transform: translateX(50px) !important;
      /* transform: translateY(10px); */
  }

  /* 
.app-card:nth-child(1):hover,
.app-card:nth-child(2):hover{
  
    transform: translateY(-4px) !important;
}
.app-card:nth-child(3):hover,
.app-card:nth-child(4):hover{
    
    transform: translateY(-4px) !important;
} */

  /* Styling for the card number */
  .app-number {
      margin-top: -85px;
      font-size: 18px;
      font-weight: bold;
      color: white;
      background: var(--primary-color);
      width: 70px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0px;
      margin-right: 15px;
  }

  /* Text styling */
  .app-content {
      text-align: left;
  }

  .app-content h3 {
      font-family: "Lexend";
      font-size: 22px;
      font-weight: 400;
      color: var(--text-color);
      margin-bottom: 5px;
  }

  .app-content p {
      font-family: "Lexend";
      font-size: 16px;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.5;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .app-container {
          grid-template-columns: 1fr;
      }

      .app-card {
          transform: translateY(0) !important;
      }
  }




  /* Toast Notification Styling */
  .toast {
      visibility: hidden;
      min-width: 250px;
      margin-left: -125px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 0px;

      padding: 16px;
      position: fixed;
      z-index: 1;
      left: 50%;
      bottom: 30px;
      font-size: 17px;
  }

  .toast.show {
      visibility: visible;
      animation: fadein 0.5s, fadeout 0.5s 3.5s;
  }

  @keyframes fadein {
      from {
          bottom: 0;
          opacity: 0;
      }

      to {
          bottom: 30px;
          opacity: 1;
      }
  }

  @keyframes fadeout {
      from {
          opacity: 1;
      }

      to {
          opacity: 0;
      }
  }

  /* Back to Top Button */
  .back-to-top-btn {
      display: none;
      /* Initially hidden */
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--primary-color);
      color: black;
      border: none;
      border-radius: 0px;
      padding: 15px 20px;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .back-to-top-btn:hover {
      background-color: var(--primary-dark);
      /* Hover effect */
      transform: scale(1.1);
  }



  /* Glow Effects */
  .bg-glow {
      position: absolute;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      pointer-events: none;
      z-index: -1;
  }

  .glow-top-right {
      top: -10vw;
      right: -10vw;
  }

  .glow-bottom-left {
      bottom: -10vw;
      left: -10vw;
  }

  /* Premium Pricing Section Styles */
  .pricing {
      background-color: var(--section-bg-alt);
  }

  .pricing .tab {
      border-radius: 0;
      padding: 10px 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      background: white;
      border: 1px solid var(--primary-color);
  }

  .pricing .tab.active {
      background-color: var(--primary-color);
      color: white;
  }

  .pricing .tab:hover {
      background-color: var(--primary-color) !important;
      color: white !important;
  }

  .plan {
      background: white !important;
      border-radius: 20px !important;
      padding: 3rem 2rem !important;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
      border: 1px solid var(--border-subtle) !important;
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
  }

  .plan:hover {
      transform: translateY(-15px) !important;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
      border-color: var(--primary-color) !important;
  }

  .plan.border-primary {
      border-color: var(--primary-color) !important;
      border-width: 2px !important;
      box-shadow: 0 15px 35px rgba(13, 110, 253, 0.1) !important;
  }

  .plan h4 {
      font-family: "Lexend";
      font-size: 1.2rem !important;
      font-weight: 700 !important;
      letter-spacing: -0.5px;
      color: var(--text-dark) !important;
      margin-bottom: 0;
  }

  .plan hr {
      border-color: var(--border-subtle);
      opacity: 0.1;
      margin: 1.5rem 0;
  }

  .plan .price {
      font-family: "Sora";
      font-weight: 800 !important;
      font-size: 3rem !important;
      margin: 1.5rem 0 !important;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block;
  }

  .plan .features {
      flex-grow: 1;
      text-align: left;
      padding-left: 0;
      margin-bottom: 2rem !important;
  }

  .plan .features li {
      font-size: 0.9rem !important;
      line-height: 1.5;
      color: var(--text-light) !important;
      margin-bottom: 0.75rem !important;
      list-style: none;
  }

  .plan .btn-primary {
      border-radius: 12px !important;
      padding: 14px !important;
      font-weight: 600 !important;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.85rem !important;
      transition: all 0.3s ease !important;
      background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
      border: none !important;
      margin-top: auto;
      color: #fff !important;
  }

  .plan .btn-primary:hover {
      transform: scale(1.02);
      box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3) !important;
  }

  .plan .badge {
      font-family: "Lexend";
      font-size: 0.7rem !important;
      padding: 6px 14px !important;
      border-radius: 50px !important;
      box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
      top: 20px !important;
      right: 20px !important;
  }

  .per-month {
      font-size: 0.9rem;
      color: var(--text-light);
      -webkit-text-fill-color: var(--text-light);
      font-weight: 400;
  }