 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

       /* body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: #fff;
            overflow-x: hidden;
        }*/

        .container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            padding: 20px;
        }

        header {
            margin-bottom: 40px;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #1e1b3a, #e52e71, #1e1b3a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Information Section */
        .info-section {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 30px auto;
            max-width: 1000px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .info-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #1e1b3a;
        }

        .info-section p {
            font-size: 1.2rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            perspective: 1000px;
            margin: 0 auto 30px;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transform-style: preserve-3d;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            transform: scale(0.8) translateZ(-100px);
            border-radius: 20px;
            overflow: hidden;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1) translateZ(0);
            z-index: 2;
        }

        .slide.prev {
            transform: translateX(-100%) scale(0.9);
            z-index: 1;
        }

        .slide.next {
            transform: translateX(100%) scale(0.9);
            z-index: 1;
        }

        .slide-content {
            max-width: 800px;
            z-index: 3;
        }

        .slide h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .slide p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 700px;
            opacity: 0.9;
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, #ff1744, #e52e71);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(229, 46, 113, 0.4);
        }

        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(229, 46, 113, 0.6);
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.7);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15,12,41,0.7), rgba(48,43,99,0.5), rgba(36,36,62,0.7));
            z-index: 2;
        }

        .controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 20px;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            color: white;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 12px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #e52e71;
            transform: scale(1.3);
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            width: 350px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .feature-card i {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff1744, #e52e71);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 0.95rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .slider-container {
                height: 400px;
            }
            
            .slide h2 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .info-section h2 {
                font-size: 1.7rem;
            }
            
            .info-section p {
                font-size: 1.1rem;
            }
            
            .features {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Ensure consistent font size on all devices */
        .info-section p, .slide p {
            font-size: 1.2rem;
        }
        
        @media (max-width: 480px) {
            .info-section p, .slide p {
                font-size: 1.1rem;
            }
            
            .slide h2 {
                font-size: 1.8rem;
            }
        }
        
      
      
      
      
  .timeline, .technologies {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      padding: 2rem 1rem;
      max-width: 960px;
      margin: 0 auto;
    }
    .step, .tech-box {
      background: #fff;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, background-color 0.3s;
    }
    .step:hover, .tech-box:hover {
      transform: translateY(-5px);
      background-color: #1e1b3a;
    }
    .step h2, .technologies h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }
    .step i, .tech-box i {
      margin-right: 0.5rem;
      color: var(--accent);
    }
    .step p, .tech-box p {
      font-size: 1rem;
      color: var(--text-light);
    }
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
    }
    .technologies {
      background: url('https://blessedcreation.org/assets/img/blessed00.jpg') center/cover no-repeat;
      color: #fff;
      padding: 4rem 1rem;
    }
    .technologies h2 {
      color: #fff;
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .tech-box {
      background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
    }
    .tech-box:hover {
      background-color: #1e1b3a;
    }
    @media (min-width: 768px) {
      .timeline, .technologies {
        padding: 3rem 2rem;
      }
    }
    