CoolFace
Apppublic

ipageng1/hosthunter-pro

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
index.html913 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>HostHunter Pro - Compare Top WordPress Hosting</title>7    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10    <script src="https://unpkg.com/feather-icons"></script>11    <script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>12    <script>13        tailwind.config = {14            theme: {15                extend: {16                    colors: {17                        primary: '#4F46E5',18                        secondary: '#10B981',19                    }20                }21            }22        }23    </script>24    <style>25        .animate-float {26            animation: float 6s ease-in-out infinite;27        }28        @keyframes float {29            0%, 100% { transform: translateY(0); }30            50% { transform: translateY(-20px); }31        }32        .feature-icon {33            transition: all 0.3s ease;34        }35        .host-card:hover .feature-icon {36            transform: scale(1.1);37            color: #4F46E5;38        }39        .accordion-content {40            max-height: 0;41            overflow: hidden;42            transition: max-height 0.3s ease;43        }44        .accordion.active .accordion-content {45            max-height: 500px;46        }47    </style>48</head>49<body class="bg-gray-50 font-sans">50    <!-- Navigation -->51    <nav class="bg-white shadow-sm sticky top-0 z-50">52<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">53            <div class="flex justify-between h-16">54                <div class="flex items-center">55                    <div class="flex-shrink-0 flex items-center">56                        <i data-feather="globe" class="text-primary h-8 w-8"></i>57                        <span class="ml-2 text-xl font-bold text-gray-900">HostHunter Pro</span>58                    </div>59                </div>60                <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">61                    <a href="#providers" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">Providers</a>62                    <a href="#comparison" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">Comparison</a>63                    <a href="#faq" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">FAQ</a>64                    <a href="#cta" class="bg-primary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-opacity-90 transition">Get Started</a>65                </div>66                <div class="-mr-2 flex items-center md:hidden">67                    <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary">68                        <i data-feather="menu"></i>69                    </button>70                </div>71            </div>72        </div>73    </nav>74    <!-- Hero Section -->75    <section class="bg-gradient-to-br from-blue-50 to-purple-50 py-20 relative">76        <!-- Blog Sidebar -->77        <div class="hidden lg:block absolute right-0 top-0 h-full w-72 bg-white shadow-lg z-10 p-6 overflow-y-auto">78            <h3 class="text-xl font-bold text-gray-900 mb-6 pb-2 border-b border-gray-200">Latest Blog Posts</h3>79            <div class="space-y-6">80                <div class="border-b border-gray-100 pb-6">81                    <a href="#" class="group">82                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">How to Choose the Best WordPress Hosting in 2023</h4>83                        <p class="text-sm text-gray-500 mb-2">Updated: May 15, 2023</p>84                        <p class="text-sm text-gray-600">Learn the key factors to consider when selecting WordPress hosting for your business.</p>85                    </a>86                </div>87                <div class="border-b border-gray-100 pb-6">88                    <a href="#" class="group">89                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">10 Essential WordPress Plugins for Every Website</h4>90                        <p class="text-sm text-gray-500 mb-2">Updated: April 28, 2023</p>91                        <p class="text-sm text-gray-600">Discover the must-have plugins that will supercharge your WordPress site.</p>92                    </a>93                </div>94                <div class="border-b border-gray-100 pb-6">95                    <a href="#" class="group">96                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">Speed Optimization: How We Test Hosting Providers</h4>97                        <p class="text-sm text-gray-500 mb-2">Updated: April 10, 2023</p>98                        <p class="text-sm text-gray-600">Our methodology for testing and comparing hosting performance.</p>99                    </a>100                </div>101                <div>102                    <h4 class="font-bold text-gray-800 mb-4">Popular Topics</h4>103                    <div class="flex flex-wrap gap-2">104                        <a href="#" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-full transition">Performance</a>105                        <a href="#" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-full transition">Security</a>106                        <a href="#" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-full transition">Pricing</a>107                        <a href="#" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-full transition">Migration</a>108                        <a href="#" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-full transition">Plugins</a>109                        <a href="#" class="text-sm bg-gray-100 hover:bg-gray-200 text-gray-800 px-3 py-1 rounded-full transition">Themes</a>110                    </div>111                </div>112            </div>113        </div>114<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">115                <div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center lg:pr-80">116<div class="mb-10 lg:mb-0">117                    <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">118                        <span class="bg-gradient-to-r from-primary to-secondary bg-clip-text text-transparent">Find Your Perfect</span><br>119                        WordPress Hosting120                    </h1>121                    <p class="text-lg text-gray-600 mb-8">We've tested and compared the top WordPress hosting providers so you don't have to. Find the best match for your website needs.</p>122                    <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">123                        <a href="#providers" class="bg-primary hover:bg-opacity-90 text-white px-6 py-3 rounded-md text-center font-medium transition">Compare Providers</a>124                        <a href="#comparison" class="bg-white hover:bg-gray-100 text-gray-800 px-6 py-3 rounded-md text-center font-medium border border-gray-300 transition">View Full Comparison</a>125                    </div>126                    <div class="mt-10 flex items-center space-x-6">127                        <div class="flex items-center">128                            <i data-feather="check-circle" class="text-secondary mr-2"></i>129                            <span class="text-gray-700">Real Performance Data</span>130                        </div>131                        <div class="flex items-center">132                            <i data-feather="check-circle" class="text-secondary mr-2"></i>133                            <span class="text-gray-700">Unbiased Reviews</span>134                        </div>135                    </div>136                </div>137                <div class="relative">138                    <div class="bg-white p-6 rounded-xl shadow-xl animate-float">139                        <div class="flex items-center justify-between mb-4">140                            <h3 class="font-bold text-gray-900">Top Picks This Month</h3>141                            <span class="bg-secondary bg-opacity-10 text-secondary px-2 py-1 text-xs rounded-full">Updated Daily</span>142                        </div>143            <div class="space-y-4 lg:mr-80">144<div class="flex items-center justify-between p-3 bg-blue-50 rounded-lg">145                                <div class="flex items-center">146                                    <img src="http://static.photos/technology/200x200/1" alt="Bluehost" class="w-10 h-10 rounded-full object-cover mr-3">147                                    <span class="font-medium">Bluehost</span>148                                </div>149                                <div class="text-primary font-bold">$2.95/mo</div>150                            </div>151                            <div class="flex items-center justify-between p-3 bg-green-50 rounded-lg">152                                <div class="flex items-center">153                                    <img src="http://static.photos/technology/200x200/2" alt="SiteGround" class="w-10 h-10 rounded-full object-cover mr-3">154                                    <span class="font-medium">SiteGround</span>155                                </div>156                                <div class="text-primary font-bold">$3.99/mo</div>157                            </div>158                            <div class="flex items-center justify-between p-3 bg-purple-50 rounded-lg">159                                <div class="flex items-center">160                                    <img src="http://static.photos/technology/200x200/3" alt="WP Engine" class="w-10 h-10 rounded-full object-cover mr-3">161                                    <span class="font-medium">WP Engine</span>162                                </div>163                                <div class="text-primary font-bold">$25/mo</div>164                            </div>165                            <div class="flex items-center justify-between p-3 bg-pink-50 rounded-lg">166                                <div class="flex items-center">167                                    <img src="http://static.photos/technology/200x200/4" alt="Hostinger" class="w-10 h-10 rounded-full object-cover mr-3">168                                    <span class="font-medium">Hostinger</span>169                                </div>170                                <div class="text-primary font-bold">$1.99/mo</div>171                            </div>172                        </div>173                        <div class="mt-6 text-center">174                            <a href="#providers" class="text-primary hover:text-opacity-80 font-medium text-sm transition">View all 12 providers →</a>175                        </div>176                    </div>177                    <div class="absolute -z-10 w-full h-full bg-primary bg-opacity-5 rounded-xl -bottom-4 -right-4"></div>178                </div>179            </div>180        </div>181    </section>182 183    <!-- Stats Section -->184    <section class="py-16 bg-white">185        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">186            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">187                <div class="text-center">188                    <div class="text-4xl font-bold text-primary mb-2">12+</div>189                    <div class="text-gray-600">Providers Tested</div>190                </div>191                <div class="text-center">192                    <div class="text-4xl font-bold text-primary mb-2">98.7%</div>193                    <div class="text-gray-600">Average Uptime</div>194                </div>195                <div class="text-center">196                    <div class="text-4xl font-bold text-primary mb-2">1.2s</div>197                    <div class="text-gray-600">Fastest Load Time</div>198                </div>199                <div class="text-center">200                    <div class="text-4xl font-bold text-primary mb-2">24/7</div>201                    <div class="text-gray-600">Support Monitoring</div>202                </div>203            </div>204        </div>205    </section>206    <!-- Providers Section -->207    <section id="providers" class="py-20 bg-gray-50 relative">208        <!-- Blog Sidebar -->209        <div class="hidden lg:block absolute right-0 top-0 h-full w-72 bg-white shadow-lg z-10 p-6 overflow-y-auto">210            <h3 class="text-xl font-bold text-gray-900 mb-6 pb-2 border-b border-gray-200">Hosting Guides</h3>211            <div class="space-y-6">212                <div class="border-b border-gray-100 pb-6">213                    <a href="#" class="group">214                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">Bluehost vs SiteGround: Detailed Comparison</h4>215                        <p class="text-sm text-gray-500 mb-2">Updated: May 5, 2023</p>216                        <p class="text-sm text-gray-600">See how these two popular hosts compare in performance, features and pricing.</p>217                    </a>218                </div>219                <div class="border-b border-gray-100 pb-6">220                    <a href="#" class="group">221                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">When to Upgrade from Shared to Managed Hosting</h4>222                        <p class="text-sm text-gray-500 mb-2">Updated: April 22, 2023</p>223                        <p class="text-sm text-gray-600">Signs that your website has outgrown shared hosting.</p>224                    </a>225                </div>226                <div>227                    <h4 class="font-bold text-gray-800 mb-4">Hosting Terminology</h4>228                    <div class="space-y-3">229                        <div>230                            <h5 class="font-medium text-gray-700">SSD Storage</h5>231                            <p class="text-sm text-gray-500">Faster, more reliable storage for your website files</p>232                        </div>233                        <div>234                            <h5 class="font-medium text-gray-700">CDN</h5>235                            <p class="text-sm text-gray-500">Content Delivery Network speeds up global access</p>236                        </div>237                        <div>238                            <h5 class="font-medium text-gray-700">PHP Versions</h5>239                            <p class="text-sm text-gray-500">Newer versions improve performance and security</p>240                        </div>241                    </div>242                </div>243            </div>244        </div>245<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">246            <div class="text-center mb-16">247                <h2 class="text-3xl font-bold text-gray-900 mb-4">Top WordPress Hosting Providers</h2>248                <p class="text-lg text-gray-600 max-w-2xl mx-auto">We've hand-picked the best WordPress hosting services based on performance, features, and customer satisfaction.</p>249            </div>250            251            <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">252                <!-- Bluehost Card -->253                <div class="host-card bg-white rounded-xl shadow-md overflow-hidden transition hover:shadow-lg">254                    <div class="p-6">255                        <div class="flex justify-between items-start mb-4">256                            <img src="http://static.photos/technology/200x200/1" alt="Bluehost" class="w-16 h-16 rounded-lg object-cover">257                            <span class="bg-yellow-100 text-yellow-800 text-xs font-medium px-2.5 py-0.5 rounded">Best Overall</span>258                        </div>259                        <h3 class="text-xl font-bold text-gray-900 mb-2">Bluehost</h3>260                        <div class="flex items-center mb-4">261                            <div class="flex mr-2">262                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>263                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>264                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>265                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>266                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>267                            </div>268                            <span class="text-gray-600 text-sm">4.8 (1,240 reviews)</span>269                        </div>270                        <div class="mb-6">271                            <div class="text-3xl font-bold text-gray-900">$2.95<span class="text-lg text-gray-500 font-normal">/mo</span></div>272                            <div class="text-gray-500 text-sm">Normally $7.99/mo</div>273                        </div>274                        <div class="space-y-3 mb-6">275                            <div class="flex items-center">276                                <i data-feather="zap" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>277                                <span class="text-gray-700">99.9% Uptime</span>278                            </div>279                            <div class="flex items-center">280                                <i data-feather="clock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>281                                <span class="text-gray-700">1.3s Load Time</span>282                            </div>283                            <div class="flex items-center">284                                <i data-feather="lock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>285                                <span class="text-gray-700">Free SSL</span>286                            </div>287                        </div>288                        <a href="#" class="block w-full bg-primary hover:bg-opacity-90 text-white text-center py-3 rounded-md font-medium transition">Get Started</a>289                    </div>290                </div>291 292                <!-- SiteGround Card -->293                <div class="host-card bg-white rounded-xl shadow-md overflow-hidden transition hover:shadow-lg">294                    <div class="p-6">295                        <div class="flex justify-between items-start mb-4">296                            <img src="http://static.photos/technology/200x200/2" alt="SiteGround" class="w-16 h-16 rounded-lg object-cover">297                            <span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">Best Support</span>298                        </div>299                        <h3 class="text-xl font-bold text-gray-900 mb-2">SiteGround</h3>300                        <div class="flex items-center mb-4">301                            <div class="flex mr-2">302                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>303                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>304                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>305                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>306                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>307                            </div>308                            <span class="text-gray-600 text-sm">4.9 (980 reviews)</span>309                        </div>310                        <div class="mb-6">311                            <div class="text-3xl font-bold text-gray-900">$3.99<span class="text-lg text-gray-500 font-normal">/mo</span></div>312                            <div class="text-gray-500 text-sm">Normally $11.95/mo</div>313                        </div>314                        <div class="space-y-3 mb-6">315                            <div class="flex items-center">316                                <i data-feather="zap" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>317                                <span class="text-gray-700">99.98% Uptime</span>318                            </div>319                            <div class="flex items-center">320                                <i data-feather="clock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>321                                <span class="text-gray-700">1.1s Load Time</span>322                            </div>323                            <div class="flex items-center">324                                <i data-feather="lock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>325                                <span class="text-gray-700">Free SSL & CDN</span>326                            </div>327                        </div>328                        <a href="#" class="block w-full bg-primary hover:bg-opacity-90 text-white text-center py-3 rounded-md font-medium transition">Get Started</a>329                    </div>330                </div>331 332                <!-- WP Engine Card -->333                <div class="host-card bg-white rounded-xl shadow-md overflow-hidden transition hover:shadow-lg">334                    <div class="p-6">335                        <div class="flex justify-between items-start mb-4">336                            <img src="http://static.photos/technology/200x200/3" alt="WP Engine" class="w-16 h-16 rounded-lg object-cover">337                            <span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">Best Premium</span>338                        </div>339                        <h3 class="text-xl font-bold text-gray-900 mb-2">WP Engine</h3>340                        <div class="flex items-center mb-4">341                            <div class="flex mr-2">342                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>343                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>344                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>345                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>346                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>347                            </div>348                            <span class="text-gray-600 text-sm">4.7 (850 reviews)</span>349                        </div>350                        <div class="mb-6">351                            <div class="text-3xl font-bold text-gray-900">$25<span class="text-lg text-gray-500 font-normal">/mo</span></div>352                            <div class="text-gray-500 text-sm">Starts at 25,000 visits</div>353                        </div>354                        <div class="space-y-3 mb-6">355                            <div class="flex items-center">356                                <i data-feather="zap" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>357                                <span class="text-gray-700">99.99% Uptime</span>358                            </div>359                            <div class="flex items-center">360                                <i data-feather="clock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>361                                <span class="text-gray-700">0.8s Load Time</span>362                            </div>363                            <div class="flex items-center">364                                <i data-feather="shield" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>365                                <span class="text-gray-700">Enterprise Security</span>366                            </div>367                        </div>368                        <a href="#" class="block w-full bg-primary hover:bg-opacity-90 text-white text-center py-3 rounded-md font-medium transition">Get Started</a>369                    </div>370                </div>371 372                <!-- Hostinger Card -->373                <div class="host-card bg-white rounded-xl shadow-md overflow-hidden transition hover:shadow-lg">374                    <div class="p-6">375                        <div class="flex justify-between items-start mb-4">376                            <img src="http://static.photos/technology/200x200/4" alt="Hostinger" class="w-16 h-16 rounded-lg object-cover">377                            <span class="bg-pink-100 text-pink-800 text-xs font-medium px-2.5 py-0.5 rounded">Best Budget</span>378                        </div>379                        <h3 class="text-xl font-bold text-gray-900 mb-2">Hostinger</h3>380                        <div class="flex items-center mb-4">381                            <div class="flex mr-2">382                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>383                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>384                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>385                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>386                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current opacity-50"></i>387                            </div>388                            <span class="text-gray-600 text-sm">4.5 (1,520 reviews)</span>389                        </div>390                        <div class="mb-6">391                            <div class="text-3xl font-bold text-gray-900">$1.99<span class="text-lg text-gray-500 font-normal">/mo</span></div>392                            <div class="text-gray-500 text-sm">Normally $9.99/mo</div>393                        </div>394                        <div class="space-y-3 mb-6">395                            <div class="flex items-center">396                                <i data-feather="zap" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>397                                <span class="text-gray-700">99.9% Uptime</span>398                            </div>399                            <div class="flex items-center">400                                <i data-feather="clock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>401                                <span class="text-gray-700">1.5s Load Time</span>402                            </div>403                            <div class="flex items-center">404                                <i data-feather="lock" class="feature-icon text-gray-400 mr-2 w-5 h-5"></i>405                                <span class="text-gray-700">Free SSL</span>406                            </div>407                        </div>408                        <a href="#" class="block w-full bg-primary hover:bg-opacity-90 text-white text-center py-3 rounded-md font-medium transition">Get Started</a>409                    </div>410                </div>411            </div>412        </div>413    </section>414    <!-- Comparison Section -->415    <section id="comparison" class="py-20 bg-white relative">416        <!-- Blog Sidebar -->417        <div class="hidden lg:block absolute right-0 top-0 h-full w-72 bg-white shadow-lg z-10 p-6 overflow-y-auto">418            <h3 class="text-xl font-bold text-gray-900 mb-6 pb-2 border-b border-gray-200">Performance Tips</h3>419            <div class="space-y-6">420                <div class="border-b border-gray-100 pb-6">421                    <a href="#" class="group">422                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">7 Ways to Speed Up Your WordPress Site</h4>423                        <p class="text-sm text-gray-500 mb-2">Updated: May 1, 2023</p>424                        <p class="text-sm text-gray-600">Actionable tips to improve your website loading times.</p>425                    </a>426                </div>427                <div class="border-b border-gray-100 pb-6">428                    <a href="#" class="group">429                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">Image Optimization: Complete Guide</h4>430                        <p class="text-sm text-gray-500 mb-2">Updated: April 18, 2023</p>431                        <p class="text-sm text-gray-600">How to reduce image sizes without losing quality.</p>432                    </a>433                </div>434                <div>435                    <h4 class="font-bold text-gray-800 mb-4">Quick Wins</h4>436                    <div class="space-y-2">437                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">438                            <i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Enable Caching439                        </a>440                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">441                            <i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Use a CDN442                        </a>443                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">444                            <i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Optimize Database445                        </a>446                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">447                            <i data-feather="chevron-right" class="w-4 h-4 mr-2"></i> Minify CSS/JS448                        </a>449                    </div>450                </div>451            </div>452        </div>453<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">454            <div class="text-center mb-16">455                <h2 class="text-3xl font-bold text-gray-900 mb-4">Detailed Feature Comparison</h2>456                <p class="text-lg text-gray-600 max-w-2xl mx-auto">Compare all the important features side by side to make the best decision for your needs.</p>457            </div>458            <div class="overflow-x-auto lg:mr-80">459<table class="w-full">460                    <thead>461                        <tr class="border-b border-gray-200">462                            <th class="py-4 px-6 text-left text-gray-700 font-medium">Feature</th>463                            <th class="py-4 px-6 text-center text-gray-700 font-medium">Bluehost</th>464                            <th class="py-4 px-6 text-center text-gray-700 font-medium">SiteGround</th>465                            <th class="py-4 px-6 text-center text-gray-700 font-medium">WP Engine</th>466                            <th class="py-4 px-6 text-center text-gray-700 font-medium">Hostinger</th>467                        </tr>468                    </thead>469                    <tbody class="divide-y divide-gray-200">470                        <tr>471                            <td class="py-4 px-6 text-left text-gray-700">Starting Price</td>472                            <td class="py-4 px-6 text-center font-medium text-primary">$2.95/mo</td>473                            <td class="py-4 px-6 text-center">$3.99/mo</td>474                            <td class="py-4 px-6 text-center">$25/mo</td>475                            <td class="py-4 px-6 text-center">$1.99/mo</td>476                        </tr>477                        <tr>478                            <td class="py-4 px-6 text-left text-gray-700">Uptime Guarantee</td>479                            <td class="py-4 px-6 text-center">99.9%</td>480                            <td class="py-4 px-6 text-center font-medium text-primary">99.98%</td>481                            <td class="py-4 px-6 text-center font-medium text-primary">99.99%</td>482                            <td class="py-4 px-6 text-center">99.9%</td>483                        </tr>484                        <tr>485                            <td class="py-4 px-6 text-left text-gray-700">Avg. Load Time</td>486                            <td class="py-4 px-6 text-center">1.3s</td>487                            <td class="py-4 px-6 text-center font-medium text-primary">1.1s</td>488                            <td class="py-4 px-6 text-center font-medium text-primary">0.8s</td>489                            <td class="py-4 px-6 text-center">1.5s</td>490                        </tr>491                        <tr>492                            <td class="py-4 px-6 text-left text-gray-700">Free SSL</td>493                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>494                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>495                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>496                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>497                        </tr>498                        <tr>499                            <td class="py-4 px-6 text-left text-gray-700">Free Domain</td>500                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>501                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>502                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>503                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>504                        </tr>505                        <tr>506                            <td class="py-4 px-6 text-left text-gray-700">Free CDN</td>507                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>508                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>509                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>510                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>511                        </tr>512                        <tr>513                            <td class="py-4 px-6 text-left text-gray-700">Daily Backups</td>514                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>515                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>516                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>517                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>518                        </tr>519                        <tr>520                            <td class="py-4 px-6 text-left text-gray-700">Staging Area</td>521                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>522                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>523                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>524                            <td class="py-4 px-6 text-center"><i data-feather="x" class="text-red-500 mx-auto"></i></td>525                        </tr>526                        <tr>527                            <td class="py-4 px-6 text-left text-gray-700">24/7 Support</td>528                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>529                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>530                            <td class="py-4 px-6 text-center font-medium text-primary"><i data-feather="check" class="text-green-500 mx-auto"></i></td>531                            <td class="py-4 px-6 text-center"><i data-feather="check" class="text-green-500 mx-auto"></i></td>532                        </tr>533                        <tr>534                            <td class="py-4 px-6 text-left text-gray-700">Money-back Guarantee</td>535                            <td class="py-4 px-6 text-center">30 days</td>536                            <td class="py-4 px-6 text-center">30 days</td>537                            <td class="py-4 px-6 text-center font-medium text-primary">60 days</td>538                            <td class="py-4 px-6 text-center">30 days</td>539                        </tr>540                    </tbody>541                </table>542            </div>543 544            <div class="mt-12 text-center">545                <a href="#cta" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-primary hover:bg-opacity-90 transition">Choose Your Hosting</a>546            </div>547        </div>548    </section>549    <!-- Testimonials Section -->550    <section class="py-20 bg-gray-50 relative">551        <!-- Blog Sidebar -->552        <div class="hidden lg:block absolute right-0 top-0 h-full w-72 bg-white shadow-lg z-10 p-6 overflow-y-auto">553            <h3 class="text-xl font-bold text-gray-900 mb-6 pb-2 border-b border-gray-200">User Stories</h3>554            <div class="space-y-6">555                <div class="border-b border-gray-100 pb-6">556                    <a href="#" class="group">557                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">How I Increased Conversions by 45% with Faster Hosting</h4>558                        <p class="text-sm text-gray-500 mb-2">Updated: April 30, 2023</p>559                        <p class="text-sm text-gray-600">Real case study showing the impact of hosting on business metrics.</p>560                    </a>561                </div>562                <div class="border-b border-gray-100 pb-6">563                    <a href="#" class="group">564                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">Migrating from Shared to VPS: A Developer's Journey</h4>565                        <p class="text-sm text-gray-500 mb-2">Updated: April 15, 2023</p>566                        <p class="text-sm text-gray-600">Learn when and how to upgrade your hosting plan.</p>567                    </a>568                </div>569                <div>570                    <h4 class="font-bold text-gray-800 mb-4">Community Poll</h4>571                    <p class="text-sm text-gray-600 mb-3">Which hosting feature is most important to you?</p>572                    <div class="space-y-2">573                        <div class="flex items-center">574                            <input type="radio" id="poll-speed" name="poll" class="mr-2">575                            <label for="poll-speed" class="text-sm text-gray-700">Speed & Performance</label>576                        </div>577                        <div class="flex items-center">578                            <input type="radio" id="poll-support" name="poll" class="mr-2">579                            <label for="poll-support" class="text-sm text-gray-700">Customer Support</label>580                        </div>581                        <div class="flex items-center">582                            <input type="radio" id="poll-price" name="poll" class="mr-2">583                            <label for="poll-price" class="text-sm text-gray-700">Price Value</label>584                        </div>585                        <div class="flex items-center">586                            <input type="radio" id="poll-features" name="poll" class="mr-2">587                            <label for="poll-features" class="text-sm text-gray-700">Advanced Features</label>588                        </div>589                    </div>590                </div>591            </div>592        </div>593<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">594            <div class="text-center mb-16">595                <h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Users Say</h2>596                <p class="text-lg text-gray-600 max-w-2xl mx-auto">Don't just take our word for it. Here's what people are saying about these hosting providers.</p>597            </div>598 599            <div class="grid md:grid-cols-3 gap-8">600                <div class="bg-white p-8 rounded-xl shadow-sm">601                    <div class="flex items-center mb-4">602                        <img src="http://static.photos/people/200x200/1" alt="User" class="w-12 h-12 rounded-full object-cover mr-4">603                        <div>604                            <h4 class="font-bold text-gray-900">Sarah Johnson</h4>605                            <div class="flex">606                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>607                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>608                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>609                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>610                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>611                            </div>612                        </div>613                    </div>614                    <p class="text-gray-600 mb-4">"Bluehost made setting up my first WordPress site incredibly easy. Their one-click installer worked perfectly and their customer support helped me with all my beginner questions."</p>615                    <div class="flex items-center text-sm text-gray-500">616                        <i data-feather="calendar" class="w-4 h-4 mr-1"></i>617                        <span>Posted 2 months ago</span>618                    </div>619                </div>620 621                <div class="bg-white p-8 rounded-xl shadow-sm">622                    <div class="flex items-center mb-4">623                        <img src="http://static.photos/people/200x200/2" alt="User" class="w-12 h-12 rounded-full object-cover mr-4">624                        <div>625                            <h4 class="font-bold text-gray-900">Michael Chen</h4>626                            <div class="flex">627                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>628                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>629                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>630                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>631                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>632                            </div>633                        </div>634                    </div>635                    <p class="text-gray-600 mb-4">"SiteGround's customer support is phenomenal. I had a technical issue at 2 AM and their live chat agent resolved it within minutes. Their speed optimization tools are also top-notch."</p>636                    <div class="flex items-center text-sm text-gray-500">637                        <i data-feather="calendar" class="w-4 h-4 mr-1"></i>638                        <span>Posted 1 month ago</span>639                    </div>640                </div>641 642                <div class="bg-white p-8 rounded-xl shadow-sm">643                    <div class="flex items-center mb-4">644                        <img src="http://static.photos/people/200x200/3" alt="User" class="w-12 h-12 rounded-full object-cover mr-4">645                        <div>646                            <h4 class="font-bold text-gray-900">Emily Rodriguez</h4>647                            <div class="flex">648                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>649                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>650                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>651                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>652                                <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i>653                            </div>654                        </div>655                    </div>656                    <p class="text-gray-600 mb-4">"WP Engine is worth every penny for my eCommerce site. After switching, my load times dropped by 60% and conversions increased. Their security features give me peace of mind."</p>657                    <div class="flex items-center text-sm text-gray-500">658                        <i data-feather="calendar" class="w-4 h-4 mr-1"></i>659                        <span>Posted 3 weeks ago</span>660                    </div>661                </div>662            </div>663        </div>664    </section>665    <!-- FAQ Section -->666    <section id="faq" class="py-20 bg-white relative">667        <!-- Blog Sidebar -->668        <div class="hidden lg:block absolute right-0 top-0 h-full w-72 bg-white shadow-lg z-10 p-6 overflow-y-auto">669            <h3 class="text-xl font-bold text-gray-900 mb-6 pb-2 border-b border-gray-200">Help Resources</h3>670            <div class="space-y-6">671                <div class="border-b border-gray-100 pb-6">672                    <a href="#" class="group">673                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">WordPress Hosting Troubleshooting Guide</h4>674                        <p class="text-sm text-gray-500 mb-2">Updated: May 10, 2023</p>675                        <p class="text-sm text-gray-600">Solutions to common WordPress hosting issues and errors.</p>676                    </a>677                </div>678                <div class="border-b border-gray-100 pb-6">679                    <a href="#" class="group">680                        <h4 class="font-bold text-gray-800 group-hover:text-primary transition mb-2">How to Contact Hosting Support Effectively</h4>681                        <p class="text-sm text-gray-500 mb-2">Updated: April 25, 2023</p>682                        <p class="text-sm text-gray-600">Get faster resolutions with these support ticket best practices.</p>683                    </a>684                </div>685                <div>686                    <h4 class="font-bold text-gray-800 mb-4">Recommended Tools</h4>687                    <div class="space-y-2">688                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">689                            <i data-feather="tool" class="w-4 h-4 mr-2"></i> Uptime Monitoring690                        </a>691                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">692                            <i data-feather="tool" class="w-4 h-4 mr-2"></i> Speed Testing693                        </a>694                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">695                            <i data-feather="tool" class="w-4 h-4 mr-2"></i> Security Scanners696                        </a>697                        <a href="#" class="flex items-center text-sm text-gray-600 hover:text-primary transition">698                            <i data-feather="tool" class="w-4 h-4 mr-2"></i> Migration Plugins699                        </a>700                    </div>701                </div>702            </div>703        </div>704<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">705            <div class="text-center mb-16">706                <h2 class="text-3xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2>707                <p class="text-lg text-gray-600">Find quick answers to common questions about WordPress hosting.</p>708            </div>709 710            <div class="space-y-4">711                <div class="accordion border border-gray-200 rounded-lg overflow-hidden">712                    <button class="accordion-btn w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 transition">713                        <span class="text-lg font-medium text-gray-900">What's the difference between shared and managed WordPress hosting?</span>714                        <i data-feather="chevron-down" class="text-gray-500 transition-transform duration-300"></i>715                    </button>716                    <div class="accordion-content px-6 pb-0">717                        <div class="pb-6 text-gray-600">718                            <p class="mb-4">Shared hosting means your site shares server resources with other websites, which is more affordable but can lead to slower performance if other sites on the server get high traffic.</p>719                            <p>Managed WordPress hosting is optimized specifically for WordPress with features like automatic updates, enhanced security, expert support, and often includes performance-boosting technologies like built-in caching and CDN.</p>720                        </div>721                    </div>722                </div>723 724                <div class="accordion border border-gray-200 rounded-lg overflow-hidden">725                    <button class="accordion-btn w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 transition">726                        <span class="text-lg font-medium text-gray-900">How important is server location for my WordPress site?</span>727                        <i data-feather="chevron-down" class="text-gray-500 transition-transform duration-300"></i>728                    </button>729                    <div class="accordion-content px-6 pb-0">730                        <div class="pb-6 text-gray-600">731                            <p class="mb-4">Server location impacts your site's loading speed for visitors. The closer your server is to your target audience, the faster your site will load for them.</p>732                            <p>Many hosts now offer multiple server locations or content delivery networks (CDNs) that distribute your content globally to minimize this effect. For most businesses targeting a specific country or region, choosing a host with servers in that area is ideal.</p>733                        </div>734                    </div>735                </div>736 737                <div class="accordion border border-gray-200 rounded-lg overflow-hidden">738                    <button class="accordion-btn w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 transition">739                        <span class="text-lg font-medium text-gray-900">Can I switch WordPress hosts later if I'm not satisfied?</span>740                        <i data-feather="chevron-down" class="text-gray-500 transition-transform duration-300"></i>741                    </button>742                    <div class="accordion-content px-6 pb-0">743                        <div class="pb-6 text-gray-600">744                            <p class="mb-4">Yes, you can absolutely switch WordPress hosts if you're not satisfied. Most reputable hosts offer free migration services to help you move your site.</p>745                            <p>The process typically involves backing up your site, purchasing new hosting, then either using the new host's migration tool or hiring their team to handle the transfer. Many hosts also offer money-back guarantees (typically 30-60 days) if you're unhappy with the service.</p>746                        </div>747                    </div>748                </div>749 750                <div class="accordion border border-gray-200 rounded-lg overflow-hidden">751                    <button class="accordion-btn w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 transition">752                        <span class="text-lg font-medium text-gray-900">What security features should I look for in WordPress hosting?</span>753                        <i data-feather="chevron-down" class="text-gray-500 transition-transform duration-300"></i>754                    </button>755                    <div class="accordion-content px-6 pb-0">756                        <div class="pb-6 text-gray-600">757                            <p>Essential security features include:</p>758                            <ul class="list-disc pl-5 mt-2 space-y-1">759                                <li>Free SSL certificates for encrypted connections</li>760                                <li>Automatic WordPress core updates</li>761                                <li>Web application firewall (WAF) protection</li>762                                <li>Regular malware scanning and removal</li>763                                <li>DDoS protection</li>764                                <li>Daily automatic backups</li>765                                <li>Two-factor authentication for hosting accounts</li>766                            </ul>767                        </div>768                    </div>769                </div>770 771                <div class="accordion border border-gray-200 rounded-lg overflow-hidden">772                    <button class="accordion-btn w-full flex justify-between items-center p-6 text-left hover:bg-gray-50 transition">773                        <span class="text-lg font-medium text-gray-900">How much traffic can shared WordPress hosting handle?</span>774                        <i data-feather="chevron-down" class="text-gray-500 transition-transform duration-300"></i>775                    </button>776                    <div class="accordion-content px-6 pb-0">777                        <div class="pb-6 text-gray-600">778                            <p class="mb-4">Entry-level shared hosting plans typically handle 10,000-100,000 monthly visitors, depending on how optimized your site is. If you exceed these limits, you may need to upgrade to a higher-tier shared plan, VPS, or managed WordPress hosting.</p>779                            <p>Factors that affect capacity include:</p>780                            <ul class="list-disc pl-5 mt-2 space-y-1">781                                <li>Number of plugins installed</li>782                                <li>Quality of your theme</li>783                                <li>Image optimization</li>784                                <li>Caching implementation</li>785                                <li>Whether you're using a CDN</li>786                            </ul>787                        </div>788                    </div>789                </div>790            </div>791        </div>792    </section>793    <!-- CTA Section -->794    <section id="cta" class="py-20 bg-gradient-to-r from-primary to-secondary relative">795<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">796            <h2 class="text-3xl font-bold text-white mb-6">Ready to Launch Your WordPress Site?</h2>797            <p class="text-xl text-white opacity-90 mb-10 max-w-3xl mx-auto">Choose from our top-rated WordPress hosting providers and get your website online today with our exclusive discounts.</p>798            <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4 lg:pr-80">799<a href="#" class="bg-white text-primary hover:bg-gray-100 px-8 py-4 rounded-md text-lg font-bold transition">Get Started Now</a>800                <a href="#providers" class="bg-transparent border-2 border-white text-white hover:bg-white hover:bg-opacity-10 px-8 py-4 rounded-md text-lg font-bold transition">Compare All Providers</a>801            </div>802        </div>803    </section>804 805    <!-- Footer -->806    <footer class="bg-gray-900 text-white py-12">807        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">808            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">809                <div>810                    <h3 class="text-lg font-bold mb-4">HostHunter Pro</h3>811                    <p class="text-gray-400">Your trusted guide to finding the perfect WordPress hosting solution.</p>812                </div>813                <div>814                    <h4 class="text-sm font-bold text-gray-300 uppercase tracking-wider mb-4">Providers</h4>815                    <ul class="space-y-2">816                        <li><a href="#" class="text-gray-400 hover:text-white transition">Bluehost</a></li>817                        <li><a href="#" class="text-gray-400 hover:text-white transition">SiteGround</a></li>818                        <li><a href="#" class="text-gray-400 hover:text-white transition">WP Engine</a></li>819                        <li><a href="#" class="text-gray-400 hover:text-white transition">Hostinger</a></li>820                    </ul>821                </div>822                <div>823                    <h4 class="text-sm font-bold text-gray-300 uppercase tracking-wider mb-4">Resources</h4>824                    <ul class="space-y-2">825                        <li><a href="#" class="text-gray-400 hover:text-white transition">WordPress Guides</a></li>826                        <li><a href="#" class="text-gray-400 hover:text-white transition">Hosting Reviews</a></li>827                        <li><a href="#" class="text-gray-400 hover:text-white transition">Performance Tests</a></li>828                        <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>829                    </ul>830                </div>831                <div>832                    <h4 class="text-sm font-bold text-gray-300 uppercase tracking-wider mb-4">Legal</h4>833                    <ul class="space-y-2">834                        <li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>835                        <li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>836                        <li><a href="#" class="text-gray-400 hover:text-white transition">Affiliate Disclosure</a></li>837                        <li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>838                    </ul>839                </div>840            </div>841            <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">842                <p class="text-gray-400 text-sm">© 2023 HostHunter Pro. All rights reserved.</p>843                <div class="flex space-x-6 mt-4 md:mt-0">844                    <a href="#" class="text-gray-400 hover:text-white transition">845                        <i data-feather="twitter"></i>846                    </a>847                    <a href="#" class="text-gray-400 hover:text-white transition">848                        <i data-feather="facebook"></i>849                    </a>850                    <a href="#" class="text-gray-400 hover:text-white transition">851                        <i data-feather="instagram"></i>852                    </a>853                    <a href="#" class="text-gray-400 hover:text-white transition">854                        <i data-feather="linkedin"></i>855                    </a>856                </div>857            </div>858        </div>859    </footer>860 861    <script>862        // Accordion functionality863        document.querySelectorAll('.accordion-btn').forEach(button => {864            button.addEventListener('click', () => {865                const accordion = button.closest('.accordion');866                const content = accordion.querySelector('.accordion-content');867                const icon = button.querySelector('i');868 869                accordion.classList.toggle('active');870                871                if(accordion.classList.contains('active')) {872                    icon.style.transform = 'rotate(180deg)';873                } else {874                    icon.style.transform = 'rotate(0deg)';875                }876            });877        });878 879        // Smooth scrolling for anchor links880        document.querySelectorAll('a[href^="#"]').forEach(anchor => {881            anchor.addEventListener('click', function (e) {882                e.preventDefault();883                document.querySelector(this.getAttribute('href')).scrollIntoView({884                    behavior: 'smooth'885                });886            });887        });888        // Close mobile menu when clicking a link889        document.querySelectorAll('nav a').forEach(link => {890            link.addEventListener('click', () => {891                const mobileMenu = document.querySelector('[aria-label="Mobile menu"]');892                if (mobileMenu && mobileMenu.classList.contains('hidden') === false) {893                    mobileMenu.classList.add('hidden');894                }895            });896        });897 898        // Initialize Feather Icons899feather.replace();900 901        // Floating animation for hero card902        anime({903            targets: '.animate-float',904            translateY: [-10, 10],905            duration: 3000,906            direction: 'alternate',907            loop: true,908            easing: 'easeInOutSine'909        });910    </script>911</body>912</html>913