:root {
--primary: #8257e5; /* Electric Purple */
--secondary: #27c0ef; /* Deep/Ocean Blue */
--accent: #ff0055; /* Hot Pink Accent */
--bg-dark: #0a0a0c;
--bg-darker: #050505;
--text-main: #f0f0f5;
--text-sub: #b0b0cc;
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
--transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
--gradient: linear-gradient(135deg, var(--primary), var(--secondary));
--navbar-height: 80px;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
background: #333;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
cursor: none !important; /* Custom cursor implementation */
}
html {
scroll-behavior: smooth;
}
body {
background-color: var(--bg-dark);
color: var(--text-main);
font-family: 'Inter', sans-serif;
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
font-family: 'Outfit', sans-serif;
font-weight: 700;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
.section-padding {
padding: 100px 0;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
ul {
list-style: none;
}
#cursor {
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
position: fixed;
pointer-events: none;
z-index: 9999;
mix-blend-mode: difference;
transition: transform 0.1s;
}
#cursor-blur {
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(130, 87, 229, 0.15), transparent 70%);
position: fixed;
border-radius: 50%;
pointer-events: none;
z-index: 9998;
transform: translate(-50%, -50%);
filter: blur(40px);
}
.text-gradient {
background: var(--gradient);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.highlight {
color: var(--secondary);
}
.badge {
display: inline-block;
padding: 5px 15px;
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--primary);
margin-bottom: 1rem;
}
.glass {
background: var(--glass-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
border-radius: 20px;
box-shadow: var(--shadow);
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 28px;
border-radius: 12px;
font-weight: 600;
transition: var(--transition);
cursor: none;
position: relative;
overflow: hidden;
}
.btn-primary {
background: var(--gradient);
color: white;
box-shadow: 0 10px 20px -10px var(--primary);
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 30px -10px var(--primary);
}
.btn-outline {
background: transparent;
border: 1px solid var(--glass-border);
color: var(--text-main);
}
.btn-outline:hover {
background: var(--glass-bg);
border-color: var(--primary);
}
.btn-sm {
padding: 8px 20px;
border-radius: 10px;
font-size: 0.9rem;
}
#navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: var(--navbar-height);
background: rgba(10, 10, 12, 0.8);
backdrop-filter: blur(8px);
z-index: 1000;
border-bottom: 1px solid var(--glass-border);
transition: var(--transition);
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 2rem;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
font-family: 'Outfit', sans-serif;
letter-spacing: -0.5px;
}
.logo-accent {
color: var(--primary);
}
.logo-dot {
color: var(--secondary);
}
.nav-links {
display: flex;
gap: 2.5rem;
}
.nav-links a {
font-size: 0.95rem;
font-weight: 500;
color: var(--text-sub);
}
.nav-links a:hover, .nav-links a.active-link {
color: white;
text-shadow: 0 0 10px rgba(130, 87, 229, 0.5);
}
.nav-links a.active-link::after {
content: '';
display: block;
width: 20px;
height: 2px;
background: var(--primary);
margin: 4px auto 0;
border-radius: 2px;
}
.nav-cta {
display: flex;
align-items: center;
gap: 1.5rem;
}
#mobile-menu-toggle {
display: none;
background: none;
border: none;
color: white;
}
.hero {
height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-color: var(--bg-darker);
}
.gradient-sphere {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
animation: floating 25s infinite alternate ease-in-out;
}
.sphere-1 {
width: 500px;
height: 500px;
background: var(--primary);
top: -100px;
right: -100px;
}
.sphere-2 {
width: 600px;
height: 600px;
background: var(--secondary);
bottom: -150px;
left: -150px;
animation-delay: -5s;
}
@keyframes floating {
from { transform: translate(0, 0) scale(1); }
to { transform: translate(100px, 150px) scale(1.2); }
}
.hero-content {
max-width: 800px;
}
.sub-heading {
font-size: 1.25rem;
color: var(--text-sub);
font-weight: 500;
margin-bottom: 1.5rem;
letter-spacing: 2px;
text-transform: uppercase;
}
.main-heading {
font-size: 4.5rem;
line-height: 1.1;
margin-bottom: 2rem;
}
.hero-tagline {
font-size: 1.5rem;
color: var(--text-sub);
max-width: 600px;
margin-bottom: 3rem;
}
.hero-btns {
display: flex;
gap: 1.5rem;
}
.scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: var(--text-sub);
font-size: 1.5rem;
}
.section-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-card {
padding: 3rem;
}
.section-title h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.about-card p {
color: var(--text-sub);
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.about-stats {
display: flex;
gap: 2rem;
margin-top: 2rem;
}
.stat {
display: flex;
flex-direction: column;
}
.stat-num {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
}
.stat-label {
font-size: 0.85rem;
color: var(--text-sub);
text-transform: uppercase;
}
.image-wrapper {
position: relative;
padding: 3rem;
display: flex;
justify-content: center;
align-items: center;
height: 480px;
overflow: hidden;
}
.abstract-shape {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, rgba(130, 87, 229, 0.1) 0%, transparent 70%);
}
.about-icon-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
z-index: 2;
}
.about-icon {
width: 80px;
height: 80px;
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 18px;
display: flex;
justify-content: center;
align-items: center;
color: var(--primary);
box-shadow: var(--shadow);
transition: var(--transition);
}
.about-icon:hover {
transform: scale(1.1) rotate(5deg);
border-color: var(--primary);
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.skill-card {
padding: 2.5rem;
text-align: left;
transition: var(--transition);
}
.skill-card:hover {
transform: translateY(-10px);
border-color: var(--primary);
}
.skill-icon {
width: 60px;
height: 60px;
background: var(--gradient);
border-radius: 14px;
display: flex;
justify-content: center;
align-items: center;
color: white;
margin-bottom: 1.5rem;
box-shadow: 0 8px 16px -4px rgba(130, 87, 229, 0.4);
}
.skill-card h3 {
font-size: 1.4rem;
margin-bottom: 0.8rem;
}
.skill-card p {
color: var(--text-sub);
font-size: 0.95rem;
}
.projects-container {
margin-top: 3rem;
}
.project-card {
display: grid;
grid-template-columns: 1.2fr 1fr;
overflow: hidden;
}
.project-image {
background: linear-gradient(135deg, #1e1e24 0%, #2a2a35 100%);
position: relative;
min-height: 350px;
}
.project-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://images.unsplash.com/photo-1541963463532-d68292c34b19?auto=format&fit=crop&q=80&w=1000') center/cover;
opacity: 0.3;
transition: var(--transition);
}
.project-card:hover .project-image::before {
transform: scale(1.1);
opacity: 0.5;
}
.project-tag {
position: absolute;
top: 2rem;
left: 2rem;
padding: 5px 15px;
background: var(--primary);
border-radius: 20px;
font-size: 0.8rem;
font-weight: 700;
}
.project-info {
padding: 4rem;
}
.project-info h3 {
font-size: 2rem;
margin-bottom: 1rem;
}
.project-info p {
color: var(--text-sub);
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.project-tech {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}
.project-tech li {
font-size: 0.85rem;
color: var(--secondary);
font-weight: 600;
background: rgba(39, 192, 239, 0.1);
padding: 4px 12px;
border-radius: 6px;
}
.project-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 700;
color: white;
border-bottom: 2px solid var(--primary);
padding-bottom: 4px;
}
.project-link:hover {
gap: 12px;
border-color: var(--secondary);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 3rem;
}
.service-item {
position: relative;
padding-top: 2rem;
}
.service-number {
font-size: 3rem;
font-weight: 800;
font-family: 'Outfit', sans-serif;
color: transparent;
-webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
position: absolute;
top: -1.5rem;
left: 0;
}
.service-item h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary);
}
.service-item p {
color: var(--text-sub);
}
.contact-card {
display: grid;
grid-template-columns: 1.5fr 1fr;
padding: 0;
overflow: hidden;
}
.contact-content {
padding: 5rem;
}
.contact-info {
margin-top: 3rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 1rem;
font-size: 1.2rem;
color: var(--text-sub);
}
.contact-item i {
color: var(--primary);
}
.contact-actions {
margin-top: 3rem;
}
.whatsapp-btn {
background: #25d366;
box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.5);
}
.contact-form-dummy {
background: var(--gradient);
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.form-decoration .shape {
position: absolute;
border: 2px solid rgba(255, 255, 255, 0.1);
}
.s1 { width: 300px; height: 300px; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; animation: morph 15s linear infinite; }
.s2 { width: 200px; height: 200px; border-radius: 50%; opacity: 0.4; }
.s3 { width: 400px; height: 400px; border-radius: 40% 60% 30% 70%; animation: morph 20s reverse infinite; }
@keyframes morph {
0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}
footer {
padding: 3rem 0;
border-top: 1px solid var(--glass-border);
}
.footer-wrap {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-wrap p {
color: var(--text-sub);
font-size: 0.9rem;
}
.social-links {
display: flex;
gap: 1.5rem;
}
.social-links a {
color: var(--text-sub);
}
.social-links a:hover {
color: var(--primary);
transform: translateY(-3px);
}
.animate-up {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.8s forwards ease-out;
}
@keyframes fadeInUp {
to { opacity: 1; transform: translateY(0); }
}
.animate-bounce {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-10px) translateX(-50%); }
60% { transform: translateY(-5px) translateX(-50%); }
}
.reveal {
opacity: 0;
transform: translateY(50px);
transition: 1s all ease;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 968px) {
.nav-container { padding: 0 1rem; }
.logo { font-size: 1.2rem; }
.nav-cta { gap: 0.75rem; }
.main-heading { font-size: 2.75rem; text-align: center; }
.sub-heading { text-align: center; width: 100%; }
.hero-tagline { text-align: center; margin: 0 auto 2.5rem; }
.hero-content { display: flex; flex-direction: column; align-items: center; width: 100%; padding-top: 60px; }
.section-padding { padding: 60px 0; }
.container { padding: 0 1.25rem; }
.section-grid, .project-card, .contact-card {
grid-template-columns: 1fr;
}
.image-wrapper, .contact-form-dummy {
display: none;
}
.nav-links { display: none; }
#mobile-menu-toggle { display: block; }
.hero-btns { flex-direction: column; width: 100%; }
.hero-btns .btn { width: 100%; justify-content: center; }
.about-card, .project-info, .contact-content {
padding: 2.5rem 1.5rem;
}
.section-title h2 { font-size: 2rem; }
.about-stats { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.stat { align-items: center; text-align: center; flex: 1 1 100px; }
}

@media (max-width: 576px) {
.main-heading { font-size: 2.25rem; }
.hero-tagline { font-size: 1rem; }
.logo { font-size: 1.1rem; }
.btn { padding: 10px 15px; font-size: 0.9rem; }
.project-info h3 { font-size: 1.5rem; }
.project-tech { flex-wrap: wrap; }
.contact-item { font-size: 0.95rem; }
.service-number { font-size: 2rem; top: -1rem; }
}

#mobile-menu {
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 100vh;
background: var(--bg-darker);
z-index: 2000;
display: flex;
justify-content: center;
align-items: center;
transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu.active {
right: 0;
}
#mobile-menu-close {
position: absolute;
top: 2rem;
right: 2rem;
background: none;
border: none;
color: white;
}
#mobile-menu ul {
text-align: center;
width: 100%;
}
#mobile-menu ul li {
margin: 1.5rem 0;
}
#mobile-menu ul a {
font-size: 1.75rem;
font-weight: 700;
display: block;
padding: 10px;
}
#back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
width: 45px;
height: 45px;
background: var(--glass-bg);
border: 1px solid var(--glass-border);
backdrop-filter: blur(10px);
border-radius: 12px;
display: flex;
justify-content: center;
align-items: center;
color: white;
cursor: none;
z-index: 999;
opacity: 0;
visibility: hidden;
transition: var(--transition);
}
#back-to-top.visible {
opacity: 1;
visibility: visible;
}
#back-to-top:hover {
background: var(--primary);
transform: translateY(-5px);
}
