
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
    }

    /* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .loader {
      width: 50px;
      height: 50px;
      border: 4px solid rgba(255,255,255,0.3);
      border-top: 4px solid #fff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Header */
    .header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .logo {
      width: 70px;
      height: 70px;
      border-radius: 10px;
      transition: transform 0.2s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-links a {
      color: #667eea;
      text-decoration: none;
      margin: 0 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      transition: background-color 0.2s ease;
    }

    .nav-links a:hover {
      background-color: rgba(102, 126, 234, 0.1);
    }

    /* Main Content */
    .main-content {
      padding: 2rem 0;
    }

    .hero-section {
      text-align: center;
      margin-bottom: 2rem;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.5rem;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 0.5rem;
    }

    .hero-description {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      max-width: 500px;
      margin: 0 auto;
    }

    /* Search Bar */
    .search-container {
      max-width: 500px;
      margin: 2rem auto;
    }

    .search-input {
      width: 100%;
      padding: 12px 20px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 25px;
      background: rgba(255,255,255,0.9);
      color: #333;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .search-input:focus {
      border-color: #667eea;
    }

    .search-input::placeholder {
      color: #999;
    }

    /* Skills Grid */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 1rem 0;
    }

    .skill-card {
      background: rgba(255,255,255,0.95);
      border-radius: 15px;
      padding: 1.5rem;
      text-align: center;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .skill-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .skill-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #667eea;
    }

    .skill-name {
      font-size: 1.3rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.5rem;
    }

    .skill-count {
      font-size: 0.9rem;
      color: #666;
      background: #f8f9fa;
      padding: 0.4rem 0.8rem;
      border-radius: 15px;
      display: inline-block;
    }

    /* Workers Modal */
    .workers-modal .modal-content {
      border-radius: 15px;
      border: none;
    }

    .workers-modal .modal-header {
      background: #667eea;
      color: white;
      border-radius: 15px 15px 0 0;
    }

    .worker-card {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      border: 1px solid #dee2e6;
    }

    .worker-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #333;
    }

    .worker-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .worker-detail {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .worker-detail i {
      width: 20px;
      color: #667eea;
    }

    .whatsapp-btn {
      background: #25D366;
      border: none;
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 20px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      transition: background-color 0.2s ease;
    }

    .whatsapp-btn:hover {
      background: #128C7E;
      color: white;
    }

    /* Image Carousel */
    .carousel-section {
      max-width: 1200px;
      margin: 2rem auto;
    }

    .carousel {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .carousel-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      object-position: center;
    }

    .carousel-caption {
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(5px);
      border-radius: 10px;
      padding: 1rem;
      bottom: 20px;
      left: 50%;
      right: 50%;
      transform: translateX(-50%);
      width: 80%;
    }

    .carousel-caption h5 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .carousel-caption p {
      font-size: 0.9rem;
      margin-bottom: 0;
      opacity: 0.9;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(102, 126, 234, 0.8);
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    .carousel-indicators button {
      background-color: rgba(102, 126, 234, 0.6);
      border-radius: 50%;
      width: 12px;
      height: 12px;
    }

    .carousel-indicators button.active {
      background-color: #667eea;
    }

    /* Responsive Design for Carousel */
    @media (max-width: 768px) {
      .carousel-section {
        margin: 1rem auto;
        padding: 0 1rem;
      }
      
      .carousel-image {
        height: 250px;
      }
      
      .carousel-caption {
        bottom: 10px;
        width: 90%;
        padding: 0.8rem;
      }
      
      .carousel-caption h5 {
        font-size: 1.1rem;
      }
      
      .carousel-caption p {
        font-size: 0.8rem;
      }
    }

    @media (max-width: 576px) {
      .carousel-image {
        height: 200px;
      }
      
      .carousel-caption {
        padding: 0.6rem;
      }
      
      .carousel-caption h5 {
        font-size: 1rem;
      }
      
      .carousel-caption p {
        font-size: 0.75rem;
      }
      
      .carousel-control-prev-icon,
      .carousel-control-next-icon {
        width: 30px;
        height: 30px;
      }
    }
      /* background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      padding: 1.5rem 0;
      margin-top: 3rem;
      text-align: center;
      color: #666;
    } */

    .terms-btn {
      background: none;
      border: none;
      color: #667eea;
      text-decoration: underline;
      cursor: pointer;
    }

    /* Terms Modal */
    .terms-modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
    }

    .terms-modal-content {
      background: white;
      margin: 10% auto;
      padding: 2rem;
      width: 90%;
      max-width: 500px;
      border-radius: 15px;
      position: relative;
    }

    .close-terms {
      position: absolute;
      right: 1rem;
      top: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      color: #999;
    }

    /* Loading and Error States */
    .loading-state, .error-state, .no-results {
      grid-column: 1/-1;
      text-align: center;
      padding: 3rem;
      color: white;
    }

    .error-state i, .no-results i {
      font-size: 3rem;
      margin-bottom: 1rem;
      opacity: 0.7;
    }

    .retry-btn {
      background: #667eea;
      border: none;
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 25px;
      margin-top: 1rem;
      cursor: pointer;
      font-weight: 600;
    }

    .footer {
        background: #333;
        color: white;
        text-align: center;
        padding: 20px;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }
      
      .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
      }
      
      .skill-card {
        padding: 1.2rem;
      }
      
      .worker-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
      }
      
      .search-container {
        margin: 1rem auto;
        padding: 0 1rem;
      }
      
      .main-content {
        padding: 1rem 0;
      }
      
      .nav-links {
        margin-top: 0.5rem;
      }
      
      .nav-links a {
        display: inline-block;
        margin: 0.2rem;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.8rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .skill-card {
        padding: 1rem;
      }
      
      .skill-icon {
        font-size: 2rem;
      }
      
      .skill-name {
        font-size: 1.1rem;
      }
      
      .worker-card {
        padding: 1rem;
      }
      
      .terms-modal-content {
        margin: 20% auto;
        padding: 1.5rem;
      }
    }

    .hidden { 
      display: none !important; 
    }
  