test / index.html
soltaniali's picture
Add 2 files
0147444 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScholarConnect - Find Professors Worldwide</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.hero-gradient {
background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%);
background-size: 200% 200%;
animation: gradient 8s ease infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.pulse {
animation: pulse 2s ease-in-out infinite;
}
.glow {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.feature-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 20px;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}
.feature-icon:hover {
transform: rotate(15deg) scale(1.1);
}
.popular-plan {
position: relative;
border: 3px solid transparent;
background-clip: padding-box;
z-index: 1;
}
.popular-plan::before {
content: '';
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
z-index: -1;
background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
border-radius: 1rem;
animation: gradient 4s ease infinite;
background-size: 200% 200%;
}
.popular-badge {
position: absolute;
top: -15px;
right: 20px;
background: linear-gradient(45deg, #3b82f6, #8b5cf6);
color: white;
padding: 6px 16px;
border-radius: 9999px;
font-size: 14px;
font-weight: bold;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.search-box {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
transform: perspective(1000px) rotateX(5deg);
transition: all 0.3s ease;
}
.search-box:hover {
transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}
.btn-hover:hover .animated-arrow {
transform: translateX(5px);
}
.testimonial-card {
background: linear-gradient(145deg, #ffffff, #f9fafb);
box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}
.smooth-scroll {
scroll-behavior: smooth;
}
.nav-glass {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.text-gradient {
background: linear-gradient(45deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800 smooth-scroll overflow-x-hidden">
<!-- Animated Background Elements -->
<div class="fixed inset-0 overflow-hidden -z-10">
<div class="absolute top-0 left-1/4 w-64 h-64 rounded-full bg-blue-400 opacity-10 mix-blend-multiply filter blur-3xl floating" style="animation-delay: 0s;"></div>
<div class="absolute top-1/3 right-1/4 w-72 h-72 rounded-full bg-purple-400 opacity-10 mix-blend-multiply filter blur-3xl floating" style="animation-delay: 2s;"></div>
<div class="absolute bottom-0 left-1/2 w-80 h-80 rounded-full bg-pink-400 opacity-10 mix-blend-multiply filter blur-3xl floating" style="animation-delay: 4s;"></div>
</div>
<!-- Navigation -->
<nav class="nav-glass shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<div class="w-10 h-10 rounded-lg bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center shadow-lg">
<i class="fas fa-graduation-cap text-white text-xl"></i>
</div>
<span class="ml-3 text-2xl font-bold text-gradient">ScholarConnect</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#features" class="text-gray-600 hover:text-gradient px-3 py-2 text-sm font-medium transition-all duration-300">Features</a>
<a href="#how-it-works" class="text-gray-600 hover:text-gradient px-3 py-2 text-sm font-medium transition-all duration-300">How It Works</a>
<a href="#pricing" class="text-gray-600 hover:text-gradient px-3 py-2 text-sm font-medium transition-all duration-300">Pricing</a>
<a href="#testimonials" class="text-gray-600 hover:text-gradient px-3 py-2 text-sm font-medium transition-all duration-300">Testimonials</a>
</div>
<div class="flex items-center">
<a href="#pricing" class="ml-6 inline-flex items-center px-6 py-3 border border-transparent text-sm font-medium rounded-xl shadow-lg text-white bg-gradient-to-r from-blue-500 to-purple-600 hover:from-blue-600 hover:to-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-300 pulse">
Get Started <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient text-white relative overflow-hidden">
<div class="max-w-7xl mx-auto py-24 px-4 sm:py-32 sm:px-6 lg:px-8 relative z-10">
<div class="text-center">
<h1 class="text-5xl font-extrabold tracking-tight sm:text-6xl lg:text-7xl mb-6">
<span class="block">Connect With</span>
<span class="block bg-clip-text text-transparent bg-gradient-to-r from-white to-blue-100">Professors Worldwide</span>
</h1>
<p class="mt-6 max-w-2xl mx-auto text-xl text-blue-100">
Our AI-powered platform helps you find and connect with top professors in any field from universities across the globe.
</p>
<div class="mt-10 max-w-md mx-auto sm:max-w-none sm:flex sm:justify-center gap-4">
<a href="#pricing" class="w-full sm:w-auto flex items-center justify-center px-8 py-4 border border-transparent text-base font-medium rounded-xl shadow-lg text-blue-900 bg-white hover:bg-blue-50 sm:px-10 transition-all duration-300 hover:shadow-xl">
View Plans <i class="fas fa-arrow-down ml-2"></i>
</a>
<a href="#how-it-works" class="w-full sm:w-auto flex items-center justify-center px-8 py-4 border-2 border-white text-base font-medium rounded-xl shadow-lg text-white bg-transparent hover:bg-white hover:bg-opacity-10 sm:px-10 transition-all duration-300 hover:shadow-xl mt-4 sm:mt-0">
<i class="fas fa-play-circle mr-2"></i> Watch Demo
</a>
</div>
</div>
</div>
<div class="absolute -bottom-32 -left-32 w-96 h-96 rounded-full bg-blue-400 opacity-20 filter blur-3xl"></div>
<div class="absolute -bottom-40 -right-40 w-96 h-96 rounded-full bg-purple-400 opacity-20 filter blur-3xl"></div>
</div>
<!-- Search Section -->
<div class="bg-white -mt-16 relative z-20">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 transform -translate-y-10">
<div class="search-box bg-white rounded-2xl shadow-2xl p-8 border border-gray-100">
<h2 class="text-2xl font-bold text-gray-900 mb-6 text-center">Find Your Ideal Professor</h2>
<div class="flex flex-col md:flex-row gap-4">
<div class="flex-grow relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-search text-gray-400"></i>
</div>
<input type="text" id="subject" class="block w-full rounded-xl border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 pl-10 p-4 border text-lg" placeholder="Enter subject or research area">
</div>
<div class="flex-grow relative">
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
<i class="fas fa-globe-americas text-gray-400"></i>
</div>
<select id="location" class="block w-full rounded-xl border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 pl-10 p-4 border text-lg appearance-none">
<option value="">Any Location</option>
<option value="north-america">North America</option>
<option value="europe">Europe</option>
<option value="asia">Asia</option>
<option value="africa">Africa</option>
<option value="south-america">South America</option>
<option value="australia">Australia</option>
</select>
<div class="absolute inset-y-0 right-0 flex items-center pr-3 pointer-events-none">
<i class="fas fa-chevron-down text-gray-400"></i>
</div>
</div>
<button id="search-button" type="button" class="bg-gradient-to-r from-blue-500 to-purple-600 text-white px-8 py-4 rounded-xl shadow-lg hover:from-blue-600 hover:to-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 transition-all duration-300 text-lg font-medium">
Search <i class="fas fa-paper-plane ml-2"></i>
</button>
</div>
<div id="search-results" class="mt-6 hidden">
<div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
<h3 class="font-bold text-gray-900 text-lg mb-4">Search Results</h3>
<div id="results-list" class="mt-2 space-y-4">
<!-- Results will be inserted here by JavaScript -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div id="features" class="py-20 bg-gradient-to-b from-white to-gray-50 relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="lg:text-center mb-16">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-100 text-blue-800 mb-4">
<i class="fas fa-bolt mr-1"></i> POWERFUL FEATURES
</span>
<h2 class="text-4xl font-extrabold tracking-tight text-gray-900 sm:text-5xl">
Everything you need to <span class="text-gradient">find the right professor</span>
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto">
Our platform combines advanced search technology with comprehensive academic data.
</p>
</div>
<div class="grid grid-cols-1 gap-12 md:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="pt-6">
<div class="flow-root bg-white rounded-2xl px-8 pb-10 h-full card-hover border border-gray-100">
<div class="-mt-6">
<div class="feature-icon bg-gradient-to-br from-blue-50 to-blue-100 text-blue-600 mx-auto shadow-lg">
<i class="fas fa-search text-3xl"></i>
</div>
<h3 class="mt-8 text-2xl font-bold text-gray-900 text-center">Advanced Search</h3>
<p class="mt-5 text-base text-gray-600">
Filter professors by subject, research interests, university, location, and more. Our AI understands academic jargon and research areas.
</p>
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="pt-6">
<div class="flow-root bg-white rounded-2xl px-8 pb-10 h-full card-hover border border-gray-100">
<div class="-mt-6">
<div class="feature-icon bg-gradient-to-br from-purple-50 to-purple-100 text-purple-600 mx-auto shadow-lg">
<i class="fas fa-id-card text-3xl"></i>
</div>
<h3 class="mt-8 text-2xl font-bold text-gray-900 text-center">Detailed Profiles</h3>
<p class="mt-5 text-base text-gray-600">
Access comprehensive profiles including publications, research projects, contact information, and student reviews.
</p>
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="pt-6">
<div class="flow-root bg-white rounded-2xl px-8 pb-10 h-full card-hover border border-gray-100">
<div class="-mt-6">
<div class="feature-icon bg-gradient-to-br from-pink-50 to-pink-100 text-pink-600 mx-auto shadow-lg">
<i class="fas fa-bell text-3xl"></i>
</div>
<h3 class="mt-8 text-2xl font-bold text-gray-900 text-center">Smart Alerts</h3>
<p class="mt-5 text-base text-gray-600">
Get notified when professors in your field publish new work, change institutions, or have openings in their research groups.
</p>
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="pt-6">
<div class="flow-root bg-white rounded-2xl px-8 pb-10 h-full card-hover border border-gray-100">
<div class="-mt-6">
<div class="feature-icon bg-gradient-to-br from-indigo-50 to-indigo-100 text-indigo-600 mx-auto shadow-lg">
<i class="fas fa-network-wired text-3xl"></i>
</div>
<h3 class="mt-8 text-2xl font-bold text-gray-900 text-center">Collaboration Network</h3>
<p class="mt-5 text-base text-gray-600">
Visualize academic collaboration networks to discover professors who work with others in your field of interest.
</p>
</div>
</div>
</div>
<!-- Feature 5 -->
<div class="pt-6">
<div class="flow-root bg-white rounded-2xl px-8 pb-10 h-full card-hover border border-gray-100">
<div class="-mt-6">
<div class="feature-icon bg-gradient-to-br from-green-50 to-green-100 text-green-600 mx-auto shadow-lg">
<i class="fas fa-chart-line text-3xl"></i>
</div>
<h3 class="mt-8 text-2xl font-bold text-gray-900 text-center">Impact Metrics</h3>
<p class="mt-5 text-base text-gray-600">
View citation counts, h-index, and other academic impact metrics to evaluate professors' research influence.
</p>
</div>
</div>
</div>
<!-- Feature 6 -->
<div class="pt-6">
<div class="flow-root bg-white rounded-2xl px-8 pb-10 h-full card-hover border border-gray-100">
<div class="-mt-6">
<div class="feature-icon bg-gradient-to-br from-yellow-50 to-yellow-100 text-yellow-600 mx-auto shadow-lg">
<i class="fas fa-envelope text-3xl"></i>
</div>
<h3 class="mt-8 text-2xl font-bold text-gray-900 text-center">Contact Templates</h3>
<p class="mt-5 text-base text-gray-600">
Professionally crafted email templates tailored for different purposes (research inquiries, PhD applications, collaboration requests).
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- How It Works Section -->
<div id="how-it-works" class="py-20 bg-white relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="lg:text-center mb-16">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-purple-100 text-purple-800 mb-4">
<i class="fas fa-cogs mr-1"></i> SIMPLE PROCESS
</span>
<h2 class="text-4xl font-extrabold tracking-tight text-gray-900 sm:text-5xl">
How <span class="text-gradient">ScholarConnect</span> Works
</h2>
</div>
<div class="mt-16">
<div class="lg:grid lg:grid-cols-3 lg:gap-8">
<!-- Step 1 -->
<div class="relative pb-12">
<div class="flex items-center">
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-gradient-to-br from-blue-500 to-blue-600 text-white text-2xl font-bold shadow-lg">
1
</div>
<h3 class="ml-6 text-2xl font-bold text-gray-900">Define Your Search</h3>
</div>
<div class="mt-8 ml-22">
<p class="text-lg text-gray-600">
Enter your research interests, subject area, or specific keywords. Add filters like location, university ranking, or professor's academic position.
</p>
<div class="mt-6">
<div class="bg-blue-50 p-4 rounded-xl border border-blue-100">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-lightbulb text-blue-500 text-xl"></i>
</div>
<div class="ml-3">
<p class="text-sm text-blue-700">
<span class="font-bold">Tip:</span> Use our AI suggestions to refine your search terms.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="relative pb-12">
<div class="flex items-center">
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-gradient-to-br from-purple-500 to-purple-600 text-white text-2xl font-bold shadow-lg">
2
</div>
<h3 class="ml-6 text-2xl font-bold text-gray-900">Review Matches</h3>
</div>
<div class="mt-8 ml-22">
<p class="text-lg text-gray-600">
Our AI analyzes thousands of academic profiles and presents the most relevant professors. Sort by relevance, citation count, or availability.
</p>
<div class="mt-6">
<div class="bg-purple-50 p-4 rounded-xl border border-purple-100">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-lightbulb text-purple-500 text-xl"></i>
</div>
<div class="ml-3">
<p class="text-sm text-purple-700">
<span class="font-bold">Tip:</span> Save your favorite professors to track them over time.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="relative">
<div class="flex items-center">
<div class="flex items-center justify-center h-16 w-16 rounded-full bg-gradient-to-br from-pink-500 to-pink-600 text-white text-2xl font-bold shadow-lg">
3
</div>
<h3 class="ml-6 text-2xl font-bold text-gray-900">Connect & Engage</h3>
</div>
<div class="mt-8 ml-22">
<p class="text-lg text-gray-600">
Access contact information, use our professional templates, and track your outreach. Get insights on response rates and best times to contact.
</p>
<div class="mt-6">
<div class="bg-pink-50 p-4 rounded-xl border border-pink-100">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-lightbulb text-pink-500 text-xl"></i>
</div>
<div class="ml-3">
<p class="text-sm text-pink-700">
<span class="font-bold">Tip:</span> Personalize our templates for higher response rates.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Stats Section -->
<div class="bg-gradient-to-r from-blue-600 to-purple-700 text-white py-20 relative overflow-hidden">
<div class="absolute inset-0 opacity-20">
<div class="absolute inset-0 bg-gradient-to-br from-white to-transparent opacity-10"></div>
<div class="absolute top-0 left-0 right-0 h-1/3 bg-gradient-to-b from-white to-transparent opacity-5"></div>
<div class="absolute bottom-0 left-0 right-0 h-1/3 bg-gradient-to-t from-white to-transparent opacity-5"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="grid grid-cols-1 gap-12 sm:grid-cols-3">
<div class="text-center">
<div class="text-5xl font-extrabold mb-2">50,000+</div>
<div class="text-xl font-medium">Professors</div>
<div class="mt-2 text-blue-200">From top universities worldwide</div>
</div>
<div class="text-center">
<div class="text-5xl font-extrabold mb-2">120+</div>
<div class="text-xl font-medium">Academic Disciplines</div>
<div class="mt-2 text-blue-200">Covering all major fields of study</div>
</div>
<div class="text-center">
<div class="text-5xl font-extrabold mb-2">95%</div>
<div class="text-xl font-medium">Success Rate</div>
<div class="mt-2 text-blue-200">Users find relevant professors</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div id="pricing" class="py-20 bg-gray-50 relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="sm:flex sm:flex-col sm:align-center mb-16">
<div class="lg:text-center">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800 mb-4">
<i class="fas fa-tags mr-1"></i> PRICING
</span>
<h2 class="text-4xl font-extrabold tracking-tight text-gray-900 sm:text-5xl">
Simple, transparent <span class="text-gradient">pricing</span>
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-600 lg:mx-auto">
Choose the plan that fits your academic needs. All plans include our powerful search technology.
</p>
</div>
<div class="relative mt-8 bg-white rounded-xl p-1 flex self-center border border-gray-200 max-w-xs mx-auto">
<button id="monthly-button" type="button" class="relative w-1/2 bg-white border-gray-200 rounded-lg shadow-sm py-2 px-4 text-sm font-medium text-gray-900 whitespace-nowrap focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Monthly
</button>
<button id="yearly-button" type="button" class="ml-0.5 relative w-1/2 border border-transparent rounded-lg py-2 px-4 text-sm font-medium text-gray-700 whitespace-nowrap focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Yearly (20% off)
</button>
</div>
</div>
<div class="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-6 lg:max-w-4xl lg:mx-auto xl:max-w-none xl:mx-0">
<!-- Basic Plan -->
<div class="border border-gray-200 rounded-2xl shadow-sm divide-y divide-gray-200 bg-white transition-all duration-300 hover:shadow-xl card-hover">
<div class="p-8">
<h2 class="text-2xl font-bold text-gray-900">Basic</h2>
<p class="mt-4 text-lg text-gray-600">
For students exploring academic fields
</p>
<p class="mt-8">
<span class="basic-price text-5xl font-extrabold text-gray-900">$9</span>
<span class="text-xl font-medium text-gray-500">/month</span>
</p>
<a href="#" class="mt-8 block w-full bg-gray-100 border border-gray-300 rounded-xl py-3 text-lg font-semibold text-gray-900 text-center hover:bg-gray-200 transition-all duration-300">
Get started
</a>
</div>
<div class="pt-8 pb-10 px-8">
<h3 class="text-sm font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul class="mt-8 space-y-4">
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">50 professor searches per month</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Basic profile information</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Email notifications</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">3 saved searches</span>
</li>
</ul>
</div>
</div>
<!-- Popular Plan -->
<div class="popular-plan rounded-2xl shadow-xl divide-y divide-gray-200 bg-white transition-all duration-300 card-hover">
<div class="p-8">
<div class="popular-badge">Most Popular</div>
<h2 class="text-2xl font-bold text-gray-900">Professional</h2>
<p class="mt-4 text-lg text-gray-600">
For serious researchers and graduate students
</p>
<p class="mt-8">
<span class="professional-price text-5xl font-extrabold text-gray-900">$29</span>
<span class="text-xl font-medium text-gray-500">/month</span>
</p>
<a href="#" class="mt-8 block w-full bg-gradient-to-r from-blue-500 to-purple-600 border border-transparent rounded-xl py-3 text-lg font-semibold text-white text-center hover:from-blue-600 hover:to-purple-700 transition-all duration-300 shadow-lg">
Get started
</a>
</div>
<div class="pt-8 pb-10 px-8">
<h3 class="text-sm font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul class="mt-8 space-y-4">
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Unlimited professor searches</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Full academic profiles</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Publication alerts</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">20 saved searches</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Email templates</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Collaboration network maps</span>
</li>
</ul>
</div>
</div>
<!-- Enterprise Plan -->
<div class="border border-gray-200 rounded-2xl shadow-sm divide-y divide-gray-200 bg-white transition-all duration-300 hover:shadow-xl card-hover">
<div class="p-8">
<h2 class="text-2xl font-bold text-gray-900">Institutional</h2>
<p class="mt-4 text-lg text-gray-600">
For universities and research institutions
</p>
<p class="mt-8">
<span class="institutional-price text-5xl font-extrabold text-gray-900">$99</span>
<span class="text-xl font-medium text-gray-500">/month</span>
</p>
<a href="#" class="mt-8 block w-full bg-gray-100 border border-gray-300 rounded-xl py-3 text-lg font-semibold text-gray-900 text-center hover:bg-gray-200 transition-all duration-300">
Get started
</a>
</div>
<div class="pt-8 pb-10 px-8">
<h3 class="text-sm font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
<ul class="mt-8 space-y-4">
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">All Professional features</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Unlimited user seats</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">API access</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Custom reporting</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Dedicated account manager</span>
</li>
<li class="flex space-x-3 items-start">
<i class="fas fa-check text-green-500 mt-1"></i>
<span class="text-base text-gray-600">Onboarding training</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div id="testimonials" class="py-20 bg-white relative overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="lg:text-center mb-16">
<span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-pink-100 text-pink-800 mb-4">
<i class="fas fa-star mr-1"></i> TESTIMONIALS
</span>
<h2 class="text-4xl font-extrabold tracking-tight text-gray-900 sm:text-5xl">
Trusted by <span class="text-gradient">researchers worldwide</span>
</h2>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Testimonial 1 -->
<div class="testimonial-card p-8 rounded-2xl transition-all duration-300 hover:shadow-xl">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-14 w-14 rounded-full object-cover shadow-md" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-900">Sarah Johnson</h4>
<p class="text-sm text-gray-600">PhD Candidate, Neuroscience</p>
</div>
</div>
<div class="mt-6">
<p class="text-gray-700 text-lg">
"ScholarConnect helped me identify the perfect advisor for my PhD. The detailed profiles and publication history made it easy to find someone whose research aligned perfectly with my interests."
</p>
</div>
<div class="mt-6 flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card p-8 rounded-2xl transition-all duration-300 hover:shadow-xl">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-14 w-14 rounded-full object-cover shadow-md" src="https://images.unsplash.com/photo-1519244703995-f4e0f30006d5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-900">Michael Chen</h4>
<p class="text-sm text-gray-600">Assistant Professor, Computer Science</p>
</div>
</div>
<div class="mt-6">
<p class="text-gray-700 text-lg">
"As a professor, I use ScholarConnect to find collaborators for interdisciplinary projects. The network visualization tools are incredibly powerful for identifying potential partners."
</p>
</div>
<div class="mt-6 flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card p-8 rounded-2xl transition-all duration-300 hover:shadow-xl">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-14 w-14 rounded-full object-cover shadow-md" src="https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-900">David Rodriguez</h4>
<p class="text-sm text-gray-600">Research Director, Biomedical Engineering</p>
</div>
</div>
<div class="mt-6">
<p class="text-gray-700 text-lg">
"Our research center subscribes to the Institutional plan. The ability to track emerging researchers in our field has been invaluable for recruitment and collaboration."
</p>
</div>
<div class="mt-6 flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="hero-gradient text-white relative overflow-hidden">
<div class="max-w-7xl mx-auto py-20 px-4 sm:px-6 lg:px-8 relative z-10">
<div class="text-center">
<h2 class="text-4xl font-extrabold tracking-tight sm:text-5xl mb-6">
<span class="block">Ready to find your ideal professor?</span>
<span class="block bg-clip-text text-transparent bg-gradient-to-r from-white to-blue-100">Start your free trial today.</span>
</h2>
<div class="mt-10 max-w-md mx-auto sm:max-w-none sm:flex sm:justify-center gap-4">
<a href="#pricing" class="w-full sm:w-auto flex items-center justify-center px-8 py-4 border border-transparent text-base font-medium rounded-xl shadow-lg text-blue-900 bg-white hover:bg-blue-50 sm:px-10 transition-all duration-300 hover:shadow-xl">
Get Started <i class="fas fa-arrow-right ml-2"></i>
</a>
<a href="#" class="w-full sm:w-auto flex items-center justify-center px-8 py-4 border-2 border-white text-base font-medium rounded-xl shadow-lg text-white bg-transparent hover:bg-white hover:bg-opacity-10 sm:px-10 transition-all duration-300 hover:shadow-xl mt-4 sm:mt-0">
<i class="fas fa-question-circle mr-2"></i> Ask a Question
</a>
</div>
</div>
</div>
<div class="absolute -bottom-32 -left-32 w-96 h-96 rounded-full bg-blue-400 opacity-20 filter blur-3xl"></div>
<div class="absolute -bottom-40 -right-40 w-96 h-96 rounded-full bg-purple-400 opacity-20 filter blur-3xl"></div>
</div>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-300">
<div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-12">
<div>
<div class="flex items-center">
<div class="w-10 h-10 rounded-lg bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center shadow-lg">
<i class="fas fa-graduation-cap text-white text-xl"></i>
</div>
<span class="ml-3 text-2xl font-bold text-gradient">ScholarConnect</span>
</div>
<p class="mt-4 text-gray-400">
Connecting students with professors worldwide through advanced AI technology.
</p>
<div class="mt-6 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram text-xl"></i>
</a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-white tracking-wider uppercase">Product</h3>
<ul class="mt-6 space-y-4">
<li><a href="#features" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Features</a></li>
<li><a href="#pricing" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Pricing</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">API</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Integrations</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-white tracking-wider uppercase">Resources</h3>
<ul class="mt-6 space-y-4">
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Documentation</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Guides</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Blog</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Webinars</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-white tracking-wider uppercase">Company</h3>
<ul class="mt-6 space-y-4">
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">About</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Careers</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Contact</a></li>
<li><a href="#" class="text-base text-gray-400 hover:text-white transition-colors duration-300">Partners</a></li>
</ul>
</div>
</div>
<div class="mt-16 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-base text-gray-400">
&copy; 2023 ScholarConnect. All rights reserved.
</p>
<div class="mt-4 md:mt-0 flex space-x-6">
<a href="#" class="text-sm text-gray-400 hover:text-white transition-colors duration-300">Privacy</a>
<a href="#" class="text-sm text-gray-400 hover:text-white transition-colors duration-300">Terms</a>
<a href="#" class="text-sm text-gray-400 hover:text-white transition-colors duration-300">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Smooth scrolling for all anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Search functionality
const searchButton = document.getElementById('search-button');
const searchResults = document.getElementById('search-results');
const resultsList = document.getElementById('results-list');
// Sample professor data
const professors = [
{
name: "Dr. Emily Chen",
university: "Stanford University",
department: "Computer Science",
research: "Artificial Intelligence, Machine Learning",
location: "North America",
image: "https://images.unsplash.com/photo-1573496359142-b8d87734a5cd?ixlib=rb-1.2.1&auto=format&fit=crop&w=256&h=256&q=80"
},
{
name: "Prof. James Wilson",
university: "University of Oxford",
department: "Physics",
research: "Quantum Computing, Theoretical Physics",
location: "Europe",
image: "https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=256&h=256&q=80"
},
{
name: "Dr. Li Wei",
university: "Tsinghua University",
department: "Biomedical Engineering",
research: "Neural Interfaces, Biomedical Devices",
location: "Asia",
image: "https://images.unsplash.com/photo-1544725176-7c40e5a71c5e?ixlib=rb-1.2.1&auto=format&fit=crop&w=256&h=256&q=80"
},
{
name: "Prof. Maria Garcia",
university: "University of Buenos Aires",
department: "Environmental Science",
research: "Climate Change, Sustainability",
location: "South America",
image: "https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-1.2.1&auto=format&fit=crop&w=256&h=256&q=80"
},
{
name: "Dr. Samuel Johnson",
university: "University of Cape Town",
department: "Public Health",
research: "Epidemiology, Global Health",
location: "Africa",
image: "https://images.unsplash.com/photo-1549060279-4e669f7d03a0?ixlib=rb-1.2.1&auto=format&fit=crop&w=256&h=256&q=80"
}
];
searchButton.addEventListener('click', function() {
const subject = document.getElementById('subject').value.toLowerCase();
const location = document.getElementById('location').value;
// Filter professors based on search criteria
let filteredProfessors = professors.filter(professor => {
const matchesSubject = professor.research.toLowerCase().includes(subject) ||
professor.department.toLowerCase().includes(subject);
const matchesLocation = location === '' || professor.location === location;
return matchesSubject && matchesLocation;
});
// Display results
if (filteredProfessors.length > 0) {
resultsList.innerHTML = '';
filteredProfessors.forEach(professor => {
const professorElement = document.createElement('div');
professorElement.className = 'bg-white p-4 rounded-xl shadow-sm flex items-start';
professorElement.innerHTML = `
<img src="${professor.image}" alt="${professor.name}" class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold text-indigo-600">${professor.name}</h4>
<p class="text-sm text-gray-600">${professor.department}, ${professor.university}</p>
<p class="text-xs text-gray-500 mt-1">Research: ${professor.research}</p>
<button class="mt-2 text-xs bg-indigo-50 text-indigo-600 px-3 py-1 rounded-lg hover:bg-indigo-100 transition-colors duration-300">
View Profile <i class="fas fa-external-link-alt ml-1 text-xs"></i>
</button>
</div>
`;
resultsList.appendChild(professorElement);
});
searchResults.classList.remove('hidden');
} else {
resultsList.innerHTML = '<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4"><div class="flex"><div class="flex-shrink-0"><i class="fas fa-exclamation-triangle text-yellow-400"></i></div><div class="ml-3"><p class="text-sm text-yellow-700">No professors found matching your criteria. Try broadening your search.</p></div></div></div>';
searchResults.classList.remove('hidden');
}
});
// Pricing toggle functionality
const monthlyButton = document.getElementById('monthly-button');
const yearlyButton = document.getElementById('yearly-button');
const basicPrice = document.querySelector('.basic-price');
const professionalPrice = document.querySelector('.professional-price');
const institutionalPrice = document.querySelector('.institutional-price');
yearlyButton.addEventListener('click', function() {
yearlyButton.classList.add('bg-white', 'border-gray-200', 'text-gray-900', 'shadow-sm');
yearlyButton.classList.remove('border-transparent', 'text-gray-700');
monthlyButton.classList.remove('bg-white', 'border-gray-200', 'text-gray-900', 'shadow-sm');
monthlyButton.classList.add('border-transparent', 'text-gray-700');
// Update prices for yearly billing (20% discount)
basicPrice.textContent = '$86';
professionalPrice.textContent = '$278';
institutionalPrice.textContent = '$950';
// Update the frequency text
document.querySelectorAll('.text-xl.font-medium.text-gray-500').forEach(el => {
el.textContent = '/year';
});
});
monthlyButton.addEventListener('click', function() {
monthlyButton.classList.add('bg-white', 'border-gray-200', 'text-gray-900', 'shadow-sm');
monthlyButton.classList.remove('border-transparent', 'text-gray-700');
yearlyButton.classList.remove('bg-white', 'border-gray-200', 'text-gray-900', 'shadow-sm');
yearlyButton.classList.add('border-transparent', 'text-gray-700');
// Reset to monthly prices
basicPrice.textContent = '$9';
professionalPrice.textContent = '$29';
institutionalPrice.textContent = '$99';
// Update the frequency text
document.querySelectorAll('.text-xl.font-medium.text-gray-500').forEach(el => {
el.textContent = '/month';
});
});
// Input focus effects
document.querySelector('#subject').addEventListener('focus', function() {
this.parentElement.classList.add('ring-2', 'ring-blue-500', 'rounded-xl');
});
document.querySelector('#subject').addEventListener('blur', function() {
this.parentElement.classList.remove('ring-2', 'ring-blue-500', 'rounded-xl');
});
document.querySelector('#location').addEventListener('focus', function() {
this.parentElement.classList.add('ring-2', 'ring-blue-500', 'rounded-xl');
});
document.querySelector('#location').addEventListener('blur', function() {
this.parentElement.classList.remove('ring-2', 'ring-blue-500', 'rounded-xl');
});
// Card hover effects
document.querySelectorAll('.card-hover').forEach(card => {
card.style.transition = 'all 0.3s ease';
});
// Animate elements when they come into view
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.feature-icon, .testimonial-card, .popular-plan').forEach(el => {
observer.observe(el);
});
</script>
<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=soltaniali/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>