Amrio14 | AI-Powered Digital Growth Agency
/* =========================================
CSS VARIABLES & RESET
========================================= */
:root {
/* Brand Colors */
--bg-body: #050507;
--bg-card: rgba(255, 255, 255, 0.03);
--bg-card-hover: rgba(255, 255, 255, 0.06);
--border-color: rgba(255, 255, 255, 0.1);
--text-main: #ffffff;
--text-muted: #a1a1aa;
/* Gradients */
--gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
--gradient-text: linear-gradient(90deg, #ffffff 0%, #a5b4fc 100%);
--gradient-glow: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15), transparent 60%);
/* UI Elements */
--radius-md: 12px;
--radius-lg: 24px;
--radius-pill: 50px;
--nav-height: 80px;
--container-width: 1200px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-body);
color: var(--text-main);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
color: inherit;
transition: 0.3s ease;
}
ul {
list-style: none;
}
img {
max-width: 100%;
display: block;
}
/* =========================================
UTILITY CLASSES & LAYOUT
========================================= */
.container {
width: 90%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 1rem;
}
.section-padding {
padding: 100px 0;
}
.text-gradient {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.grid {
display: grid;
gap: 2rem;
}
/* Animations */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* Buttons */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
font-weight: 600;
border-radius: var(--radius-pill);
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
border: none;
}
.btn-primary {
background: var(--gradient-primary);
color: white;
box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.1);
color: white;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-2px);
}
/* =========================================
HEADER
========================================= */
header {
height: var(--nav-height);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(5, 5, 7, 0.8);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border-color);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
}
.logo {
font-size: 1.5rem;
font-weight: 800;
letter-spacing: -0.02em;
color: white;
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo span {
color: #a855f7;
}
nav ul {
display: flex;
gap: 2.5rem;
}
nav a {
font-size: 0.95rem;
color: var(--text-muted);
font-weight: 500;
}
nav a:hover {
color: white;
}
.mobile-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}
/* =========================================
HERO SECTION
========================================= */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding-top: var(--nav-height);
overflow: hidden;
}
/* Ambient Glow Background */
.hero::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
height: 100%;
background: var(--gradient-glow);
z-index: -1;
pointer-events: none;
}
.hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: clamp(3rem, 5vw, 4.5rem);
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}
.hero p {
font-size: clamp(1.1rem, 2vw, 1.25rem);
color: var(--text-muted);
margin-bottom: 2.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
}
/* =========================================
ABOUT SECTION
========================================= */
.about-grid {
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 4rem;
}
.section-header {
margin-bottom: 1rem;
}
.section-tag {
text-transform: uppercase;
font-size: 0.85rem;
letter-spacing: 0.1em;
color: #a855f7;
font-weight: 600;
margin-bottom: 1rem;
display: block;
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.about-text p {
color: var(--text-muted);
margin-bottom: 1.5rem;
}
.stat-row {
display: flex;
gap: 3rem;
margin-top: 2rem;
}
.stat h4 {
font-size: 2.5rem;
font-weight: 700;
color: white;
}
.stat span {
color: var(--text-muted);
font-size: 0.9rem;
}
/* About Visual */
.about-visual {
position: relative;
}
.about-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-lg);
padding: 2rem;
backdrop-filter: blur(10px);
}
/* =========================================
SERVICES SECTION
========================================= */
.services-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
margin-top: 3rem;
}
.service-card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 2.5rem 2rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.service-card:hover {
background: var(--bg-card-hover);
border-color: rgba(168, 85, 247, 0.3);
transform: translateY(-5px);
}
.service-icon {
width: 50px;
height: 50px;
background: rgba(168, 85, 247, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #a855f7;
font-size: 1.5rem;
}
.service-card h3 {
font-size: 1.25rem;
font-weight: 600;
}
.service-card p {
color: var(--text-muted);
font-size: 0.95rem;
}
/* =========================================
WHY CHOOSE US
========================================= */
.features-wrapper {
background: rgba(255,255,255,0.02);
border-radius: var(--radius-lg);
border: 1px solid var(--border-color);
padding: 4rem 2rem;
}
.feature-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
}
.feature-item h3 {
margin: 1rem 0 0.5rem;
font-size: 1.1rem;
}
.feature-item p {
color: var(--text-muted);
font-size: 0.9rem;
}
/* =========================================
PORTFOLIO
========================================= */
.portfolio-grid {
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 1.5rem;
margin-top: 3rem;
}
.portfolio-item {
position: relative;
border-radius: var(--radius-md);
overflow: hidden;
aspect-ratio: 4/3;
cursor: pointer;
}
.portfolio-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.portfolio-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 2rem;
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
}
.portfolio-item:hover img {
transform: scale(1.05);
}
.portfolio-item:hover .portfolio-overlay {
opacity: 1;
transform: translateY(0);
}
/* =========================================
CTA SECTION
========================================= */
.cta-section {
text-align: center;
background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}
/* =========================================
CONTACT SECTION
========================================= */
.contact-container {
grid-template-columns: 1fr 1fr;
gap: 4rem;
}
.contact-info-card {
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.contact-icon {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.05);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #a855f7;
flex-shrink: 0;
}
.contact-form {
background: var(--bg-card);
padding: 2.5rem;
border-radius: var(--radius-lg);
border: 1px solid var(--border-color);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-label {
display: block;
margin-bottom: 0.5rem;
font-size: 0.9rem;
color: var(--text-muted);
}
.form-input, .form-textarea {
width: 100%;
padding: 1rem;
background: rgba(0,0,0,0.3);
border: 1px solid var(--border-color);
border-radius: 8px;
color: white;
font-family: inherit;
transition: 0.3s;
}
.form-input:focus, .form-textarea:focus {
outline: none;
border-color: #a855f7;
background: rgba(0,0,0,0.5);
}
/* =========================================
FOOTER
========================================= */
footer {
background: #020203;
padding: 4rem 0 2rem;
border-top: 1px solid var(--border-color);
text-align: center;
}
.footer-logo {
font-size: 1.8rem;
font-weight: 800;
color: white;
margin-bottom: 1rem;
display: inline-block;
}
.footer-tagline {
color: var(--text-muted);
margin-bottom: 2rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-bottom: 3rem;
}
.social-links a {
color: var(--text-muted);
font-size: 1.2rem;
}
.social-links a:hover {
color: white;
}
.copyright {
color: #555;
font-size: 0.85rem;
border-top: 1px solid rgba(255,255,255,0.05);
padding-top: 2rem;
}
/* =========================================
CUSTOM TOAST NOTIFICATION
========================================= */
.toast {
position: fixed;
bottom: 30px;
right: 30px;
background: white;
color: #050507;
padding: 1rem 1.5rem;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
display: flex;
align-items: center;
gap: 10px;
transform: translateY(100px);
opacity: 0;
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
z-index: 2000;
font-weight: 500;
}
.toast.show {
transform: translateY(0);
opacity: 1;
}
.toast-icon {
color: #10b981; /* Green */
}
/* =========================================
RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
.about-grid, .contact-container {
grid-template-columns: 1fr;
}
.about-visual {
order: -1;
margin-bottom: 2rem;
}
}
@media (max-width: 768px) {
:root {
--nav-height: 70px;
}
.mobile-toggle {
display: block;
z-index: 1001;
}
nav {
position: fixed;
top: 0;
right: -100%;
width: 80%;
height: 100vh;
background: #0a0a0c;
padding-top: var(--nav-height);
transition: 0.4s ease;
border-left: 1px solid var(--border-color);
display: flex;
align-items: center;
justify-content: center;
}
nav.active {
right: 0;
}
nav ul {
flex-direction: column;
align-items: center;
gap: 2rem;
}
.hero h1 {
font-size: 2.5rem;
}
.hero-buttons {
flex-direction: column;
}
.btn {
width: 100%;
}
}
AI-Powered Growth
Elevate Your Brand with
Intelligent Digital Solutions
We combine cutting-edge AI automation with world-class design to scale your business, optimize conversions, and dominate your market.
Who We Are
The Future of Digital Agency is Here
Amrio14 isn't just a service provider; we are your strategic growth partners. We leverage artificial intelligence to analyze market trends and user behavior, creating data-driven campaigns that deliver real ROI.
From custom web development to automated funnels, our team of experts ensures your business stays ahead of the curve in a rapidly evolving digital landscape.
150+
Projects Delivered
98%
Client Satisfaction
Our Approach
-
Data-Driven Strategy
-
AI-Powered Automation
-
Premium Design Standards
-
24/7 Dedicated Support
Shopify Development
Custom high-converting e-commerce stores built on Shopify, optimized for sales and user experience.
Website Design & Dev
Stunning, responsive websites that captivate your audience and communicate your brand value instantly.
Digital Marketing
Strategic campaigns across Facebook, Instagram, and WhatsApp to generate high-quality leads.
Video Ads & Content
Engaging video content and ad creatives that stop the scroll and drive conversions.
AI Automation & Chatbots
Streamline customer support and sales with intelligent AI chatbots and workflow automation.
Funnels & Landing Pages
High-performance sales funnels designed to turn cold traffic into paying customers.
⚡
Fast Delivery
We value your time. Rapid turnarounds without compromising quality.
🤖
AI-First Approach
We utilize the latest AI tools to give you a competitive edge.
🎯
Conversion Focus
Beautiful design is good, but design that sells is better.
🤝
Transparent
No hidden fees. Clear communication at every stage of the project.
Luxe Fashion Store
Shopify Development & Branding
FinTech Dashboard
UI/UX Design & Web App
Growth Campaign
Meta Ads & Lead Generation
Ready to Scale Your Business?
Join the forward-thinking brands that trust Amrio14 for their digital growth.
Start Your Project Today
Message sent successfully! We will contact you soon.
document.addEventListener('DOMContentLoaded', () => {
// 1. Mobile Navigation Toggle
const mobileToggle = document.querySelector('.mobile-toggle');
const nav = document.querySelector('nav');
const navLinks = document.querySelectorAll('nav ul li a');
mobileToggle.addEventListener('click', () => {
nav.classList.toggle('active');
});
// Close mobile menu when a link is clicked
navLinks.forEach(link => {
link.addEventListener('click', () => {
nav.classList.remove('active');
});
});
// 2. Scroll Animations (Intersection Observer)
const observerOptions = {
threshold: 0.1,
rootMargin: "0px 0px -50px 0px"
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('active');
observer.unobserve(entry.target); // Only animate once
}
});
}, observerOptions);
const revealElements = document.querySelectorAll('.reveal');
revealElements.forEach(el => observer.observe(el));
// 3. Form Handling (Toast Notification)
const form = document.getElementById('projectForm');
const toast = document.getElementById('toast');
form.addEventListener('submit', (e) => {
e.preventDefault();
// Simulate form submission
const btn = form.querySelector('button');
const originalText = btn.innerText;
btn.innerText = 'Sending...';
btn.disabled = true;
setTimeout(() => {
// Show Toast
toast.classList.add('show');
// Reset Form
form.reset();
btn.innerText = originalText;
btn.disabled = false;
// Hide Toast after 4 seconds
setTimeout(() => {
toast.classList.remove('show');
}, 4000);
}, 1500);
});
// 4. Smooth Scroll for Anchor Links (Optional polyfill-like behavior)
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if(targetId === '#') return;
const targetElement = document.querySelector(targetId);
if(targetElement){
const headerOffset = 80;
const elementPosition = targetElement.getBoundingClientRect().top;
const offsetPosition = elementPosition + window.pageYOffset - headerOffset;
window.scrollTo({
top: offsetPosition,
behavior: "smooth"
});
}
});
});
});