/* Base Styles */
:root {
    --primary-color: #8A2BE2;
    --secondary-color: #FF1493;
    --accent-color: #00FFFF;
    --dark-color: #121212;
    --light-color: #f8f9fa;
    --gradient-1: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-2: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-3: linear-gradient(225deg, var(--accent-color), var(--primary-color));
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    display: none;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1IiBkPSJNMCAwaDMwMHYzMDBIMHoiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown > a::before {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: var(--border-radius);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--light-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: rgba(138, 43, 226, 0.1);
    padding-left: 2rem;
}

.dropdown-menu li a::after {
    display: none;
}

.nav-cta {
    background: var(--gradient-1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.cta-container {
    display: flex;
    gap: 2rem;
}

.btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-3px);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    left: 10%;
    animation: float 20s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    top: 30%;
    right: 20%;
    animation: float 18s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Services Section */
.services {
    background-color: #0c0c0c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
}

/* Visuals Section */
.visuals {
    background-color: var(--dark-color);
}

.visuals-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.visual-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.visual-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.visual-image {
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.visual-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.visual-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.visual-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.carousel-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav button:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

/* About Section */
.about {
    background-color: #0c0c0c;
}

.about-content {
    display: block;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.8rem;
}

.about-text p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--primary-color);
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
}

/* Contact Section */
.contact {
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(255, 20, 147, 0.1));
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.chatbot-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
    position: relative;
    transition: var(--transition);
}

.chatbot-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-1);
    z-index: -1;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.chatbot-icon:hover {
    transform: scale(1.1);
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .hero-content h1 {
        font-size: 4.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        padding: 8rem 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 3.6rem;
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    .services-grid,
    .visuals-carousel,
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* MAIN SECTIONS - FULL WIDTH, NO SPACE */
.showcase-section {
  width: 100%;
  background: radial-gradient(800px 400px at 10% 10%, rgba(0,240,255,0.03), transparent),
              radial-gradient(600px 300px at 90% 80%, rgba(176,140,255,0.02), transparent),
              var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  border: none;
}

/* REMOVE GAP BETWEEN SECTIONS */
.showcase-section + .showcase-section {
  margin-top: -1px; /* eliminates any faint border-line or shadow gap */
}

/* CARD STYLE */
.showcase-card {
  width: 100%;
  max-width: 1300px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 16px;
  padding: 40px 50px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* TEXT STYLES */
.title {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 30px;
}

/* ICON GRID */
.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tool {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.tool:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.logo {
  font-size: 38px;
  margin-bottom: 8px;
}

.label {
  font-size: 13px;
  color: var(--muted);
}

/* FRONTEND COLORS */
.html .logo { color: #e34f26; }
.css .logo { color: #264de4; }
.js .logo { color: #f0db4f; }
.bs .logo { color: #563d7c; }
.react .logo { color: #61dafb; }
.ng .logo { color: #dd0031; }
.jq .logo { color: #0769ad; }

/* BACKEND COLORS */
.node .logo { color: #3c873a; }
.express .logo { color: #999; }
.python .logo { color: #3776ab; }
.django .logo { color: #0c4b33; }
.php .logo { color: #777bb4; }
.laravel .logo { color: #ff2d20; }
.mysql .logo { color: #f29111; }
.mongo .logo { color: #4caf50; }

/* SMALL ANIMATION */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.pulse {
  animation: pulse .4s ease-in-out;
}

/* Each section */
.showcase-section {
  width: 100%;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(800px 400px at 10% 10%, rgba(0,240,255,0.03), transparent),
              radial-gradient(600px 300px at 90% 80%, rgba(176,140,255,0.02), transparent),
              var(--bg);
  border: none;
}

/* REMOVE ANY GAP */
.showcase-section + .showcase-section {
  margin-top: -1px;
  padding-top: 0;
}

/* Card Design */
.showcase-card {
  width: 100%;
  max-width: 1300px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.title {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 30px;
}

/* Icons */
.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tool {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.tool:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.logo {
  font-size: 38px;
  margin-bottom: 8px;
}

.label {
  font-size: 13px;
  color: var(--muted);
}

/* Tool colors */
.html .logo { color: #e34f26; }
.css .logo { color: #264de4; }
.js .logo { color: #f0db4f; }
.react .logo { color: #61dafb; }
.ng .logo { color: #dd0031; }
.vue .logo { color: #41b883; }

.node .logo { color: #3c873a; }
.express .logo { color: #888; }
.python .logo { color: #3776ab; }
.django .logo { color: #0c4b33; }
.php .logo { color: #777bb4; }
.laravel .logo { color: #ff2d20; }

.mysql .logo { color: #f29111; }
.mongo .logo { color: #4caf50; }
.postgres .logo { color: #336791; }
.firebase .logo { color: #ffcb2b; }
.redis .logo { color: #d82c20; }

.git .logo { color: #f34f29; }
.github .logo { color: #fff; }
.docker .logo { color: #2496ed; }
.vscode .logo { color: #007acc; }
.aws .logo { color: #ff9900; }
.netlify .logo { color: #00ad9f; }

/* Click Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.pulse { animation: pulse .4s ease-in-out; }

