

/* ===== 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;
            --accent-light: #f87171;
            --accent-dark: #dc2626;
            --surface: #ffffff;
            --border: rgba(239, 68, 68, 0.2);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

            --gradient-primary: linear-gradient(135deg, #ef4444, #dc2626);
            --gradient-accent: linear-gradient(135deg, #f87171, #ef4444);
            --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
            --gradient-light: linear-gradient(135deg, #f8fafc, #e2e8f0);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
      
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

        /* Header & Navigation */
      
        /* Hero Section */
        
        /* Section Styling */
        section {
            padding: 50px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size:1.9rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2 .underline {
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-primary);
            opacity: 0.3;
            border-radius: 3px;
        }

        .section-title p {
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Why Choose Cards */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
        }

        .feature-card {
            background: var(--surface);
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: all 0.5s ease;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-light);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
            overflow: hidden;
        }

        .feature-icon i {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            z-index: 2;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover .feature-icon::after {
            opacity: 0.1;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--muted);
            line-height: 1.7;
        }

        /* Outcome Section */
        .outcome {
            background: var(--gradient-dark);
            color: var(--light);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .outcome::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0) 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .outcome-content {
            position: relative;
            z-index: 2;
        }

        .outcome h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .outcome p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
            color: rgba(248, 250, 252, 0.9);
        }

        /* Future Section */
        .future-section {
            background-color: rgba(239, 68, 68, 0.03);
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }

        .future-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .future-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.3;
        }

        .future-item {
            margin-bottom: 60px;
            position: relative;
            width: calc(50% - 40px);
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .future-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .future-item:nth-child(odd) {
            margin-left: auto;
            padding-left: 60px;
        }

        .future-item:nth-child(even) {
            margin-right: auto;
            /* padding-right: 60px; */
            text-align: right;
        }

        .future-item:nth-child(even) .future-dot {
            left: auto;
            right: -32px;
        }

        .future-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            top: 0;
            left: -32px;
            z-index: 2;
            box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.1);
            animation: pulseDot 2s infinite;
        }

        .future-content {
            background: var(--surface);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: transform 0.3s;
        }

        .future-item:hover .future-content {
            transform: scale(1.05);
        }

        .future-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .future-item:nth-child(even) .future-icon {
            margin-left: auto;
        }

        .future-icon i {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .future-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 700;
        }

        .future-content p {
            color: var(--muted);
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 80px 0 40px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo i {
            font-size: 2.2rem;
        }

        .footer-about p {
            color: rgba(248, 250, 252, 0.7);
            margin-bottom: 30px;
            max-width: 300px;
        }

        .footer-links h4, .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--accent-light);
        }

        .footer-links ul, .footer-contact ul {
            list-style: none;
        }

        .footer-links li, .footer-contact li {
            margin-bottom: 15px;
        }

        .footer-links a, .footer-contact a {
            color: rgba(248, 250, 252, 0.7);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover, .footer-contact a:hover {
            color: var(--accent-light);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(100, 116, 139, 0.3);
            color: rgba(248, 250, 252, 0.5);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.2;
            }
        }

        @keyframes pulseDot {
            0%, 100% {
                box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.1);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(239, 68, 68, 0.2);
            }
        }

        @keyframes codeGlow {
            0%, 100% {
                background-color: rgba(239, 68, 68, 0);
            }
            50% {
                background-color: rgba(239, 68, 68, 0.1);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .future-timeline::before {
                left: 30px;
            }
            
            .future-item {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                padding-left: 40px !important;
                text-align: left !important;
            }
            
            .future-item:nth-child(even) .future-dot {
                left: -32px;
                right: auto;
            }
            
            .future-item:nth-child(even) .future-icon {
                margin-left: 0;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--gradient-dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 30px;
                transition: right 0.5s ease;
                z-index: 1000;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                color: var(--light);
                font-size: 1.2rem;
            }

            .hero {
                padding-top: 120px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .feature-card, .future-content {
                padding: 30px;
            }

            .outcome {
                padding: 50px 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .feature-card, .future-content {
                padding: 25px;
            }
            
            .future-item {
                width: calc(100% - 60px);
                margin-left: 60px !important;
            }
        }


