

body {

  background: linear-gradient(180deg,#f8fafc,#eef2f7);
  color: var(--dark);
}

/* ===== HERO ===== */
.hero {
  min-height: 55vh;
  background: url("../img/UIUX\ &\ Web\ Experience\ Design\ -\ 007\ \(1\).png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  max-width: 720px;
}

.hero p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #e5e7eb;
  max-width: 600px;
}

.hero .line {
  width: 90px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 26px;
}

   :root {
            /* --dark: #0f172a; */
            --light: #f8fafc;
            --muted: #64748b;
            --accent: #ef4444;
            --glass: rgba(255, 255, 255, 0.12);
        }

      
        body {
            background: #f1f5f9;
            color: #0f172a;
            /* line-height: 1.7;
            min-height: 100vh;
            padding: 20px; */
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            /* margin: 0 auto; */
        }
        
        .header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 30px;
            animation: fadeInDown 1s ease-out;
        }
        
        .header h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, var(--accent), #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        
        .header p {
            font-size: 1.2rem;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .cx-flow {
            /* background: white; */
            border-radius: 24px;
            padding: 40px;
            /* box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); */
            margin-bottom: 40px;
            /* border: 1px solid rgba(15, 23, 42, 0.05); */
        }
        
        h2 {
            font-size: 1.9rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            color: var(--dark);
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #f97316);
            border-radius: 2px;
        }
        
        p {
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.1rem;
            /* color: var(--dark); */
            max-width: 900px;
        }
        
        /* Intro Section */
        .intro-section {
            margin-bottom: 60px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        .intro-highlight {
            background: linear-gradient(90deg, rgba(239, 68, 68, 0.08), rgba(249, 115, 22, 0.08));
            border-left: 4px solid var(--accent);
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin-top: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .intro-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
            transform: translateX(-100%);
        }
        
        .intro-section:hover .intro-highlight::before {
            animation: shimmer 2s infinite;
        }
        
        /* Features Grid */
        .eco-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0 60px;
        }
        
        .eco-feature {
            background: var(--light);
            padding: 28px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(15, 23, 42, 0.1);
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(15, 23, 42, 0.04);
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .eco-feature:nth-child(1) { animation-delay: 0.1s; }
        .eco-feature:nth-child(2) { animation-delay: 0.2s; }
        .eco-feature:nth-child(3) { animation-delay: 0.3s; }
        .eco-feature:nth-child(4) { animation-delay: 0.4s; }
        .eco-feature:nth-child(5) { animation-delay: 0.5s; }
        .eco-feature:nth-child(6) { animation-delay: 0.6s; }
        
        .eco-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), #f97316);
            transition: width 0.4s ease;
        }
        
        .eco-feature:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
        }
        
        .eco-feature:hover::before {
            width: 8px;
        }
        
        .eco-feature::after {
            content: '→';
            position: absolute;
            top: 50%;
            right: 25px;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--accent);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .eco-feature:hover::after {
            opacity: 1;
            right: 20px;
        }
        
        /* Future Section */
        .future-section {
            margin-top: 60px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .eco-future {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
            list-style: none;
        }
        
        .eco-future li {
            background: var(--light);
            padding: 20px;
            border-radius: 12px;
            position: relative;
            padding-left: 55px;
            transition: all 0.3s ease;
            border: 1px solid rgba(15, 23, 42, 0.05);
            box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03);
        }
        
        .eco-future li:hover {
            background: rgba(239, 68, 68, 0.05);
            border-color: rgba(239, 68, 68, 0.2);
            transform: translateX(5px);
        }
        
        .eco-future li::before {
            content: '✓';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--accent), #834214);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }
        
        .future-glow {
            background: linear-gradient(90deg, rgba(239, 68, 68, 0.05), rgba(249, 115, 22, 0.05));
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(239, 68, 68, 0.1);
        }
        
        .future-glow::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        /* Floating elements animation */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(249, 115, 22, 0.05));
            z-index: -1;
        }
        
        .floating-element-1 {
            width: 300px;
            height: 300px;
            top: 5%;
            right: 5%;
            animation: float 25s infinite ease-in-out;
        }
        
        .floating-element-2 {
            width: 200px;
            height: 200px;
            bottom: 10%;
            left: 3%;
            animation: float 20s infinite ease-in-out reverse;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .eco-features {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .cx-flow {
                padding: 25px;
            }
            
            .header h1 {
                font-size: 2.2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .eco-features {
                grid-template-columns: 1fr;
            }
            
            .eco-future {
                grid-template-columns: 1fr;
            }
            
            .floating-element-1, .floating-element-2 {
                display: none;
            }
        }
        
        /* Interactive cursor effect */
        .cursor-follower {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.3) 0%, transparent 70%);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
        }
        
        .cursor-active {
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.5) 0%, transparent 70%);
        }
        
        /* Scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #f97316);
            z-index: 10000;
            transition: width 0.1s ease;
        }
        
        /* Animation toggle button */
        .anim-toggle-btn {
            background: linear-gradient(90deg, var(--accent), #f97316);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }
        
        .anim-toggle-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
        }
        
        /* Glass effect for some elements */
        .glass-effect {
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(223, 13, 13, 0.2);
        }