classic-link2 / index.html
Batfly's picture
Generate a complete, fully functional, professional website for "Classic Link", a construction, building, and maintenance company. The website must be built using PHP for backend logic, MySQL for data storage, Tailwind CSS for styling, vanilla JavaScript for interactivity, and include a secure .env file for environment variables. The site must be fully responsive, mobile-friendly, and optimized for performance. Use a futuristic design theme with black-and-blue gradients (from blue-800 to indigo-900), neon cyan accents, 3D rounded edges, and animations (e.g., fade-ins, slides, pulses, ripples). Include a CDN for Tailwind CSS and Google Fonts (Poppins). The directory structure should be: root/ images/ (for logo.png, header-back.png, slider1.png, slider2.png, slider3.png, slider4.png, team.jpg, residential-icon.png, commercial-icon.png, maintenance-icon.png, grid-overlay.png, and uploaded files) css/ (styles.css) js/ (scripts.js) index.php (main template with header, footer, and routing via ?page=) db_connect.php (database connection using PDO, with session_start() and credentials from .env) home.php (Home page with hero slider, services, about, testimonials) about.php services.php gallery.php contact.php admin-login.php admin-dashboard.php .env (secure file for DB_HOST=localhost, DB_USER=root, DB_PASS='', DB_NAME=classic_link) database.sql (SQL script to create database and tables with sample data) Load environment variables from .env using a simple parser in db_connect.php (e.g., parse_ini_file('.env')). Do not expose credentials in code. Database Schema (database.sql): CREATE DATABASE classic_link; USE classic_link; CREATE TABLE services ( id INT AUTO_INCREMENT PRIMARY KEY, title VARCHAR(255) NOT NULL, description TEXT NOT NULL ); CREATE TABLE gallery ( id INT AUTO_INCREMENT PRIMARY KEY, image_path VARCHAR(255) NOT NULL, caption VARCHAR(255) ); CREATE TABLE contact_messages ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, email VARCHAR(255) NOT NULL, message TEXT NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ); CREATE TABLE testimonials ( id INT AUTO_INCREMENT PRIMARY KEY, quote TEXT NOT NULL, author VARCHAR(255) NOT NULL ); CREATE TABLE admins ( id INT AUTO_INCREMENT PRIMARY KEY, username VARCHAR(255) NOT NULL UNIQUE, password VARCHAR(255) NOT NULL, profile_image VARCHAR(255) ); INSERT INTO services (title, description) VALUES ('Residential Construction', 'Building high-quality homes tailored to your needs.'), ('Commercial Construction', 'Delivering robust solutions for commercial spaces.'), ('Maintenance Services', 'Comprehensive maintenance for residential and commercial properties.'); INSERT INTO testimonials (quote, author) VALUES ('Classic Link transformed our home with unmatched quality and professionalism!', 'Jane Doe'), ('Their team delivered our office project on time and exceeded expectations.', 'John Smith'), ('Reliable maintenance services that keep our properties in top shape.', 'Emily Johnson'); INSERT INTO admins (username, password) VALUES ('admin', '$2y$10$z5Qz7pX8z9k1y2m3n4o5p6.q7r8s9t0u1v2w3x4y5z6a7b8c9d0e'); Routing: Use index.php as the main entry point with a ?page= query parameter to include pages (e.g., ?page=home for home.php). The header and footer are in index.php. Header (in index.php): Futuristic design with header-back.png background, rounded bottom edges (rounded-b-3xl), 3D shadow, neon cyan glow, pulsing border, and particle animation (using Particles.js CDN). Logo (200x200 pixels, responsive: w-32 md:w-48 lg:w-[200px]), with pulse glow and 360° rotation on hover. Navigation tabs with wave-in animation, 3D flip on hover, rippling underline, and active tab highlight. CTA "Contact Us" with neon glow and scale on hover. Mobile menu slides in with rounded edges. Shrink on scroll with 3D tilt. Footer (in index.php): Gradient background with shimmering text, rotating social icons (SVG for Facebook, Twitter, LinkedIn), wave transition, animated grid overlay, pulsing border, and animated stats (500+ Projects, 20+ Years, 100% Satisfaction). "Back to Top" button with rocket morph and rotation on hover. Home Page (home.php): Hero slider with slider1.png to slider4.png, gradient overlay, animated text/CTA, navigation arrows/dots with neon effects, auto-cycle every 5s, fade transitions. Services grid with icons, titles, descriptions, "Learn More" link. About section with text, image, "Read More" CTA. Testimonials carousel with arrows. Other Pages: Keep as is, but ensure header/footer enhancements apply. Admin Features: Login at ?page=admin-login. Dashboard at ?page=admin-dashboard with gallery management, password update, profile image upload. CSS (styles.css): Include all existing styles plus new animations (waveIn, ripple, pulse-glow, shimmer, wave-top, grid-flow). JS (scripts.js): Include slider logic, particles.js init, and existing functions. - Initial Deployment
e799c95 verified
Raw
History Blame Contribute Delete
50.9 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classic Link - Construction & Building Services</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 5px rgba(34, 211, 238, 0.5); }
50% { box-shadow: 0 0 20px rgba(34, 211, 238, 0.8); }
}
@keyframes ripple {
0% { transform: scale(0.8); opacity: 1; }
100% { transform: scale(1.2); opacity: 0; }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes waveIn {
0% { transform: translateY(20px); opacity: 0; }
100% { transform: translateY(0); opacity: 1; }
}
@keyframes shimmer {
0% { background-position: -1000px 0; }
100% { background-position: 1000px 0; }
}
.pulse-glow {
animation: pulse-glow 2s infinite;
}
.ripple-effect {
position: relative;
overflow: hidden;
}
.ripple-effect:after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 1%, transparent 1%) center/15000%;
opacity: 0;
transition: opacity 1s;
}
.ripple-effect:active:after {
background-size: 100%;
opacity: 1;
transition: 0s;
}
.wave-in {
animation: waveIn 0.8s ease-out forwards;
}
.shimmer-text {
background: linear-gradient(90deg, #ffffff, #22d3ee, #ffffff);
background-size: 200% auto;
color: transparent;
-webkit-background-clip: text;
background-clip: text;
animation: shimmer 3s linear infinite;
}
.grid-overlay {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%2322d3ee" stroke-width="0.5" opacity="0.2"/></svg>');
background-size: 50px 50px;
opacity: 0.3;
}
.rotate-3d:hover {
transform: perspective(1000px) rotateY(15deg) rotateX(5deg);
transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-spin:hover {
animation: spin 1s linear;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
.slide-in {
animation: slideIn 0.5s forwards;
}
@keyframes slideIn {
from { transform: translateX(100%); }
to { transform: translateX(0); }
}
.slide-out {
animation: slideOut 0.5s forwards;
}
@keyframes slideOut {
from { transform: translateX(0); }
to { transform: translateX(100%); }
}
.mobile-menu {
display: none;
}
.mobile-menu.active {
display: block;
animation: slideIn 0.3s forwards;
}
.service-card:hover .service-icon {
transform: translateY(-10px) scale(1.1);
filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.7));
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.stats-item:hover .stats-number {
transform: scale(1.1);
color: #22d3ee;
}
.back-to-top:hover svg {
animation: float 1s ease-in-out infinite;
}
</style>
</head>
<body class="font-poppins bg-gradient-to-br from-blue-800 to-indigo-900 text-white">
<!-- Header -->
<header class="fixed w-full z-50 transition-all duration-300" id="main-header">
<div class="container mx-auto px-4 py-4">
<div class="flex justify-between items-center">
<!-- Logo -->
<div class="flex items-center">
<div class="logo-spin ripple-effect">
<img src="https://via.placeholder.com/200" alt="Classic Link Logo" class="w-16 md:w-20 lg:w-24 rounded-full border-2 border-cyan-400 pulse-glow">
</div>
<h1 class="ml-3 text-xl md:text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">CLASSIC LINK</h1>
</div>
<!-- Desktop Navigation -->
<nav class="hidden md:flex space-x-1">
<a href="#home" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300 relative group">
Home
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#services" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300 relative group">
Services
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#about" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300 relative group">
About
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#gallery" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300 relative group">
Gallery
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 group-hover:w-full transition-all duration-300"></span>
</a>
<a href="#contact" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300 relative group">
Contact
<span class="absolute bottom-0 left-0 w-0 h-0.5 bg-cyan-400 group-hover:w-full transition-all duration-300"></span>
</a>
</nav>
<!-- CTA Button -->
<div class="hidden md:block">
<button class="px-6 py-2 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium hover:scale-105 transition-transform duration-300 shadow-lg hover:shadow-cyan-500/30">
Contact Us
</button>
</div>
<!-- Mobile Menu Button -->
<button class="md:hidden text-2xl focus:outline-none" id="mobile-menu-button">
</button>
</div>
</div>
<!-- Mobile Menu -->
<div class="mobile-menu md:hidden absolute top-20 right-0 w-64 bg-blue-900/95 backdrop-blur-sm rounded-l-lg shadow-xl border-l-2 border-t-2 border-b-2 border-cyan-400/30 overflow-hidden" id="mobile-menu">
<div class="flex flex-col p-4 space-y-3">
<a href="#home" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300">Home</a>
<a href="#services" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300">Services</a>
<a href="#about" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300">About</a>
<a href="#gallery" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300">Gallery</a>
<a href="#contact" class="px-4 py-2 rounded-lg hover:bg-cyan-500/10 hover:text-cyan-400 transition-all duration-300">Contact</a>
<button class="px-6 py-2 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium mt-2">
Contact Us
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="relative pt-32 pb-20 md:pt-40 md:pb-28 overflow-hidden" id="home">
<div class="absolute inset-0 bg-black/50 z-0"></div>
<div class="absolute inset-0 grid-overlay z-0"></div>
<!-- Slider -->
<div class="relative h-96 md:h-[32rem] overflow-hidden rounded-3xl mx-4 md:mx-10 shadow-2xl">
<!-- Slider Items -->
<div class="absolute inset-0 flex transition-transform duration-1000 ease-in-out" id="slider-container">
<div class="min-w-full h-full bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
<div class="min-w-full h-full bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
<div class="min-w-full h-full bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
<div class="min-w-full h-full bg-cover bg-center" style="background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');"></div>
</div>
<!-- Slider Content -->
<div class="absolute inset-0 flex items-center justify-center z-10">
<div class="text-center px-4 max-w-4xl">
<h1 class="text-4xl md:text-6xl font-bold mb-4 text-white drop-shadow-lg wave-in">Building The Future Together</h1>
<p class="text-lg md:text-xl mb-8 text-gray-200 wave-in" style="animation-delay: 0.2s">Innovative construction solutions with 20+ years of excellence in residential, commercial, and maintenance services.</p>
<div class="wave-in" style="animation-delay: 0.4s">
<button class="px-8 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium text-lg hover:scale-105 transition-transform duration-300 shadow-lg hover:shadow-cyan-500/30 mr-4">
Our Services
</button>
<button class="px-8 py-3 bg-transparent border-2 border-cyan-400 rounded-full font-medium text-lg hover:bg-cyan-500/10 transition-all duration-300">
Contact Us
</button>
</div>
</div>
</div>
<!-- Slider Controls -->
<button class="absolute left-4 top-1/2 transform -translate-y-1/2 bg-black/30 hover:bg-black/50 text-white p-3 rounded-full z-20 transition-all duration-300" id="prev-slide">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7" />
</svg>
</button>
<button class="absolute right-4 top-1/2 transform -translate-y-1/2 bg-black/30 hover:bg-black/50 text-white p-3 rounded-full z-20 transition-all duration-300" id="next-slide">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</button>
<!-- Slider Indicators -->
<div class="absolute bottom-4 left-0 right-0 flex justify-center space-x-2 z-20">
<button class="w-3 h-3 rounded-full bg-white/30 hover:bg-white transition-all duration-300 slider-indicator active"></button>
<button class="w-3 h-3 rounded-full bg-white/30 hover:bg-white transition-all duration-300 slider-indicator"></button>
<button class="w-3 h-3 rounded-full bg-white/30 hover:bg-white transition-all duration-300 slider-indicator"></button>
<button class="w-3 h-3 rounded-full bg-white/30 hover:bg-white transition-all duration-300 slider-indicator"></button>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-16 px-4 md:px-10" id="services">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Services</h2>
<div class="w-20 h-1 bg-cyan-400 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">We provide comprehensive construction and maintenance solutions tailored to meet your specific needs with the highest quality standards.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="service-card bg-blue-900/50 backdrop-blur-sm rounded-2xl p-6 border border-cyan-400/20 hover:border-cyan-400/50 transition-all duration-500 rotate-3d">
<div class="service-icon w-16 h-16 bg-cyan-500/10 rounded-xl flex items-center justify-center mb-6 transition-all duration-300 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" />
</svg>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Residential Construction</h3>
<p class="text-gray-300 mb-4">Building high-quality homes tailored to your needs with modern designs and sustainable materials.</p>
<div class="text-center">
<a href="#" class="text-cyan-400 hover:text-cyan-300 font-medium inline-flex items-center">
Learn More
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 ml-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</a>
</div>
</div>
<!-- Service 2 -->
<div class="service-card bg-blue-900/50 backdrop-blur-sm rounded-2xl p-6 border border-cyan-400/20 hover:border-cyan-400/50 transition-all duration-500 rotate-3d">
<div class="service-icon w-16 h-16 bg-cyan-500/10 rounded-xl flex items-center justify-center mb-6 transition-all duration-300 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4" />
</svg>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Commercial Construction</h3>
<p class="text-gray-300 mb-4">Delivering robust solutions for commercial spaces with innovative designs and efficient project management.</p>
<div class="text-center">
<a href="#" class="text-cyan-400 hover:text-cyan-300 font-medium inline-flex items-center">
Learn More
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 ml-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</a>
</div>
</div>
<!-- Service 3 -->
<div class="service-card bg-blue-900/50 backdrop-blur-sm rounded-2xl p-6 border border-cyan-400/20 hover:border-cyan-400/50 transition-all duration-500 rotate-3d">
<div class="service-icon w-16 h-16 bg-cyan-500/10 rounded-xl flex items-center justify-center mb-6 transition-all duration-300 mx-auto">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
</svg>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Maintenance Services</h3>
<p class="text-gray-300 mb-4">Comprehensive maintenance for residential and commercial properties with quick response times.</p>
<div class="text-center">
<a href="#" class="text-cyan-400 hover:text-cyan-300 font-medium inline-flex items-center">
Learn More
<svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 ml-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7" />
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-16 px-4 md:px-10 bg-blue-900/30" id="about">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<img src="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="About Classic Link" class="rounded-2xl shadow-2xl border-2 border-cyan-400/30 hover:border-cyan-400/70 transition-all duration-500">
</div>
<div class="md:w-1/2">
<h2 class="text-3xl md:text-4xl font-bold mb-6">About Classic Link</h2>
<div class="w-20 h-1 bg-cyan-400 mb-6"></div>
<p class="text-gray-300 mb-6">Founded in 2003, Classic Link has grown from a small local contractor to a leading construction and maintenance company serving clients nationwide. Our commitment to quality, innovation, and customer satisfaction sets us apart.</p>
<div class="mb-6">
<div class="flex items-start mb-4">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<p class="ml-2 text-gray-300">20+ years of industry experience with over 500 completed projects</p>
</div>
<div class="flex items-start mb-4">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<p class="ml-2 text-gray-300">Certified professionals with expertise in modern construction techniques</p>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-cyan-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" />
</svg>
</div>
<p class="ml-2 text-gray-300">Commitment to sustainable building practices and eco-friendly materials</p>
</div>
</div>
<button class="px-6 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium hover:scale-105 transition-transform duration-300 shadow-lg hover:shadow-cyan-500/30">
Read Our Story
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 px-4 md:px-10" id="testimonials">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Client Testimonials</h2>
<div class="w-20 h-1 bg-cyan-400 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">Hear what our clients say about working with Classic Link for their construction and maintenance needs.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-blue-900/50 backdrop-blur-sm rounded-2xl p-6 border border-cyan-400/20 hover:border-cyan-400/50 transition-all duration-500">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-cyan-500/10 flex items-center justify-center mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
</div>
<div>
<h4 class="font-bold">Jane Doe</h4>
<p class="text-sm text-cyan-400">Residential Client</p>
</div>
</div>
<p class="text-gray-300 italic mb-4">"Classic Link transformed our home with unmatched quality and professionalism! The team was attentive to every detail and delivered beyond our expectations."</p>
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-blue-900/50 backdrop-blur-sm rounded-2xl p-6 border border-cyan-400/20 hover:border-cyan-400/50 transition-all duration-500">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-cyan-500/10 flex items-center justify-center mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
</div>
<div>
<h4 class="font-bold">John Smith</h4>
<p class="text-sm text-cyan-400">Commercial Client</p>
</div>
</div>
<p class="text-gray-300 italic mb-4">"Their team delivered our office project on time and exceeded expectations. The attention to detail and communication throughout the process was exceptional."</p>
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-blue-900/50 backdrop-blur-sm rounded-2xl p-6 border border-cyan-400/20 hover:border-cyan-400/50 transition-all duration-500">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-cyan-500/10 flex items-center justify-center mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z" />
</svg>
</div>
<div>
<h4 class="font-bold">Emily Johnson</h4>
<p class="text-sm text-cyan-400">Property Manager</p>
</div>
</div>
<p class="text-gray-300 italic mb-4">"Reliable maintenance services that keep our properties in top shape. Their team is always responsive and professional, with fair pricing and quality work."</p>
<div class="flex">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-yellow-400" viewBox="0 0 20 20" fill="currentColor">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
</svg>
</div>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section class="py-16 px-4 md:px-10 bg-blue-900/30" id="gallery">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Projects</h2>
<div class="w-20 h-1 bg-cyan-400 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">Explore our portfolio of completed projects showcasing our expertise in construction and maintenance.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Gallery Item 1 -->
<div class="group relative overflow-hidden rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-500 h-64">
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 1" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
<div>
<h3 class="text-xl font-bold text-white mb-2">Modern Residence</h3>
<p class="text-gray-300">A contemporary home with sustainable materials and energy-efficient design.</p>
</div>
</div>
</div>
<!-- Gallery Item 2 -->
<div class="group relative overflow-hidden rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-500 h-64">
<img src="https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 2" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
<div>
<h3 class="text-xl font-bold text-white mb-2">Office Complex</h3>
<p class="text-gray-300">A commercial space designed for productivity and employee well-being.</p>
</div>
</div>
</div>
<!-- Gallery Item 3 -->
<div class="group relative overflow-hidden rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-500 h-64">
<img src="https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 3" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
<div>
<h3 class="text-xl font-bold text-white mb-2">Luxury Villa</h3>
<p class="text-gray-300">High-end residential property with premium finishes and smart home technology.</p>
</div>
</div>
</div>
<!-- Gallery Item 4 -->
<div class="group relative overflow-hidden rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-500 h-64">
<img src="https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 4" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
<div>
<h3 class="text-xl font-bold text-white mb-2">Retail Space</h3>
<p class="text-gray-300">Modern retail environment designed to enhance customer experience.</p>
</div>
</div>
</div>
<!-- Gallery Item 5 -->
<div class="group relative overflow-hidden rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-500 h-64">
<img src="https://images.unsplash.com/photo-1600607688969-a5bfcd646154?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 5" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
<div>
<h3 class="text-xl font-bold text-white mb-2">Apartment Building</h3>
<p class="text-gray-300">Multi-family housing with community spaces and modern amenities.</p>
</div>
</div>
</div>
<!-- Gallery Item 6 -->
<div class="group relative overflow-hidden rounded-2xl shadow-xl hover:shadow-2xl transition-all duration-500 h-64">
<img src="https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Project 6" class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
<div>
<h3 class="text-xl font-bold text-white mb-2">Industrial Facility</h3>
<p class="text-gray-300">Functional industrial space designed for efficiency and safety.</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium text-lg hover:scale-105 transition-transform duration-300 shadow-lg hover:shadow-cyan-500/30">
View All Projects
</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="py-16 px-4 md:px-10" id="contact">
<div class="container mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Get In Touch</h2>
<div class="w-20 h-1 bg-cyan-400 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">Have a project in mind or need maintenance services? Contact us today for a free consultation.</p>
</div>
<div class="flex flex-col lg:flex-row gap-10">
<div class="lg:w-1/2">
<form class="space-y-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-300 mb-1">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-blue-900/50 border border-cyan-400/30 rounded-lg focus:outline-none focus:ring-2 focus:ring-cyan-400 focus:border-transparent transition-all duration-300" placeholder="John Doe">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-blue-900/50 border border-cyan-400/30 rounded-lg focus:outline-none focus:ring-2 focus:ring-cyan-400 focus:border-transparent transition-all duration-300" placeholder="john@example.com">
</div>
</div>
<div>
<label for="subject" class="block text-sm font-medium text-gray-300 mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 bg-blue-900/50 border border-cyan-400/30 rounded-lg focus:outline-none focus:ring-2 focus:ring-cyan-400 focus:border-transparent transition-all duration-300" placeholder="Project Inquiry">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-300 mb-1">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-blue-900/50 border border-cyan-400/30 rounded-lg focus:outline-none focus:ring-2 focus:ring-cyan-400 focus:border-transparent transition-all duration-300" placeholder="Tell us about your project..."></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-full font-medium hover:scale-105 transition-transform duration-300 shadow-lg hover:shadow-cyan-500/30">
Send Message
</button>
</form>
</div>
<div class="lg:w-1/2">
<div class="bg-blue-900/50 backdrop-blur-sm rounded-2xl p-8 border border-cyan-400/20 h-full">
<h3 class="text-2xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
</div>
<div class="ml-4">
<h4 class="font-medium text-lg">Address</h4>
<p class="text-gray-300">123 Construction Ave, Building City, BC 12345</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z" />
</svg>
</div>
<div class="ml-4">
<h4 class="font-medium text-lg">Phone</h4>
<p class="text-gray-300">+1 (555) 123-4567</p>
<p class="text-gray-300">+1 (555) 987-6543 (24/7 Emergency)</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
</div>
<div class="ml-4">
<h4 class="font-medium text-lg">Email</h4>
<p class="text-gray-300">info@classiclink.com</p>
<p class="text-gray-300">support@classiclink.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-cyan-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="ml-4">
<h4 class="font-medium text-lg">Working Hours</h4>
<p class="text-gray-300">Monday - Friday: 8:00 AM - 6:00 PM</p>
<p class="text-gray-300">Saturday: 9:00 AM - 2:00 PM</p>
<p class="text-gray-
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Batfly/classic-link2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>