          :root {
            --primary-color: #9f1239;
            --secondary-color: #c2410c;
            --neutral-bg: #fff1f2;
            --text-color: #1e293b;
            --success-color: #15803d;
            --alert-color: #b91c1c;
            --gradient-from: #f97316;
            --gradient-to: #e11d48;
        }


          body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--neutral-bg);
          }

          h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--primary-color);
          }

          .btn-primary {
            background-color: var(--secondary-color);
            color: white;
            transition: all 0.3s ease;
          }

          .btn-primary:hover {
            background-color: #0F766E;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          }

          .btn-secondary {
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            background-color: transparent;
            transition: all 0.3s ease;
          }

          .btn-secondary:hover {
            background-color: rgba(13, 148, 136, 0.1);
            transform: translateY(-2px);
          }

          .feature-card {
            background-color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 10;
            opacity: 1 !important;
            transform: none !important;
            visibility: visible !important;
          }

          .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          }
          .feature-card.gsap-hidden {
            opacity: 1 !important;
            transform: none !important;
            visibility: visible !important;
          }

          .navbar {
            transition: all 0.3s ease;
          }

          .navbar.scrolled {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          }

          .hero-gradient {
            background: linear-gradient(135deg, white, #EFF6FF);
          }

          .testimonial-card {
            background: linear-gradient(135deg, #EFF6FF, #E0F2FE);
          }

          .cta-gradient {
            background: linear-gradient(135deg, var(--neutral-bg), #1E40AF);
          }

          /* Animation for floating elements */
          .float-animation {
            animation: float 6s ease-in-out infinite;
          }

          @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
          }

          /* Swiper custom styles */
          .swiper-pagination-bullet-active {
            background-color: var(--secondary-color);
          }

          .gradient-bg {
            background: linear-gradient(135deg, var(--gradient-from) 0%, var(--gradient-to) 100%);
          }

          .card-hover {
            transition: all 0.3s ease;
          }

          .card-hover:hover {
            transform: translateY(-10px);
          }

          #three-bg {
            position: absolute !important;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1 !important;
            pointer-events: none;
          }

          .z-higher {
            z-index: 10;
          }

          .text-glow {
            text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
          }

          .card-glow {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(102, 126, 234, 0.2);
          }

          .icon-container {
            position: relative;
            overflow: hidden;
          }

          .icon-pulse {
            animation: pulse 2s infinite;
          }

          @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
          }

          .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
          }
          .container {
            position: relative;
            z-index: 5;
          }

          /* Style for the theme selector */
          #theme-selector {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
          }

          .color-option {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            cursor: pointer;
            border: 2px solid transparent;
          }

          .color-option.active {
            border-color: #000;
          }

          #toggle-theme-selector {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 20px;
            color: var(--text-color);
          }
          .z-0 {
            z-index: 0;
          }
          .z-1 {
            z-index: 1;
          }
          .z-10 {
            z-index: 10;
          }
          #features {
            position: relative;
            z-index: 1;
          }
          .feature-selector-card {
            transition: all 0.3s ease;
          }

          .feature-selector-card:hover {
            transform: translateX(5px);
          }

          .feature-selector-card.active {
            font-weight: 600;
          }

          .feature-content {
            transition: opacity 0.3s ease;
          }

          .feature-content.hidden {
            display: none;
          }
          /* Glass effect styles */
          .backdrop-blur-sm {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
          }

          .backdrop-blur-md {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
          }

          /* Floating animation enhancements */
          .float-animation {
            animation: float 6s ease-in-out infinite;
            transform-style: preserve-3d;
          }

          @keyframes float {
            0% { transform: translateY(0px) translateZ(0); }
            50% { transform: translateY(-20px) translateZ(20px); }
            100% { transform: translateY(0px) translateZ(0); }
          }

          /* Sparkle animation */
          @keyframes sparkle {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
          }

          .animate-sparkle {
            animation: sparkle 3s ease-in-out infinite;
          }
          /* Hero section glass effect styles */
          .hero-section {
            position: relative;
            overflow: hidden;
          }

          /* Backdrop blur utilities */
          .backdrop-blur-sm {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
          }

          .backdrop-blur-md {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
          }

          /* Enhanced floating animation */
          .float-animation {
            animation: float 6s ease-in-out infinite;
          }

          @keyframes float {
            0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
            50% { transform: translateY(-20px) rotateX(2deg) rotateY(2deg); }
            100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
          }

          /* Pulse animation for AI icon */
          @keyframes pulse-ring {
            0% { transform: scale(0.95); opacity: 1; }
            70% { transform: scale(1.1); opacity: 0.7; }
            100% { transform: scale(0.95); opacity: 1; }
          }

          .pulse-animation {
            animation: pulse-ring 1s ease-out;
          }

          /* Ensures smooth transitions */
          #hero-glass-layer {
            transition: background-image 1s ease-in-out;
          }

          /* Notification animations */
          @keyframes fadeIn {
          from { opacity: 0; transform: translateY(20px); }
          to { opacity: 1; transform: translateY(0); }
          }

          @keyframes float {
          0% { transform: translateY(0px); }
          50% { transform: translateY(-10px); }
          100% { transform: translateY(0px); }
          }

          /* Improved notification and drag styles */
          .feature-notification {
          /* position: absolute; */
          width: max-content;
          max-width: 280px;
          z-index: 10;
          cursor: pointer;
          transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
          border: 1px solid rgba(255, 255, 255, 0.6);
          padding: 12px 16px;
          border-radius: 12px;
          display: none; /* Initially hidden until positioned */
          }

          .feature-notification:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          }

          .feature-notification.dragging {
          transition: none;
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
          opacity: 0.9;
          cursor: grabbing;
          }

          /* Drag handle styling */
          .drag-handle {
          position: absolute;
          top: -10px;
          right: -10px;
          background-color: white;
          border-radius: 50%;
          width: 24px;
          height: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          opacity: 0;
          transition: opacity 0.2s;
          cursor: grab;
          z-index: 2;
          }

          .feature-notification:hover .drag-handle {
          opacity: 1;
          }

          .dragging .drag-handle {
          cursor: grabbing;
          }

          /* Animation keyframes */
          @keyframes fadeIn {
          from { opacity: 0; transform: translateY(15px); }
          to { opacity: 1; transform: translateY(0); }
          }

          @keyframes float {
          0% { transform: translateY(0); }
          50% { transform: translateY(-8px); }
          100% { transform: translateY(0); }
          }

          @keyframes pulse-animation {
          0% { transform: scale(1); }
          50% { transform: scale(1.2); }
          100% { transform: scale(1); }
          }

          .pulse-animation {
          animation: pulse-animation 0.8s ease-in-out;
          }

          /* Responsive adjustments */
          @media (max-width: 768px) {
          .feature-notification {
          position: relative !important;
          display: flex !important;
          max-width: 100%;
          margin-bottom: 12px;
          animation: none !important;
          opacity: 1 !important;
          transform: none !important;
          }

          #notifications-area {
          display: flex;
          flex-direction: column;
          height: auto !important;
          padding: 1rem;
          }

          .drag-handle {
          display: none;
          }
          }


.info-sidebar {
  left: -100%;
}

body.active .info-sidebar {
  left: 0;
}

.screenshot-placeholder {
  background-color: #f3f4f6;
  border: 1px dashed #d1d5db;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
}
/* hamburger icon*/

.hamburger .line{
  width: 20px;
  height: 2px;
  background-color: #000000;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover{
  cursor: pointer;
}

body.active .hamburger .line:nth-child(2), body.menu-active .hamburger .line:nth-child(2){
  opacity: 0;
}

body.active .hamburger .line:nth-child(1), body.menu-active .hamburger .line:nth-child(1){
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -o-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}

body.active .hamburger .line:nth-child(3), body.menu-active .hamburger .line:nth-child(3){
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

