 .our-process-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
  }
  .process-step {
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
  }
  .process-step:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .step-icon {
    flex-shrink: 0;
    margin-right: 1rem;
    transition: color 0.3s ease;
  }
  .process-step:hover .step-icon i {
    color: #ff6600 !important;
  }
  .step-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
  }
  .process-step:hover .step-content h4 {
    color: #ff6600;
  }
  .step-content p {
    margin: 0;
    color: #555;
  }

   .team-section {
    background-color: #f8f9fa;
    padding: 60px 0;
  }
  .team-section h2 {
    color: #222;
    font-weight: 700;
    margin-bottom: 40px;
  }
  .team-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .team-card .team-info {
    padding: 20px;
    text-align: center;
  }
  .team-card .team-info h5 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
  }
  .team-card .team-info p.role {
    margin: 5px 0 15px;
    font-size: 0.95rem;
    color: #777;
  }
  .team-card .social-links {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
  }
  .team-card .social-links a {
    color: #555;
    margin: 0 8px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  .team-card .social-links a:hover {
    color: #ff6600;
  }

  /* Portfolio CSS */
    .portfolio-section {
            padding: 30px 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            /* background: white; */
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Portfolio Card */
        .portfolio-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            height: 100%;
        }

        .portfolio-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .portfolio-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .portfolio-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .portfolio-card:hover .portfolio-img-wrapper img {
            transform: scale(1.1);
        }

        /* Image Overlay */
        .img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-card:hover .img-overlay {
            opacity: 1;
        }

        .overlay-icons {
            display: flex;
            gap: 15px;
        }

        .overlay-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .portfolio-card:hover .overlay-icon {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-card:hover .overlay-icon:nth-child(1) {
            transition-delay: 0.1s;
        }

        .portfolio-card:hover .overlay-icon:nth-child(2) {
            transition-delay: 0.2s;
        }

        .overlay-icon:hover {
            background: var(--accent);
            color: white;
            transform: scale(1.2) translateY(0);
        }

        /* Card Body */
        .card-body {
            padding: 30px;
            position: relative;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .portfolio-card:hover .card-title {
            color: var(--primary);
        }

        .card-text {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Tags */
        .project-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .tag {
            padding: 5px 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Badge */
        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .portfolio-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .portfolio-card:nth-child(1) { animation-delay: 0.1s; }
        .portfolio-card:nth-child(2) { animation-delay: 0.2s; }
        .portfolio-card:nth-child(3) { animation-delay: 0.3s; }
        .portfolio-card:nth-child(4) { animation-delay: 0.4s; }

        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
        }

        .modal-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 20px 20px 0 0;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-img {
            width: 100%;
            border-radius: 15px;
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .portfolio-img-wrapper {
                height: 220px;
            }

            .filter-buttons {
                padding: 0 20px;
            }
        }

        /* Loading Animation */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

    
/* General slider text styles */
.slidertext1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.slidertext1 span {
  color: #00aced;
}

.slidertext3 {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #eee;
  text-align: center;
  line-height: 1.5;
}

.slider__btn .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00aced;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.slider__btn .btn:hover {
  background-color: #0084a3;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .slidertext1 {
    font-size: 3rem;
  }

  .slidertext3 {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .slidertext1 {
    font-size: 2rem;
  }

  .slidertext3 {
    font-size: 15px;
  }

  .slider__btn .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .slidertext1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .slidertext3 {
    font-size: 14px;
    margin-bottom: 0px;
  }

  .slider__btn .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}


/* Overlay background */
    .cookie-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9998;
    }

    .cookie-overlay.hidden {
      display: none;
    }

    /* Popup box */
    .cookie-popup {
      background: white;
      border: 1px solid #ccc;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      z-index: 9999;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from {
        transform: scale(0.95);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .cookie-popup p {
      margin: 0 0 15px;
      font-size: 14px;
      line-height: 1.5;
    }

    .cookie-popup a {
      color: #000;
      font-weight: bold;
      text-decoration: underline;
    }

    .cookie-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 10px;
    }

    .cookie-buttons button {
      padding: 10px 16px;
      font-size: 14px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      flex: 1;
      min-width: 100px;
    }

    .btn-preferences {
      background: white;
      color: black;
      border: 1px solid #000;
    }

    .btn-decline {
      background: #c62828;
      color: white;
    }

    .btn-accept {
      background: #d32f2f;
      color: white;
    }

    @media (max-width: 480px) {
      .cookie-buttons {
        flex-direction: column;
      }

      .cookie-buttons button {
        flex: none;
        width: 100%;
      }
    }
