.nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            z-index: 1000;
            border: 1px solid #f0f0f0;
            padding: 8px 0;
            margin-top: 8px;
        }

        .nav-dropdown:hover .dropdown-content {
            display: block;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-content a {
            color: #374151;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 2px 8px;
        }

        .dropdown-content a:hover {
            background: linear-gradient(135deg, #0b6ad6, #0b6ad6);
            color: white;
            transform: translateX(5px);
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 8px;
            border-radius: 8px;
            text-decoration: none;
            margin:10px;
        }

        .nav-link:hover {
            background: linear-gradient(135deg, #0b6ad6, #0b6ad6);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0b6ad6, #0b6ad6);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .dropdown-arrow {
            margin-left: 5px;
            transition: transform 0.3s ease;
            font-size: 12px;
        }

        .nav-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

   
    .gradient-hero {
      background: linear-gradient(135deg, rgba(147, 197, 253, 0.3) 0%, rgba(191, 219, 254, 0.4) 50%, rgba(224, 242, 254, 0.3) 100%);
      backdrop-filter: blur(10px);
    }
   
    .gradient-card {
      background: linear-gradient(135deg, rgba(224, 242, 254, 0.5) 0%, rgba(240, 249, 255, 0.6) 100%);
      backdrop-filter: blur(8px);
    }
   
    .gradient-green {
      background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    }
   
    .stat-card {
      transition: all 0.3s ease;
      border-left: 4px solid transparent;
    }
   
    .stat-card:hover {
      transform: translateY(-5px);
      border-left-color: #3b82f6;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
   
    .benefit-card {
      transition: all 0.4s ease;
    }
   
    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }
   
    .floating-widget {
      position: fixed;
      z-index: 1000;
      transition: transform 0.3s ease;
    }
   
    .floating-widget:hover {
      transform: scale(1.1);
    }
   
    .whatsapp-widget {
      bottom: 20px;
      right: 20px;
    }
   
    .call-widget {
      bottom: 90px;
      right: 20px;
    }
   
    input, textarea {
      width: 100%;
      padding: 14px 18px !important;
      border: 2px solid #e5e7eb !important;
      border-radius: 10px !important;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      font-size: 16px;
    }
   
    input:focus, textarea:focus {
      outline: none;
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
   
    .btn-primary {
      background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
      color: #1e3a8a;
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 16px;
    }
   
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(147, 197, 253, 0.5);
      background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    }
   
    .btn-secondary {
      background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
      color: white;
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 16px;
    }
   
    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
      background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    }
   
    .ranking-badge {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 18px;
    }
   
    .client-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 4px solid white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }
   
    .client-avatar:hover {
      transform: scale(1.1);
    }
   
    .testimonial-card {
      background: white;
      border-left: 5px solid #3b82f6;
      transition: all 0.3s ease;
    }
   
    .testimonial-card:hover {
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
   
    table {
      width: 100%;
      border-collapse: collapse;
    }
   
    table th {
      background: #1e40af;
      color: white;
      padding: 12px;
      text-align: left;
      font-weight: 600;
    }
   
    table td {
      padding: 12px;
      border-bottom: 1px solid #e5e7eb;
    }
   
    table tr:hover {
      background: #f9fafb;
    }
   
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
   
    .popup-overlay.active {
      opacity: 1;
      visibility: visible;
    }
   
    .popup-content {
      background: white;
      border-radius: 24px;
      max-width: 500px;
      width: 90%;
      max-height: 90%;
      overflow-y: auto;
      position: relative;
      transform: scale(0.9);
      transition: transform 0.3s ease;
      box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    }
   
    .popup-overlay.active .popup-content {
      transform: scale(1);
    }
   
    .popup-close {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #f3f4f6;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #6b7280;
      transition: all 0.3s ease;
      z-index: 10;
    }
   
    .popup-close:hover {
      background: #e5e7eb;
      color: #1f2937;
      transform: rotate(90deg);
    }
   
    @media (max-width: 768px) {
        .hide-desktop{display:block !important}
      .whatsapp-widget, .call-widget {
        right: 15px;
      }
     
      .call-widget {
        bottom: 80px;
      }
                  #mobile-menu{overflow-y:auto}
 .nav-dropdown .dropdown-content {
                position: fixed;
                top: 80px;
                left: 16px;
                right: 16px;
                width: auto;
                min-width: auto;
            }
           
    }
                #mobile-menu{overflow-y:auto}

.hide-desktop{display:none}
