
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #0a0a1a;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }

        .video-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 10, 26, 0.85) 0%, rgba(26, 10, 45, 0.7) 100%);
            z-index: 0;
        }

        .slides-container {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0 5%;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            max-width: 700px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.3s;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }

       
       
       
       
        
        
        .slide-content {
  text-align: left;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 90px;
}

@media only screen and (max-width: 1024px) {
  .slide-content {
    padding-top: unset;
  }
}

.slide-content h2 {
  font-size: 22px;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: "TT Hoves Pro", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-weight: 800;
}

@media only screen and (min-width: 380px) {
  .slide-content h2 {
    font-size: 24px;
  }
}

@media (min-width: 1025px) {
  .slide-content h2 {
    font-size: 60px;
    line-height: 78px;
    margin-bottom: 14px;
  }
}

.slide-content h2 span {
  color: #ff0044;
  display: block;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.67;
  max-width: 80%;
  font-size: 24px;
  line-height: 42px;
}

@media only screen and (max-width: 1024px) {
  .slide-content p br {
    display: none;
  }
}

        
        
        
        
        
        
        
        
        
        
        
        

        .slide-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 550px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .btn {
            display: inline-block;
            padding: 16px 35px;
            background: linear-gradient(90deg, #ff0044, #6d6e71);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #2575fc, #6a11cb);
            transition: all 0.5s;
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 117, 252, 0.5);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #ff0044;
            color: #ff0044;
        }

        .btn-secondary::before {
            background: rgba(37, 117, 252, 0.1);
        }

        .slide-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
            gap: 12px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #2575fc;
            transform: scale(1.4);
        }

        .logo {
            position: absolute;
            top: 30px;
            left: 40px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            z-index: 10;
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: rgba(37, 117, 252, 0.7);
            width: 0%;
            z-index: 10;
            transition: width 7s linear;
        }

        .slide.active .progress-bar {
            width: 100%;
        }

        .slide-counter {
            position: absolute;
            top: 35px;
            right: 40px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            z-index: 10;
        }

        .slide-counter span {
            color: #2575fc;
            font-weight: 600;
        }

        .tech-icons {
            display: flex;
            gap: 18px;
            margin-top: 30px;
        }

        .tech-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tech-icon:hover {
            transform: translateY(-3px);
            background: rgba(37, 117, 252, 0.2);
            box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
            background: rgba(37, 117, 252, 0.1);
            box-shadow: 0 10px 25px rgba(37, 117, 252, 0.2);
        }

        .feature i {
            font-size: 1.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .feature p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Trusted Companies Section */
        .trusted-companies {
            background: #1e1b3a;
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
        }

        .section-title h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .section-title p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .logo-carousel {
            display: flex;
            width: 200%;
            animation: scroll 20s linear infinite;
        }

        .logo-slide {
            display: flex;
            width: 50%;
            justify-content: space-around;
            align-items: center;
            flex-shrink: 0;
        }

        .logo-item {
            width: 100px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }

        .logo-item:hover {
            opacity: 1;
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            filter: brightness(0) invert(1);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Advanced Tech Section */
        .advanced-tech {
            background: linear-gradient(135deg, #1a0a2d, #24243e);
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }

        .tech-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .tech-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .tech-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tech-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .tech-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-card:hover::before {
            opacity: 1;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .tech-icon-large {
            font-size: 3rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .tech-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .tech-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .tech-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* WordPress 2026 Section */
        .wordpress-section {
            background: linear-gradient(135deg, #0f0c29, #302b63);
            padding: 80px 5%;
            position: relative;
        }

        .wordpress-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .wordpress-text {
            flex: 1;
        }

        .wordpress-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .wordpress-text p {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .wordpress-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .wp-feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .wp-feature:hover {
            transform: translateY(-5px);
            background: rgba(37, 117, 252, 0.1);
            box-shadow: 0 10px 25px rgba(37, 117, 252, 0.2);
        }

        .wp-feature i {
            font-size: 1.8rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .wp-feature h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .wp-feature p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.7);
        }

        .wordpress-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .wp-dashboard {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border-radius: 15px;
            padding: 20px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dashboard-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dashboard-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .dashboard-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .dashboard-card:hover {
            transform: translateY(-3px);
            background: rgba(37, 117, 252, 0.1);
        }

        .card-icon {
            font-size: 1.5rem;
            margin-bottom: 12px;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .card-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .card-value {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(90deg, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .card-desc {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .wp-cta {
            text-align: center;
            margin-top: 40px;
        }

        .wp-cta .btn {
            padding: 16px 40px;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .wordpress-content {
                gap: 30px;
            }
            
            .wp-dashboard {
                max-width: 350px;
            }
            
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .slide-content {
                max-width: 90%;
                padding-right: 20px;
            }
            
            .slide-content h2 {
                font-size: 2.5rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .tech-icons {
                display: none;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .wordpress-content {
                flex-direction: column;
            }
            
            .wordpress-features {
                grid-template-columns: 1fr;
            }
            
            .wp-dashboard {
                max-width: 100%;
            }
            
            .tech-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .video-slider {
                height: 100vh;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 0.95rem;
            }
            
            .logo-item {
                width: 80px;
                height: 40px;
            }
            
            .wordpress-text h2 {
                font-size: 1.8rem;
            }
            
            .dashboard-content {
                grid-template-columns: 1fr;
            }
            
            
            .slide-counter {
                top: 25px;
                right: 20px;
                font-size: 1rem;
            }
            
            .slide-indicators {
                bottom: 20px;
            }
            
            .section-title h3 {
                font-size: 1.2rem;
            }
            
            .wordpress-section {
                padding: 40px 5%;
            }
            
            .advanced-tech {
                padding: 50px 5%;
            }
            
            .tech-header h2 {
                font-size: 2rem;
            }
            
            .tech-header p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .slide-content {
                padding-top: 60px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .slide-content p {
                font-size: 0.9rem;
            }
            
            .cta-buttons {
                gap: 12px;
            }
            
            .btn {
                padding: 14px 25px;
                font-size: 0.9rem;
            }
            
            .wordpress-text h2 {
                font-size: 1.6rem;
            }
            
            .wordpress-features {
                gap: 15px;
            }
            
            .wp-feature {
                padding: 15px;
            }
            
            .wp-feature h3 {
                font-size: 1rem;
            }
            
            .wp-feature p {
                font-size: 0.85rem;
            }
            
            .dashboard-card {
                padding: 12px;
            }
            
            .card-title {
                font-size: 0.8rem;
            }
            
            .card-value {
                font-size: 1.2rem;
            }
            
            .card-desc {
                font-size: 0.75rem;
            }
            
            .tech-card {
                padding: 20px;
            }
            
            .tech-card h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 400px) {
            .logo-item {
                width: 70px;
                height: 35px;
            }
            
            .slide-content h2 {
                font-size: 1.6rem;
            }
            
            .wordpress-text h2 {
                font-size: 1.4rem;
            }
            
            .tech-header h2 {
                font-size: 1.7rem;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
    

   

    .bc-container {
      max-width: 1280px;
      margin: auto;
      padding: 20px;
    }

    .bc-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .bc-header h1 {
      font-size: 2rem;
    }

    .bc-btn-secondary {
      background: var(--dark);
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1rem;
    }

    .bc-tabs {
      display: flex;
      overflow-x: auto;
      padding: 10px 0;
      gap: 15px;
      border-bottom: 2px solid #eee;
    }

    .bc-tabs button {
      background: none;
      border: none;
      font-weight: 600;
      padding: 10px;
      cursor: pointer;
      font-size: 1rem;
      color: #666;
      border-bottom: 3px solid transparent;
    }

    .bc-tabs button.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }

    .bc-content {
      display: none;
      padding: 30px 0;
    }

    .bc-content.active {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .bc-content .bc-text {
      flex: 1 1 50%;
    }

    .bc-content .bc-text h2 {
      font-size: 1.75rem;
      margin-bottom: 15px;
    }

    .bc-content .bc-text p {
      font-size: 1rem;
      margin-bottom: 20px;
      color: #555;
    }

    .bc-content .bc-text a {
      background: var(--primary);
      color: #fff;
      padding: 10px 18px;
      text-decoration: none;
      border-radius: 5px;
    }

    .bc-content .bc-image {
      flex: 1 1 45%;
    }

    .bc-content .bc-image img {
      width: 100%;
      height:100%;
      border-radius: 15px;
    }

    @media (max-width: 768px) {
      .bc-content {
        flex-direction: column;
      }
      
      .bc-content .bc-text, .bc-content .bc-image {
        flex: 1 1 100%;
      }
    }









 :root {
            --primary-dark: #ff1744;
            --secondary-dark: #ff1744;
            --accent-gold: #ff1744;
            --accent-blue: #ff1744;
            --text-light: #f8f9fa;
            --text-gray: #a0aec0;
            --card-bg: rgba(30, 41, 59, 0.6);
            --transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        
       
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-gold), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

         

        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            min-width: 180px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }

        .stat-item .label {
            font-size: 1rem;
            color: var(--text-gray);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent-gold), #e6c35c);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent-blue);
        }

        .btn-secondary:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
        }

        .hero-visual {
            flex: 1;
            position: relative;
            perspective: 1000px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            transform: rotateY(-10deg) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .project-card:hover {
            transform: rotateY(0deg) rotateX(0deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .project-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
        }

        .project-card p {
            color: var(--text-gray);
            margin-bottom: 25px;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .tech-item {
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* Portfolio Section */
        .portfolio {
            background: rgba(255, 255, 255, 0.03);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .project-card-portfolio {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            transform: translateY(30px);
            opacity: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .project-card-portfolio:nth-child(1) { animation: fadeInUp 0.6s 0.1s forwards; }
        .project-card-portfolio:nth-child(2) { animation: fadeInUp 0.6s 0.2s forwards; }
        .project-card-portfolio:nth-child(3) { animation: fadeInUp 0.6s 0.3s forwards; }
        .project-card-portfolio:nth-child(4) { animation: fadeInUp 0.6s 0.4s forwards; }
        .project-card-portfolio:nth-child(5) { animation: fadeInUp 0.6s 0.5s forwards; }
        .project-card-portfolio:nth-child(6) { animation: fadeInUp 0.6s 0.6s forwards; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .project-card-portfolio:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .project-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-card-portfolio:hover .project-image img {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }

        .project-card-portfolio:hover .project-overlay {
            opacity: 1;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .tag {
            background: rgba(59, 130, 246, 0.2);
            color: var(--accent-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .project-content {
            padding: 30px;
        }

        .project-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .project-content p {
            color: var(--text-gray);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .project-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat {
            text-align: center;
        }

        .stat .number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-blue);
            margin-bottom: 5px;
        }

        .stat .label {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-blue);
            font-weight: 600;
            text-decoration: none;
            margin-top: 20px;
            transition: var(--transition);
        }

        .project-link:hover {
            gap: 12px;
            color: var(--accent-teal);
        }

        /* Clients & Certifications */
        .clients {
            position: relative;
            overflow: hidden;
        }

        .clients::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
        }

        .clients-content {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .clients-logos {
            flex: 1;
        }

        .certifications {
            flex: 1;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .client-logo {
            background: rgba(255, 255, 255, 0.05);
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s forwards;
        }

        .client-logo:nth-child(1) { animation-delay: 0.1s; }
        .client-logo:nth-child(2) { animation-delay: 0.2s; }
        .client-logo:nth-child(3) { animation-delay: 0.3s; }
        .client-logo:nth-child(4) { animation-delay: 0.4s; }
        .client-logo:nth-child(5) { animation-delay: 0.5s; }
        .client-logo:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .client-logo:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .client-logo img {
            max-width: 80%;
            filter: grayscale(100%) brightness(150%);
            transition: var(--transition);
        }

        .client-logo:hover img {
            filter: grayscale(0%) brightness(100%);
        }

        .certification-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .certification-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft 0.6s forwards;
        }

        .certification-item:nth-child(1) { animation-delay: 0.1s; }
        .certification-item:nth-child(2) { animation-delay: 0.3s; }
        .certification-item:nth-child(3) { animation-delay: 0.5s; }
        .certification-item:nth-child(4) { animation-delay: 0.7s; }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .certification-item:hover {
            background: rgba(212, 175, 55, 0.05);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateX(10px);
        }

        .cert-icon {
            font-size: 2rem;
            color: var(--accent-gold);
            min-width: 50px;
        }

        .cert-content h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .cert-content p {
            color: var(--text-gray);
        }

        /* Why Choose Us */
        .why-us {
            position: relative;
            background: rgba(255, 255, 255, 0.03);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
        }

        .feature-card:nth-child(1) { animation: fadeInUp 0.6s 0.1s forwards; }
        .feature-card:nth-child(2) { animation: fadeInUp 0.6s 0.2s forwards; }
        .feature-card:nth-child(3) { animation: fadeInUp 0.6s 0.3s forwards; }
        .feature-card:nth-child(4) { animation: fadeInUp 0.6s 0.4s forwards; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--text-gray);
        }

        /* Testimonials */
        .testimonials {
            background: rgba(255, 255, 255, 0.03);
        }

        .testimonials-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            gap: 20px;
        }

        .tab-btn {
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            border-radius: 50px;
            color: var(--text-light);
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active, .tab-btn:hover {
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
            color: var(--primary-dark);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .video-testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .video-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s forwards;
        }

        .video-card:nth-child(1) { animation-delay: 0.1s; }
        .video-card:nth-child(2) { animation-delay: 0.2s; }
        .video-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .video-thumbnail {
            height: 200px;
            position: relative;
            background: linear-gradient(45deg, #0a0f2c, #121a3a);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-btn {
            width: 70px;
            height: 70px;
            background: rgba(212, 175, 55, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .play-btn:hover {
            background: var(--accent-gold);
            transform: scale(1.1);
        }

        .video-info {
            padding: 25px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .client-details h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .client-details p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .video-quote {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* Article Testimonials */
        .article-testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .article-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 35px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s forwards;
        }

        .article-card:nth-child(1) { animation-delay: 0.1s; }
        .article-card:nth-child(2) { animation-delay: 0.2s; }
        .article-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .article-quote {
            font-size: 1.4rem;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            padding-left: 30px;
        }

        .article-quote::before {
            content: """;
            position: absolute;
            left: 0;
            top: -20px;
            font-size: 5rem;
            color: rgba(212, 175, 55, 0.2);
            font-family: serif;
        }

        .article-client {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .article-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .article-details h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .article-details p {
            color: var(--text-gray);
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-blue);
            margin-top: 20px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .read-more:hover {
            gap: 12px;
        }
       