  body {
      font-family: 'Open Sans', sans-serif;
  }

  @media (min-width: 768px) {
      .desktop-nav {
          display: flex !important;
      }

      .mobile-menu-btn {
          display: none !important;
      }

      .mobile-menu {
          display: none !important;
      }
  }

  @media (max-width: 767px) {
      .desktop-nav {
          display: none !important;
      }

      .mobile-menu-btn {
          display: block !important;
      }
  }

  .explore:hover {
      cursor: url('../static/media/Explore.png'), pointer !important;
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .message-enter {
      animation: slideUp 0.3s ease-out;
  }

  .typing-indicator span {
      animation: blink 1.4s infinite;
  }

  .typing-indicator span:nth-child(2) {
      animation-delay: 0.2s;
  }

  .typing-indicator span:nth-child(3) {
      animation-delay: 0.4s;
  }

  @keyframes blink {

      0%,
      60%,
      100% {
          opacity: 0.3;
      }

      30% {
          opacity: 1;
      }
  }

  .scrollbar-none::-webkit-scrollbar {
      display: none;
  }

  /* Hide scrollbar for Firefox */
  .scrollbar-none {
      scrollbar-width: none;
  }

  .focus-ring:focus {
      outline: 3px solid rgba(16, 185, 129, 0.15);
      /* greenish */
      outline-offset: 2px;
  }

  .hand-drawn-border {
      border: 3px solid currentColor;
      /* Use currentColor for dynamic Tailwind color */
      padding: 4rem;
      border-radius: 100px 50px 150px;
      /* Irregular radii */
      transform: rotate(-2deg);
      /* Slight rotation */
  }

  /* Optional: Add a hover effect */
  .hand-drawn-border:hover {
      transform: rotate(0deg);
  }



  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-20px);
      }
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes gradientShift {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  .animated-gradient {
      background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
  }

  .glass-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-overlay {
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(127, 29, 29, 0.9) 100%);
  }

  .slide-up {
      animation: slideUp 0.8s ease-out forwards;
  }

  .float-animation {
      animation: float 3s ease-in-out infinite;
  }

  .glow-red {
      box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
  }

  .glow-blue {
      box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }

  .parallax {
      transform: translateZ(0);
      will-change: transform;
  }

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

  .slide {
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .feature-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .feature-card:hover {
      transform: translateY(-12px) scale(1.02);
  }

  .news-card {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .news-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
  }

  .news-card:hover::before {
      left: 100%;
  }

  .pulse-dot {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
          transform: scale(1);
      }

      50% {
          opacity: .5;
          transform: scale(1.1);
      }
  }



  @keyframes rotate {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .rotate-slow {
      animation: rotate 20s linear infinite;
  }

  .hero-text {
      text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-link {
      position: relative;
      transition: color 0.3s;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #dc2626;
      transition: width 0.3s;
  }

  .nav-link:hover::after {
      width: 100%;
  }

  .message-enter {
      animation: slideIn 0.4s ease-out;
  }

  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Loading animation */
  .typing-indicator span {
      animation: typing 1.4s infinite;
      display: inline-block;
  }

  .typing-indicator span:nth-child(2) {
      animation-delay: 0.2s;
  }

  .typing-indicator span:nth-child(3) {
      animation-delay: 0.4s;
  }

  @keyframes typing {

      0%,
      60%,
      100% {
          transform: translateY(0);
          opacity: 0.7;
      }

      30% {
          transform: translateY(-10px);
          opacity: 1;
      }
  }

  /* Input focus styles */
  input:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  /* Smooth transitions */
  button {
      transition: all 0.2s ease;
  }

  button:active {
      transform: scale(0.98);
  }

  .message-enter {
      animation: fadeInUp 0.5s ease-out forwards;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(15px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-fadeIn {
      animation: fadeIn 0.6s ease-out forwards;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .status-line {
      position: relative;
      height: 4px;
      background: #e5e7eb;
      margin: 2rem 0;
  }

  .status-progress {
      position: absolute;
      height: 100%;
      background: #dc2626;
      transition: width 0.5s ease;
  }

  .status-step {
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      border: 4px solid #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      transition: all 0.3s ease;
  }

  .status-step.completed {
      background: #dc2626;
      border-color: #dc2626;
      color: white;
  }

  .status-step.active {
      background: white;
      border-color: #dc2626;
      color: #dc2626;
      box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
  }

  .status-label {
      position: absolute;
      top: 60px;
      transform: translateX(-50%);
      font-size: 0.875rem;
      white-space: nowrap;
      color: #6b7280;
  }

  .status-label.active {
      color: #dc2626;
      font-weight: 600;
  }

  .notification-enter {
      animation: slideIn 0.3s ease;
  }

  @keyframes slideDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  @keyframes shimmer {
      0% {
          background-position: -1000px 0;
      }

      100% {
          background-position: 1000px 0;
      }
  }

  .glass-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 3px solid #dc2626;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .nav-link {
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
  }

  .nav-link::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #dc2626, #ef4444);
      transition: width 0.3s ease;
      border-radius: 2px;
  }

  .nav-link:hover::before {
      width: 80%;
  }

  .nav-link:hover {
      background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(239, 68, 68, 0.08));
      transform: translateY(-2px);
  }

  .nav-link.active {
      font-weight: bolder;
      color: black !important;
      /* box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3); */
  }

  .nav-link.active::before {
      display: none;
  }

  .phone-container {
      background: linear-gradient(135deg, #fef2f2, #fee2e2);
      border: 2px solid #dc2626;
      border-radius: 2rem;
      padding: 0.5rem 1.25rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .phone-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transition: left 0.5s ease;
  }

  .phone-container:hover::before {
      left: 100%;
  }

  .phone-container:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
  }

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

  .logo-container {
      transition: transform 0.3s ease;
  }

  .logo-container:hover {
      transform: scale(1.05) rotate(2deg);
  }

  .mobile-menu {
      animation: slideDown 0.3s ease;
  }

  .mobile-menu-item {
      transition: all 0.3s ease;
      border-left: 4px solid transparent;
  }

  .mobile-menu-item:hover {
      background: linear-gradient(90deg, rgba(220, 38, 38, 0.08), transparent);
      border-left-color: #dc2626;
      padding-left: 1.25rem;
  }

  .mobile-menu-btn {
      transition: all 0.3s ease;
  }

  .mobile-menu-btn:hover {
      transform: scale(1.1);
      color: #dc2626;
  }

  .service-badge {
      position: relative;
      display: inline-block;
  }

  .service-badge::after {
      content: '●';
      position: absolute;
      top: -2px;
      right: -8px;
      color: #dc2626;
      font-size: 0.5rem;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .service-badge:hover::after {
      opacity: 1;
  }

  /* Hero Section Styles */
  .hero-slide {
      position: relative;
      overflow: hidden;
  }

  .hero-overlay {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(220, 38, 38, 0.3));
      transition: all 0.5s ease;
  }

  .hero-slide:hover .hero-overlay {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(220, 38, 38, 0.2));
  }

  .hero-content-card {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      border-left: 6px solid #dc2626;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .hero-content-card:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 30px 60px rgba(220, 38, 38, 0.2);
      border-left-width: 8px;
  }

  .hero-title {
      background: linear-gradient(135deg, #1f2937, #dc2626);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .cta-button {
      background: linear-gradient(135deg, #dc2626, #ef4444);
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
  }

  .cta-button:hover::before {
      left: 100%;
  }

  .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  }

  .nav-dot {
      transition: all 0.3s ease;
  }

  .nav-dot.active {
      width: 2.5rem;
      background: #dc2626;
  }

  .whatsapp-card {
      background: linear-gradient(135deg, #f0fdf4, #dcfce7);
      border: 3px solid #10b981;
      border-radius: 1.5rem;
      box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
      transition: all 0.4s ease;
  }

  .whatsapp-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(16, 185, 129, 0.25);
  }

  .whatsapp-button {
      background: linear-gradient(135deg, #10b981, #059669);
      position: relative;
      overflow: hidden;
  }

  .whatsapp-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
  }

  .whatsapp-button:hover::before {
      width: 300px;
      height: 300px;
  }

  .assistant-image {
      animation: float 3s ease-in-out infinite;
      filter: drop-shadow(0 10px 30px rgba(220, 38, 38, 0.3));
  }

  .feature-banner {
      background: linear-gradient(135deg, #fef3c7 0%, #fca5a5 50%, #fb923c 100%);
      position: relative;
      overflow: hidden;
  }

  .feature-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: shimmer 8s linear infinite;
  }

  .feature-text {
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      line-height: 1.2;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate-fade-in {
      animation: fadeIn 0.8s ease-out forwards;
  }

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

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

    .service-card {
      background: white;
      border: 3px solid #fee2e2;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(220, 38, 38, 0.25);
      border-color: #dc2626;
    }

    .service-image {
      transition: transform 0.5s ease;
    }

    .service-card:hover .service-image {
      transform: scale(1.1);
    }

    .service-icon {
      background: linear-gradient(135deg, #dc2626, #ef4444);
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.15) rotate(10deg);
      box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
    }

    .news-card {
      background: white;
      border: 2px solid #f3f4f6;
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .news-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border-color: #dc2626;
    }

    .news-image {
      transition: transform 0.5s ease;
    }

    .news-card:hover .news-image {
      transform: scale(1.1);
    }

    .news-badge {
      background: linear-gradient(135deg, #dc2626, #ef4444);
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

    .brand-overlay {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(220, 38, 38, 0.6));
    }

    .social-icon {
      transition: all 0.3s ease;
      position: relative;
    }

    .social-icon::before {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s ease;
      z-index: -1;
    }

    .social-icon:hover::before {
      opacity: 0.1;
      transform: scale(1);
    }

    .social-icon:hover {
      transform: translateY(-5px) scale(1.2);
    }

    .badge-certified {
      background: linear-gradient(135deg, #10b981, #059669);
      animation: float 3s ease-in-out infinite;
    }

    .news-title {
      transition: color 0.3s ease;
    }

    .news-card:hover .news-title {
      color: #dc2626;
    }

    .read-more {
      position: relative;
      overflow: hidden;
    }

    .read-more::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #dc2626;
      transition: width 0.3s ease;
    }

    .read-more:hover::after {
      width: 100%;
    }

    .stat-card {
      background: white;
      border: 3px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 255, 255, 0.6);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }