-
-
Notifications
You must be signed in to change notification settings - Fork 148
Open
Description
<title>TechSolutions Pro - Digital Innovation</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-menu a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.nav-menu a:hover {
color: #ffd700;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)),
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><polygon fill="%23667eea" points="0,100 50,120 100,100 150,120 200,100 250,120 300,100 350,120 400,100 450,120 500,100 550,120 600,100 650,120 700,100 750,120 800,100 850,120 900,100 950,120 1000,100 1000,300 0,300"/></svg>');
height: 100vh;
display: flex;
align-items: center;
text-align: center;
color: white;
}
.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
}
.hero-content p {
font-size: 1.3rem;
margin-bottom: 2rem;
animation: fadeInUp 1s ease 0.2s both;
}
.btn {
display: inline-block;
background: linear-gradient(45deg, #ff6b6b, #ffd700);
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: fadeInUp 1s ease 0.4s both;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Sections */
section {
padding: 5rem 0;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #1e3c72;
}
/* Services */
.services {
background: #f8f9fa;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: white;
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-10px);
}
.service-icon {
width: 80px;
height: 80px;
background: linear-gradient(45deg, #667eea, #764ba2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
font-size: 2rem;
color: white;
}
/* About */
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}
.about-text h3 {
color: #1e3c72;
margin-bottom: 1rem;
}
.about-image {
text-align: center;
}
.placeholder-image {
width: 100%;
height: 300px;
background: linear-gradient(45deg, #667eea, #764ba2);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
}
/* Stats */
.stats {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}
.stat-item h3 {
font-size: 3rem;
margin-bottom: 0.5rem;
}
/* Contact */
.contact {
background: #f8f9fa;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}
.contact-form {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #1e3c72;
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 10px;
border: 2px solid #e9ecef;
border-radius: 5px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #667eea;
}
.contact-info {
padding: 2rem;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}
.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(45deg, #667eea, #764ba2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 1rem;
color: white;
}
/* Footer */
footer {
background: #1e3c72;
color: white;
text-align: center;
padding: 3rem 0;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Responsive */
@media (max-width: 768px) {
.nav-menu {
display: none;
}
.hero-content h1 {
font-size: 2.5rem;
}
.about-content,
.contact-content {
grid-template-columns: 1fr;
}
}
</style>
TechSolutions Pro
<section id="home" class="hero">
<div class="container">
<div class="hero-content">
<h1>Digital Innovation Starts Here</h1>
<p>We transform businesses through cutting-edge technology solutions and innovative digital strategies</p>
<a href="#contact" class="btn">Get Started Today</a>
</div>
</div>
</section>
<section id="services" class="services">
<div class="container">
<h2 class="section-title">Our Services</h2>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">🚀</div>
<h3>Web Development</h3>
<p>Custom web applications built with modern technologies. Responsive, fast, and user-friendly solutions tailored to your business needs.</p>
</div>
<div class="service-card">
<div class="service-icon">☁️</div>
<h3>Cloud Solutions</h3>
<p>Scalable cloud infrastructure and migration services. AWS, Azure, and Google Cloud expertise for optimal performance and cost efficiency.</p>
</div>
<div class="service-card">
<div class="service-icon">📱</div>
<h3>Mobile Apps</h3>
<p>Native and cross-platform mobile applications. iOS and Android development with seamless user experiences and robust functionality.</p>
</div>
<div class="service-card">
<div class="service-icon">🔒</div>
<h3>Cybersecurity</h3>
<p>Comprehensive security solutions to protect your digital assets. Vulnerability assessments, penetration testing, and security consulting.</p>
</div>
<div class="service-card">
<div class="service-icon">📊</div>
<h3>Data Analytics</h3>
<p>Transform your data into actionable insights. Business intelligence, machine learning, and predictive analytics solutions.</p>
</div>
<div class="service-card">
<div class="service-icon">⚙️</div>
<h3>DevOps</h3>
<p>Streamline your development and deployment processes. CI/CD pipelines, automation, and infrastructure as code.</p>
</div>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2 class="section-title">About TechSolutions Pro</h2>
<div class="about-content">
<div class="about-text">
<h3>Innovation Meets Excellence</h3>
<p>With over 10 years of experience in the technology industry, TechSolutions Pro has been at the forefront of digital transformation. We specialize in delivering cutting-edge solutions that drive business growth and operational efficiency.</p>
<p>Our team of expert developers, designers, and consultants work closely with clients to understand their unique challenges and deliver customized solutions that exceed expectations.</p>
<h3>Why Choose Us?</h3>
<ul>
<li>✅ Proven track record with 500+ successful projects</li>
<li>✅ Expert team with cutting-edge technology knowledge</li>
<li>✅ 24/7 support and maintenance services</li>
<li>✅ Agile development methodology for faster delivery</li>
</ul>
</div>
<div class="about-image">
<div class="placeholder-image">
Innovation in Action
</div>
</div>
</div>
</div>
</section>
<section class="stats">
<div class="container">
<h2 class="section-title">Our Impact</h2>
<div class="stats-grid">
<div class="stat-item">
<h3>500+</h3>
<p>Projects Completed</p>
</div>
<div class="stat-item">
<h3>150+</h3>
<p>Happy Clients</p>
</div>
<div class="stat-item">
<h3>10+</h3>
<p>Years Experience</p>
</div>
<div class="stat-item">
<h3>24/7</h3>
<p>Support Available</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<div class="contact-form">
<h3>Send us a message</h3>
<form>
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
<div class="contact-info">
<h3>Contact Information</h3>
<div class="contact-item">
<div class="contact-icon">📍</div>
<div>
<h4>Address</h4>
<p>123 Tech Street, Innovation District<br>Silicon Valley, CA 94000</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">📞</div>
<div>
<h4>Phone</h4>
<p>+1 (555) 123-4567</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">✉️</div>
<div>
<h4>Email</h4>
<p>hello@techsolutionspro.com</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">🕒</div>
<div>
<h4>Business Hours</h4>
<p>Monday - Friday: 9:00 AM - 6:00 PM<br>Saturday: 10:00 AM - 4:00 PM</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 TechSolutions Pro. All rights reserved.</p>
<p>Empowering businesses through innovative technology solutions.</p>
</div>
</footer>
<script>
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
});
});
// Form submission
document.querySelector('form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
// Animate stats on scroll
const stats = document.querySelectorAll('.stat-item h3');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const target = parseInt(entry.target.textContent);
let current = 0;
const increment = target / 50;
const timer = setInterval(() => {
current += increment;
if (current >= target) {
entry.target.textContent = target + (entry.target.textContent.includes('+') ? '+' : '');
clearInterval(timer);
} else {
entry.target.textContent = Math.floor(current) + (entry.target.textContent.includes('+') ? '+' : '');
}
}, 50);
}
});
});
stats.forEach(stat => observer.observe(stat));
</script>
Metadata
Metadata
Assignees
Labels
No labels