| <!DOCTYPE html> |
| <html lang="en"> |
|
|
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>TechnoTri - Nepal's Premium Technology Partner</title> |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| :root { |
| --primary: #4a6bff; |
| --primary-dark: #3a5bef; |
| --primary-light: #e8efff; |
| --secondary: #f8f9fa; |
| --dark: #1a1a2e; |
| --dark-light: #2d2d44; |
| --light: #ffffff; |
| --gray: #6c757d; |
| --gray-light: #e9ecef; |
| --success: #28a745; |
| --accent: #ff6b6b; |
| --font-family: 'Inter', sans-serif; |
| --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
| --shadow: 0 10px 30px rgba(0, 0, 0, 0.05); |
| --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08); |
| } |
| |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: var(--font-family); |
| background-color: var(--light); |
| color: var(--dark); |
| line-height: 1.6; |
| overflow-x: hidden; |
| position: relative; |
| } |
| |
| body::before { |
| content: ""; |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: radial-gradient(circle at 20% 50%, rgba(74, 107, 255, 0.05) 0%, transparent 50%), |
| radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%); |
| pointer-events: none; |
| z-index: -1; |
| } |
| |
| .container { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 0 20px; |
| } |
| |
| |
| header { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| background-color: rgba(255, 255, 255, 0.98); |
| backdrop-filter: blur(12px); |
| z-index: 1000; |
| padding: 15px 0; |
| border-bottom: 1px solid rgba(0, 0, 0, 0.05); |
| transition: var(--transition); |
| box-shadow: var(--shadow); |
| } |
| |
| header.scrolled { |
| padding: 12px 0; |
| box-shadow: var(--shadow-lg); |
| } |
| |
| nav { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| position: relative; |
| } |
| |
| .logo { |
| font-size: 26px; |
| font-weight: 800; |
| color: var(--dark); |
| text-decoration: none; |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
| |
| .logo-icon { |
| width: 32px; |
| height: 32px; |
| background: linear-gradient(135deg, var(--primary), var(--accent)); |
| border-radius: 8px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: white; |
| font-weight: bold; |
| } |
| |
| .nav-links { |
| display: flex; |
| list-style: none; |
| gap: 30px; |
| align-items: center; |
| } |
| |
| .nav-links a { |
| text-decoration: none; |
| color: var(--dark); |
| font-weight: 500; |
| transition: var(--transition); |
| position: relative; |
| padding: 5px 0; |
| } |
| |
| .nav-links a::after { |
| content: ""; |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 0; |
| height: 2px; |
| background: linear-gradient(90deg, var(--primary), var(--accent)); |
| transition: var(--transition); |
| } |
| |
| .nav-links a:hover::after { |
| width: 100%; |
| } |
| |
| .nav-links a:hover { |
| color: var(--primary); |
| } |
| |
| .cta-button { |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| padding: 12px 24px; |
| border-radius: 50px; |
| text-decoration: none; |
| font-weight: 600; |
| transition: var(--transition); |
| border: none; |
| cursor: pointer; |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2); |
| } |
| |
| .cta-button:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 6px 20px rgba(74, 107, 255, 0.3); |
| } |
| |
| .cta-button:active { |
| transform: translateY(0); |
| } |
| |
| .mobile-menu-toggle { |
| display: none; |
| background: none; |
| border: none; |
| font-size: 24px; |
| cursor: pointer; |
| color: var(--dark); |
| } |
| |
| |
| .hero { |
| padding: 180px 0 120px; |
| background: linear-gradient(135deg, rgba(74, 107, 255, 0.05) 0%, rgba(255, 255, 255, 1) 50%); |
| position: relative; |
| overflow: hidden; |
| } |
| |
| .hero::before { |
| content: ""; |
| position: absolute; |
| top: -100px; |
| right: -100px; |
| width: 500px; |
| height: 500px; |
| background: radial-gradient(circle, rgba(74, 107, 255, 0.1) 0%, transparent 70%); |
| border-radius: 50%; |
| z-index: 0; |
| } |
| |
| .hero-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 60px; |
| align-items: center; |
| position: relative; |
| z-index: 1; |
| } |
| |
| .hero-text h1 { |
| font-size: 56px; |
| font-weight: 800; |
| line-height: 1.2; |
| margin-bottom: 24px; |
| background: linear-gradient(135deg, var(--dark), var(--dark-light)); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
| |
| .hero-text p { |
| font-size: 18px; |
| color: var(--gray); |
| margin-bottom: 36px; |
| max-width: 500px; |
| line-height: 1.7; |
| } |
| |
| .hero-buttons { |
| display: flex; |
| gap: 16px; |
| flex-wrap: wrap; |
| align-items: center; |
| } |
| |
| .btn-outline { |
| background-color: transparent; |
| color: var(--primary); |
| border: 2px solid var(--primary); |
| padding: 12px 24px; |
| border-radius: 50px; |
| text-decoration: none; |
| font-weight: 600; |
| transition: var(--transition); |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| } |
| |
| .btn-outline:hover { |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2); |
| } |
| |
| .hero-image { |
| position: relative; |
| perspective: 1000px; |
| } |
| |
| .hero-image img { |
| width: 100%; |
| border-radius: 20px; |
| box-shadow: var(--shadow-lg); |
| transform: rotateY(5deg) rotateX(5deg); |
| transition: var(--transition); |
| } |
| |
| .hero-image:hover img { |
| transform: rotateY(0) rotateX(0); |
| } |
| |
| .tech-icons { |
| position: absolute; |
| bottom: -30px; |
| right: -30px; |
| display: flex; |
| gap: 12px; |
| flex-wrap: wrap; |
| } |
| |
| .tech-icon { |
| width: 56px; |
| height: 56px; |
| background-color: var(--light); |
| border-radius: 12px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| box-shadow: var(--shadow); |
| transition: var(--transition); |
| border: 1px solid var(--gray-light); |
| } |
| |
| .tech-icon:hover { |
| transform: translateY(-5px); |
| box-shadow: var(--shadow-lg); |
| } |
| |
| |
| .services { |
| padding: 120px 0; |
| background-color: var(--secondary); |
| position: relative; |
| } |
| |
| .services::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23e8efff" opacity="0.3"/></svg>'); |
| pointer-events: none; |
| } |
| |
| .section-header { |
| text-align: center; |
| margin-bottom: 70px; |
| position: relative; |
| } |
| |
| .section-header::after { |
| content: ""; |
| position: absolute; |
| bottom: -20px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 60px; |
| height: 4px; |
| background: linear-gradient(90deg, var(--primary), var(--accent)); |
| border-radius: 2px; |
| } |
| |
| .section-header h2 { |
| font-size: 42px; |
| font-weight: 800; |
| margin-bottom: 16px; |
| background: linear-gradient(135deg, var(--dark), var(--dark-light)); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
| |
| .section-header p { |
| color: var(--gray); |
| max-width: 700px; |
| margin: 0 auto; |
| font-size: 16px; |
| } |
| |
| .services-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); |
| gap: 32px; |
| } |
| |
| .service-card { |
| background-color: var(--light); |
| border-radius: 20px; |
| padding: 36px; |
| transition: var(--transition); |
| border: 1px solid var(--gray-light); |
| position: relative; |
| overflow: hidden; |
| box-shadow: var(--shadow); |
| } |
| |
| .service-card::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 4px; |
| background: linear-gradient(90deg, var(--primary), var(--accent)); |
| transform: scaleX(0); |
| transition: var(--transition); |
| } |
| |
| .service-card:hover::before { |
| transform: scaleX(1); |
| } |
| |
| .service-card:hover { |
| transform: translateY(-12px); |
| box-shadow: var(--shadow-lg); |
| } |
| |
| .service-icon { |
| width: 64px; |
| height: 64px; |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| border-radius: 16px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 26px; |
| margin-bottom: 24px; |
| box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2); |
| transition: var(--transition); |
| } |
| |
| .service-card:hover .service-icon { |
| transform: scale(1.1); |
| } |
| |
| .service-card h3 { |
| font-size: 24px; |
| font-weight: 700; |
| margin-bottom: 16px; |
| color: var(--dark); |
| } |
| |
| .service-card p { |
| color: var(--gray); |
| margin-bottom: 24px; |
| line-height: 1.6; |
| } |
| |
| .service-features { |
| list-style: none; |
| } |
| |
| .service-features li { |
| display: flex; |
| align-items: center; |
| gap: 12px; |
| margin-bottom: 10px; |
| color: var(--gray); |
| padding: 8px 0; |
| border-bottom: 1px solid var(--gray-light); |
| } |
| |
| .service-features li:last-child { |
| border-bottom: none; |
| } |
| |
| .service-features li:before { |
| content: "✓"; |
| color: var(--success); |
| font-weight: bold; |
| background-color: rgba(40, 167, 69, 0.1); |
| width: 20px; |
| height: 20px; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 12px; |
| } |
| |
| |
| .why-choose { |
| padding: 120px 0; |
| position: relative; |
| } |
| |
| .why-choose::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| right: 0; |
| width: 500px; |
| height: 100%; |
| background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 70%); |
| pointer-events: none; |
| } |
| |
| .why-choose-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 60px; |
| align-items: center; |
| } |
| |
| .why-choose-text h2 { |
| font-size: 42px; |
| font-weight: 800; |
| margin-bottom: 24px; |
| background: linear-gradient(135deg, var(--dark), var(--dark-light)); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
| |
| .why-choose-text p { |
| margin-bottom: 36px; |
| color: var(--gray); |
| font-size: 16px; |
| line-height: 1.7; |
| } |
| |
| .trust-factors { |
| display: grid; |
| grid-template-columns: repeat(2, 1fr); |
| gap: 24px; |
| } |
| |
| .trust-factor { |
| display: flex; |
| align-items: flex-start; |
| gap: 16px; |
| padding: 16px; |
| border-radius: 12px; |
| transition: var(--transition); |
| border: 1px solid var(--gray-light); |
| } |
| |
| .trust-factor:hover { |
| border-color: var(--primary); |
| background-color: var(--primary-light); |
| } |
| |
| .trust-factor-icon { |
| width: 56px; |
| height: 56px; |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| border-radius: 12px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| flex-shrink: 0; |
| box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2); |
| } |
| |
| .trust-factor-content h4 { |
| font-size: 18px; |
| font-weight: 700; |
| margin-bottom: 6px; |
| color: var(--dark); |
| } |
| |
| .trust-factor-content p { |
| color: var(--gray); |
| font-size: 14px; |
| margin: 0; |
| } |
| |
| .why-choose-image { |
| position: relative; |
| perspective: 1000px; |
| } |
| |
| .why-choose-image img { |
| width: 100%; |
| border-radius: 20px; |
| box-shadow: var(--shadow-lg); |
| transform: rotateY(-5deg) rotateX(5deg); |
| transition: var(--transition); |
| } |
| |
| .why-choose-image:hover img { |
| transform: rotateY(0) rotateX(0); |
| } |
| |
| |
| .projects { |
| padding: 120px 0; |
| background-color: var(--secondary); |
| } |
| |
| .projects-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); |
| gap: 32px; |
| } |
| |
| .project-card { |
| background-color: var(--light); |
| border-radius: 20px; |
| overflow: hidden; |
| transition: var(--transition); |
| border: 1px solid var(--gray-light); |
| box-shadow: var(--shadow); |
| position: relative; |
| } |
| |
| .project-card:hover { |
| transform: translateY(-12px); |
| box-shadow: var(--shadow-lg); |
| } |
| |
| .project-image { |
| height: 220px; |
| background-color: var(--gray-light); |
| position: relative; |
| overflow: hidden; |
| } |
| |
| .project-image img { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| transition: var(--transition); |
| } |
| |
| .project-card:hover .project-image img { |
| transform: scale(1.05); |
| } |
| |
| .project-overlay { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: linear-gradient(135deg, rgba(74, 107, 255, 0.8), rgba(255, 107, 107, 0.8)); |
| opacity: 0; |
| transition: var(--transition); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .project-card:hover .project-overlay { |
| opacity: 1; |
| } |
| |
| .project-overlay-icon { |
| color: white; |
| font-size: 32px; |
| } |
| |
| .project-content { |
| padding: 28px; |
| } |
| |
| .project-content h3 { |
| font-size: 22px; |
| font-weight: 700; |
| margin-bottom: 12px; |
| color: var(--dark); |
| } |
| |
| .project-content p { |
| color: var(--gray); |
| margin-bottom: 16px; |
| line-height: 1.6; |
| } |
| |
| .project-tags { |
| display: flex; |
| gap: 8px; |
| flex-wrap: wrap; |
| } |
| |
| .project-tag { |
| background-color: var(--gray-light); |
| color: var(--gray); |
| padding: 6px 12px; |
| border-radius: 20px; |
| font-size: 12px; |
| font-weight: 600; |
| transition: var(--transition); |
| } |
| |
| .project-tag:hover { |
| background-color: var(--primary); |
| color: var(--light); |
| } |
| |
| |
| .hosting { |
| padding: 120px 0; |
| position: relative; |
| } |
| |
| .hosting::before { |
| content: ""; |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 500px; |
| height: 100%; |
| background: radial-gradient(circle at 50% 50%, rgba(74, 107, 255, 0.05) 0%, transparent 70%); |
| pointer-events: none; |
| } |
| |
| .hosting-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 60px; |
| align-items: center; |
| } |
| |
| .hosting-text h2 { |
| font-size: 42px; |
| font-weight: 800; |
| margin-bottom: 24px; |
| background: linear-gradient(135deg, var(--dark), var(--dark-light)); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
| |
| .hosting-text p { |
| margin-bottom: 32px; |
| color: var(--gray); |
| font-size: 16px; |
| line-height: 1.7; |
| } |
| |
| .hosting-features { |
| list-style: none; |
| margin-bottom: 32px; |
| } |
| |
| .hosting-features li { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| margin-bottom: 16px; |
| padding: 12px; |
| border-radius: 10px; |
| transition: var(--transition); |
| } |
| |
| .hosting-features li:hover { |
| background-color: var(--primary-light); |
| } |
| |
| .hosting-features li:before { |
| content: "✓"; |
| color: var(--success); |
| font-weight: bold; |
| background-color: rgba(40, 167, 69, 0.1); |
| width: 24px; |
| height: 24px; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 14px; |
| flex-shrink: 0; |
| } |
| |
| .hosting-image { |
| position: relative; |
| perspective: 1000px; |
| } |
| |
| .hosting-image img { |
| width: 100%; |
| border-radius: 20px; |
| box-shadow: var(--shadow-lg); |
| transform: rotateY(5deg) rotateX(-5deg); |
| transition: var(--transition); |
| } |
| |
| .hosting-image:hover img { |
| transform: rotateY(0) rotateX(0); |
| } |
| |
| |
| .values { |
| padding: 120px 0; |
| background-color: var(--secondary); |
| } |
| |
| .values-grid { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); |
| gap: 32px; |
| } |
| |
| .value-card { |
| text-align: center; |
| padding: 36px; |
| border-radius: 20px; |
| transition: var(--transition); |
| border: 1px solid var(--gray-light); |
| background-color: var(--light); |
| box-shadow: var(--shadow); |
| } |
| |
| .value-card:hover { |
| transform: translateY(-8px); |
| box-shadow: var(--shadow-lg); |
| border-color: var(--primary); |
| } |
| |
| .value-icon { |
| width: 72px; |
| height: 72px; |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| border-radius: 18px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 30px; |
| margin: 0 auto 24px; |
| box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2); |
| transition: var(--transition); |
| } |
| |
| .value-card:hover .value-icon { |
| transform: scale(1.1); |
| } |
| |
| .value-card h3 { |
| font-size: 22px; |
| font-weight: 700; |
| margin-bottom: 16px; |
| color: var(--dark); |
| } |
| |
| .value-card p { |
| color: var(--gray); |
| line-height: 1.6; |
| } |
| |
| |
| .vision { |
| padding: 120px 0; |
| text-align: center; |
| position: relative; |
| } |
| |
| .vision::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 800px; |
| height: 400px; |
| background: radial-gradient(ellipse at center, rgba(74, 107, 255, 0.05) 0%, transparent 70%); |
| border-radius: 50%; |
| pointer-events: none; |
| } |
| |
| .vision h2 { |
| font-size: 42px; |
| font-weight: 800; |
| margin-bottom: 24px; |
| background: linear-gradient(135deg, var(--dark), var(--dark-light)); |
| -webkit-background-clip: text; |
| background-clip: text; |
| color: transparent; |
| } |
| |
| .vision p { |
| max-width: 800px; |
| margin: 0 auto 48px; |
| color: var(--gray); |
| font-size: 16px; |
| line-height: 1.7; |
| } |
| |
| .vision-roadmap { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); |
| gap: 32px; |
| margin-top: 56px; |
| } |
| |
| .roadmap-item { |
| background-color: var(--light); |
| border-radius: 20px; |
| padding: 32px; |
| border: 1px solid var(--gray-light); |
| position: relative; |
| transition: var(--transition); |
| box-shadow: var(--shadow); |
| } |
| |
| .roadmap-item:hover { |
| transform: translateY(-8px); |
| box-shadow: var(--shadow-lg); |
| border-color: var(--primary); |
| } |
| |
| .roadmap-item:before { |
| content: ""; |
| position: absolute; |
| top: 32px; |
| left: 32px; |
| width: 24px; |
| height: 24px; |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| border-radius: 50%; |
| box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2); |
| } |
| |
| .roadmap-item h3 { |
| font-size: 22px; |
| font-weight: 700; |
| margin-bottom: 16px; |
| color: var(--dark); |
| } |
| |
| .roadmap-item p { |
| color: var(--gray); |
| line-height: 1.6; |
| } |
| |
| |
| .contact { |
| padding: 120px 0; |
| background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%); |
| color: var(--light); |
| position: relative; |
| } |
| |
| .contact::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></svg>'); |
| pointer-events: none; |
| } |
| |
| .contact-content { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| gap: 60px; |
| } |
| |
| .contact-info h2 { |
| font-size: 42px; |
| font-weight: 800; |
| margin-bottom: 24px; |
| } |
| |
| .contact-info p { |
| margin-bottom: 36px; |
| color: var(--gray-light); |
| font-size: 16px; |
| line-height: 1.7; |
| } |
| |
| .contact-details { |
| margin-bottom: 40px; |
| } |
| |
| .contact-details h4 { |
| font-size: 18px; |
| font-weight: 700; |
| margin-bottom: 12px; |
| color: var(--light); |
| } |
| |
| .contact-details p { |
| color: var(--gray-light); |
| margin-bottom: 20px; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| |
| .social-links { |
| display: flex; |
| gap: 16px; |
| } |
| |
| .social-links a { |
| width: 48px; |
| height: 48px; |
| background-color: rgba(255, 255, 255, 0.1); |
| color: var(--light); |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| transition: var(--transition); |
| border: 1px solid rgba(255, 255, 255, 0.1); |
| } |
| |
| .social-links a:hover { |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| border-color: transparent; |
| transform: translateY(-3px); |
| } |
| |
| .contact-form h2 { |
| font-size: 42px; |
| font-weight: 800; |
| margin-bottom: 24px; |
| } |
| |
| .form-group { |
| margin-bottom: 24px; |
| position: relative; |
| } |
| |
| .form-group label { |
| display: block; |
| margin-bottom: 10px; |
| font-weight: 600; |
| color: var(--light); |
| } |
| |
| .form-group input, |
| .form-group textarea, |
| .form-group select { |
| width: 100%; |
| padding: 14px 18px; |
| border: 1px solid rgba(255, 255, 255, 0.2); |
| border-radius: 10px; |
| background-color: rgba(255, 255, 255, 0.05); |
| color: var(--light); |
| font-family: var(--font-family); |
| font-size: 16px; |
| transition: var(--transition); |
| backdrop-filter: blur(10px); |
| } |
| |
| .form-group input:focus, |
| .form-group textarea:focus, |
| .form-group select:focus { |
| border-color: var(--primary); |
| outline: none; |
| box-shadow: 0 0 0 3px rgba(74, 107, 255, 0.1); |
| } |
| |
| .form-group textarea { |
| min-height: 160px; |
| resize: vertical; |
| } |
| |
| .form-group input::placeholder, |
| .form-group textarea::placeholder, |
| .form-group select::placeholder { |
| color: var(--gray-light); |
| } |
| |
| |
| footer { |
| background-color: var(--dark-light); |
| color: var(--light); |
| padding: 60px 0 30px; |
| position: relative; |
| } |
| |
| footer::before { |
| content: ""; |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 1px; |
| background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); |
| } |
| |
| .footer-content { |
| display: grid; |
| grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); |
| gap: 40px; |
| margin-bottom: 48px; |
| } |
| |
| .footer-logo { |
| font-size: 26px; |
| font-weight: 800; |
| margin-bottom: 20px; |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
| |
| .footer-logo-icon { |
| width: 32px; |
| height: 32px; |
| background: linear-gradient(135deg, var(--primary), var(--accent)); |
| border-radius: 8px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: white; |
| font-weight: bold; |
| } |
| |
| .footer-text { |
| color: var(--gray-light); |
| margin-bottom: 24px; |
| line-height: 1.6; |
| } |
| |
| .footer-links h4 { |
| font-size: 18px; |
| font-weight: 700; |
| margin-bottom: 20px; |
| color: var(--light); |
| } |
| |
| .footer-links ul { |
| list-style: none; |
| } |
| |
| .footer-links ul li { |
| margin-bottom: 12px; |
| } |
| |
| .footer-links ul li a { |
| color: var(--gray-light); |
| text-decoration: none; |
| transition: var(--transition); |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
| |
| .footer-links ul li a:hover { |
| color: var(--primary); |
| transform: translateX(5px); |
| } |
| |
| .footer-bottom { |
| border-top: 1px solid rgba(255, 255, 255, 0.1); |
| padding-top: 24px; |
| text-align: center; |
| color: var(--gray-light); |
| font-size: 14px; |
| } |
| |
| |
| @media (max-width: 1200px) { |
| .container { |
| padding: 0 15px; |
| } |
| } |
| |
| @media (max-width: 992px) { |
| .hero-content, |
| .why-choose-content, |
| .hosting-content, |
| .contact-content { |
| grid-template-columns: 1fr; |
| gap: 50px; |
| } |
| |
| .hero-text h1 { |
| font-size: 48px; |
| } |
| |
| .section-header h2, |
| .hosting-text h2, |
| .contact-info h2, |
| .contact-form h2 { |
| font-size: 36px; |
| } |
| |
| .trust-factors { |
| grid-template-columns: 1fr; |
| } |
| |
| .hero-image, .why-choose-image, .hosting-image { |
| margin-top: 30px; |
| } |
| } |
| |
| @media (max-width: 768px) { |
| .nav-links { |
| display: none; |
| } |
| |
| .mobile-menu-toggle { |
| display: block; |
| } |
| |
| .hero-content, |
| .why-choose-content, |
| .hosting-content, |
| .contact-content { |
| gap: 40px; |
| } |
| |
| .hero-text h1 { |
| font-size: 38px; |
| } |
| |
| .section-header h2, |
| .hosting-text h2, |
| .contact-info h2, |
| .contact-form h2 { |
| font-size: 30px; |
| } |
| |
| .hero-buttons { |
| flex-direction: column; |
| align-items: flex-start; |
| } |
| |
| .btn-outline, .cta-button { |
| width: 100%; |
| justify-content: center; |
| margin-bottom: 12px; |
| } |
| } |
| |
| @media (max-width: 576px) { |
| .hero-text h1 { |
| font-size: 32px; |
| } |
| |
| .section-header h2, |
| .hosting-text h2, |
| .contact-info h2, |
| .contact-form h2 { |
| font-size: 26px; |
| } |
| |
| .services-grid, |
| .projects-grid, |
| .values-grid, |
| .vision-roadmap { |
| grid-template-columns: 1fr; |
| } |
| |
| .tech-icons { |
| position: static; |
| margin-top: 20px; |
| justify-content: center; |
| } |
| } |
| |
| |
| .mobile-menu { |
| position: fixed; |
| top: 0; |
| right: -100%; |
| width: 85%; |
| max-width: 350px; |
| height: 100vh; |
| background: linear-gradient(135deg, var(--dark), var(--dark-light)); |
| box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2); |
| padding: 90px 24px 24px; |
| transition: var(--transition); |
| z-index: 1001; |
| overflow-y: auto; |
| } |
| |
| .mobile-menu.active { |
| right: 0; |
| } |
| |
| .mobile-menu-close { |
| position: absolute; |
| top: 24px; |
| right: 24px; |
| background: rgba(255, 255, 255, 0.1); |
| border: none; |
| font-size: 24px; |
| cursor: pointer; |
| color: var(--light); |
| width: 40px; |
| height: 40px; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .mobile-menu-links { |
| list-style: none; |
| } |
| |
| .mobile-menu-links li { |
| margin-bottom: 24px; |
| } |
| |
| .mobile-menu-links a { |
| text-decoration: none; |
| color: var(--light); |
| font-weight: 600; |
| font-size: 18px; |
| display: block; |
| padding: 12px 0; |
| border-bottom: 1px solid rgba(255, 255, 255, 0.1); |
| transition: var(--transition); |
| } |
| |
| .mobile-menu-links a:hover { |
| color: var(--primary); |
| transform: translateX(10px); |
| } |
| |
| |
| .overlay { |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background-color: rgba(0, 0, 0, 0.5); |
| z-index: 1000; |
| opacity: 0; |
| visibility: hidden; |
| transition: var(--transition); |
| } |
| |
| .overlay.active { |
| opacity: 1; |
| visibility: visible; |
| } |
| |
| |
| .anycoder-badge { |
| position: fixed; |
| bottom: 24px; |
| right: 24px; |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| padding: 10px 16px; |
| border-radius: 24px; |
| font-size: 14px; |
| font-weight: 600; |
| text-decoration: none; |
| z-index: 1000; |
| transition: var(--transition); |
| box-shadow: var(--shadow); |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
| |
| .anycoder-badge:hover { |
| transform: scale(1.05); |
| box-shadow: var(--shadow-lg); |
| } |
| |
| |
| @keyframes fadeInUp { |
| from { |
| opacity: 0; |
| transform: translateY(30px); |
| } |
| to { |
| opacity: 1; |
| transform: translateY(0); |
| } |
| } |
| |
| .fade-in-up { |
| animation: fadeInUp 0.6s ease-out forwards; |
| } |
| |
| @keyframes fadeIn { |
| from { |
| opacity: 0; |
| } |
| to { |
| opacity: 1; |
| } |
| } |
| |
| .fade-in { |
| animation: fadeIn 0.8s ease-out forwards; |
| } |
| |
| |
| .scroll-top { |
| position: fixed; |
| bottom: 80px; |
| right: 24px; |
| width: 50px; |
| height: 50px; |
| background: linear-gradient(135deg, var(--primary), var(--primary-dark)); |
| color: var(--light); |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 20px; |
| cursor: pointer; |
| opacity: 0; |
| visibility: hidden; |
| transition: var(--transition); |
| z-index: 999; |
| box-shadow: var(--shadow); |
| } |
| |
| .scroll-top.visible { |
| opacity: 1; |
| visibility: visible; |
| } |
| |
| .scroll-top:hover { |
| transform: translateY(-3px); |
| box-shadow: var(--shadow-lg); |
| } |
| </style> |
| </head> |
|
|
| <body> |
| |
| <header id="header"> |
| <div class="container"> |
| <nav> |
| <a href="#" class="logo"> |
| <span class="logo-icon">T</span> |
| Techno<span>Tri</span> |
| </a> |
| <ul class="nav-links"> |
| <li><a href="#services">Services</a></li> |
| <li><a href="#projects">Projects</a></li> |
| <li><a href="#hosting">Hosting</a></li> |
| <li><a href="#contact">Contact</a></li> |
| </ul> |
| <a href="#contact" class="cta-button"> |
| Start a Project <i class="fas fa-arrow-right"></i> |
| </a> |
| <button class="mobile-menu-toggle" id="mobileMenuToggle"> |
| <i class="fas fa-bars"></i> |
| </button> |
| </nav> |
| </div> |
| </header> |
|
|
| |
| <div class="mobile-menu" id="mobileMenu"> |
| <button class="mobile-menu-close" id="mobileMenuClose"> |
| <i class="fas fa-times"></i> |
| </button> |
| <ul class="mobile-menu-links"> |
| <li><a href="#services">Services</a></li> |
| <li><a href="#projects">Projects</a></li> |
| <li><a href="#hosting">Hosting</a></li> |
| <li><a href="#contact">Contact</a></li> |
| <li><a href="#contact" class="cta-button">Start a Project <i class="fas fa-arrow-right"></i></a></li> |
| </ul> |
| </div> |
|
|
| <div class="overlay" id="overlay"></div> |
|
|
| |
| <section class="hero"> |
| <div class="container"> |
| <div class="hero-content"> |
| <div class="hero-text fade-in-up"> |
| <h1>Building Premium Technology Solutions for Nepal Since 2018</h1> |
| <p>From custom software and hardware to scalable systems and digital growth strategies - we deliver excellence with privacy, performance, and innovation at the core.</p> |
| <div class="hero-buttons"> |
| <a href="#contact" class="cta-button"> |
| Talk to TechnoTri <i class="fas fa-arrow-right"></i> |
| </a> |
| <a href="#projects" class="btn-outline"> |
| View Our Work <i class="fas fa-arrow-right"></i> |
| </a> |
| </div> |
| </div> |
| <div class="hero-image fade-in"> |