/* CSS Variables & Reset */
:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #111111;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary-color: #4f46e5;
    /* Indigo */
    --secondary-color: #ec4899;
    /* Pink */
    --accent-color: #06b6d4;
    /* Cyan */
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1400px;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

img {
    vertical-align: middle;
    border-style: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

input,
button,
select,
optgroup,
textarea {
    font-family: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-spacing-top {
    padding-top: 100px;
}


.section-spacing-bottom {
    padding-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

.highlight {
    color: var(--primary-color);
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
}

.w-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    color: var(--white);
}

.nav-links .btn-primary:hover {
  color: var(--white);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 70px;
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation-delay: 2s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(79, 70, 229, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Animated Technology Symbols */
.tech-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.tech-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    max-width: 100px;
}

.tech-left {
    align-items: flex-start;
}

.tech-right {
    align-items: flex-end;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: var(--delay);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.tech-left .tech-item {
    animation-name: slideInLeft;
}

.tech-right .tech-item {
    animation-name: slideInRight;
}

.tech-item:hover {
    transform: scale(1.12);
}

.tech-left .tech-item:hover {
    transform: translateX(8px) scale(1.12);
}

.tech-right .tech-item:hover {
    transform: translateX(-8px) scale(1.12);
}

.tech-icon-wrapper {
    width: 85px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 6px 24px rgba(79, 70, 229, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

.tech-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.tech-item:hover .tech-icon-wrapper {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.35) 0%, rgba(236, 72, 153, 0.35) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 10px 35px rgba(79, 70, 229, 0.45),
        0 0 25px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: rotate(-4deg);
}

.tech-item:hover .tech-icon-wrapper::after {
    opacity: 1;
}

.tech-icon-wrapper i {
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
    margin-bottom: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon-wrapper i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.tech-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.8px;
    text-align: center;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-label {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* Specific icon colors with enhanced vibrancy */
.tech-item:nth-child(1) .tech-icon-wrapper i {
    color: #61dafb;
}

/* React */
.tech-item:nth-child(2) .tech-icon-wrapper i {
    color: #dd0031;
}

/* Angular */
.tech-item:nth-child(3) .tech-icon-wrapper i {
    color: #42b883;
}

/* Vue */
.tech-item:nth-child(4) .tech-icon-wrapper i {
    color: #21759b;
}

/* WordPress */
.tech-item:nth-child(5) .tech-icon-wrapper i {
    color: #96bf48;
}

/* Shopify */
.tech-item:nth-child(6) .tech-icon-wrapper i {
    color: #3ddc84;
}

/* Android */
.tech-item:nth-child(7) .tech-icon-wrapper i {
    color: #ffd43b;
}

/* Python */
.tech-item:nth-child(8) .tech-icon-wrapper i {
    color: #ff9900;
}

/* AWS */
.tech-item:nth-child(9) .tech-icon-wrapper i {
    color: #1572b6;
}

/* CSS3 */

.tech-right .tech-item:nth-child(1) .tech-icon-wrapper i {
    color: #68a063;
}

/* Node.js */
.tech-right .tech-item:nth-child(2) .tech-icon-wrapper i {
    color: #f7df1e;
}

/* JavaScript */
.tech-right .tech-item:nth-child(3) .tech-icon-wrapper i {
    color: #e34f26;
}

/* HTML5 */
.tech-right .tech-item:nth-child(4) .tech-icon-wrapper i {
    color: #f46f25;
}

/* Magento */
.tech-right .tech-item:nth-child(5) .tech-icon-wrapper i {
    color: #1a73e8;
}

/* BigCommerce */
.tech-right .tech-item:nth-child(6) .tech-icon-wrapper i {
    color: #ffffff;
}

/* iOS */
.tech-right .tech-item:nth-child(7) .tech-icon-wrapper i {
    color: #8892bf;
}

/* PHP */
.tech-right .tech-item:nth-child(8) .tech-icon-wrapper i {
    color: #2496ed;
}

/* Docker */
.tech-right .tech-item:nth-child(9) .tech-icon-wrapper i {
    color: #00758f;
}

/* Database */

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content h1 .dot {
    color: var(--primary-color);
    font-size: 5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    margin: 0 auto 40px auto;
    max-width: 700px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 16px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.4);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-buttons .btn-primary i,
.hero-buttons .btn-secondary i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(5px);
}

.hero-buttons .btn-secondary:hover i {
    transform: scale(1.1);
}

.hero-trust {
    margin-top: 30px;
}

.hero-trust p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.trust-badges i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.trust-badges i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    max-width: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Expertise Section Background */
.expertise-section {
    position: relative;
    overflow: hidden;
}

.expertise-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.expertise-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    animation: pulse-expertise 10s ease-in-out infinite;
}

.expertise-circle.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.expertise-circle.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    animation-delay: 3s;
}

@keyframes pulse-expertise {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

.expertise-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Services / Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.expertise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 45px 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover::after {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow:
        0 25px 60px rgba(79, 70, 229, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.2);
}

.expertise-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.4), rgba(236, 72, 153, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.4) 0%, rgba(236, 72, 153, 0.4) 100%);
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
}

.expertise-card:hover .expertise-icon::before {
    opacity: 1;
}

.expertise-icon i {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(79, 70, 229, 0.3));
}

.expertise-card:hover .expertise-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 16px rgba(79, 70, 229, 0.6));
}

.expertise-card h3 {
    margin-bottom: 16px;
    font-size: 1.45rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.expertise-card:hover h3 {
    color: var(--white);
    transform: translateY(-2px);
}

.expertise-card>p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    min-height: 44px;
    transition: color 0.3s ease;
}

.expertise-card:hover>p {
    color: rgba(255, 255, 255, 0.85);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.tech-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-tag:hover::before {
    left: 100%;
}

.tech-tag:hover {
    background: rgba(79, 70, 229, 0.3);
    border-color: rgba(79, 70, 229, 0.6);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

/* Legacy service card styles for backward compatibility */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 70, 229, 0.3);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(236, 72, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    border: 2px solid rgba(236, 72, 153, 0.4);
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.5);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(79, 70, 229, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35) 0%, rgba(79, 70, 229, 0.35) 100%);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.process-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.process-card>p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-list li {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.process-list li i {
    font-size: 0.4rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.process-card:hover .process-list li {
    color: rgba(255, 255, 255, 0.9);
}

.process-card:hover .process-list li i {
    color: var(--secondary-color);
    transform: scale(1.3);
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.process-arrow i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

.process-card:last-child .process-arrow {
    display: none;
}

/* Portfolio */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    display: none;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tab-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.tab-btn span,
.tab-btn:not(:has(i)) {
    position: relative;
    z-index: 1;
}

.tab-btn:hover {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.tab-btn:hover i {
    transform: scale(1.15);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.5);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
    transform: scale(1);
}

.project-card.hidden {
    display: none;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.25);
}

.project-image {
   /* height: 250px; */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-image:hover .placeholder-img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-size: 1.3rem;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 10;
}

.project-badge.wordpress {
    background: rgba(33, 117, 155, 0.9);
}

.project-badge.shopify {
    background: rgba(150, 191, 72, 0.9);
}

.project-badge.magento {
    background: rgba(244, 111, 37, 0.9);
}

.project-badge.template {
    background: rgba(79, 70, 229, 0.9);
}

.project-card:hover .project-badge {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    animation: pulse-about 12s ease-in-out infinite;
}

.about-circle.circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.about-circle.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    animation-delay: 4s;
}

@keyframes pulse-about {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.about-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(236, 72, 153, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 72, 153, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* About Intro Section */
.about-intro {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.intro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.visual-circle {
    position: relative;
    width: 280px;
    height: 280px;
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.3);
    animation: float-circle 6s ease-in-out infinite;
}

@keyframes float-circle {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.circle-inner i {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-progress circle {
    fill: none;
    stroke-width: 4;
}

.circle-progress circle:first-child {
    stroke: rgba(255, 255, 255, 0.05);
}

.circle-progress .progress-ring {
    stroke: url(#gradient);
    stroke-dasharray: 565;
    stroke-dashoffset: 141;
    stroke-linecap: round;
    animation: progress-animation 3s ease-out forwards;
}

@keyframes progress-animation {
    from {
        stroke-dashoffset: 565;
    }

    to {
        stroke-dashoffset: 141;
    }
}

.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: float-badge 4s ease-in-out infinite;
}

.float-badge i {
    font-size: 1rem;
}

.badge-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.badge-1 i {
    color: #10b981;
}

.badge-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1s;
}

.badge-2 i {
    color: #f59e0b;
}

.badge-3 {
    top: 50%;
    left: -15%;
    animation-delay: 2s;
}

.badge-3 i {
    color: #ef4444;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.intro-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-tag:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* Pillars Section */
.about-pillars {
    margin-top: 40px;
}

.pillars-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.3);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(79, 70, 229, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(-5deg);
}

.pillar-card:hover .pillar-icon i {
    color: var(--white);
}

.pillar-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Achievements Section */
.about-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.achievement-card:hover::before {
    transform: scaleY(1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.achievement-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.achievement-card:hover .achievement-icon i {
    color: var(--white);
}

.achievement-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--white);
}

.achievement-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: var(--text-color);
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-details li:hover {
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateX(8px);
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-details li:hover i {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.social-links a:hover i {
    color: var(--white);
    transform: scale(1.15);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(79, 70, 229, 0.08);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234f46e5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.form-group select option {
    color: var(--bg-color);
}

.contact-form .btn-primary {
    margin-top: 10px;
    padding: 16px 40px;
    font-size: 1.05rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

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

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

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

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

.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        min-height: 100%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-trust p {
        font-size: 0.9rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .expertise-card {
        padding: 40px 28px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .process-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 50px 0;
    }

    .section-spacing-top {
        padding-top: 50px;
    }

    .navbar {
        padding: 15px 0; 
    }

    .hero .container {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        margin: 0 auto 40px auto;
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-box {
        min-width: 120px;
        padding: 15px 20px;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    /* Show fewer tech items on tablets */
    .tech-symbols {
        padding: 0 20px;
    }

    .tech-column {
        max-width: 80px;
        gap: 14px;
    }

    .tech-item:nth-child(n+6) {
        display: none;
    }

    .tech-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .tech-icon-wrapper i {
        font-size: 1.4rem;
    }

    .tech-label {
        font-size: 0.6rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .expertise-card {
        padding: 38px 26px;
    }

    .expertise-icon {
        width: 75px;
        height: 75px;
    }

    .expertise-icon i {
        font-size: 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-card {
        padding: 35px 25px;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-visual {
        height: 350px;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .about-achievements {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-newsletter {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-width: 150px;
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-content h1 .dot {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-box {
        min-width: 100px;
        padding: 12px 18px;
    }

    .stat-box h3 {
        font-size: 1.8rem;
    }

    .stat-box p {
        font-size: 0.8rem;
        margin: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-trust p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        right: 10%;
    }

    .badge-3 {
        left: 0%; 
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        padding: 35px 25px;
    }

    .expertise-icon {
        width: 70px;
        height: 70px;
    }

    .expertise-icon i {
        font-size: 1.8rem;
    }

    .expertise-card h3 {
        font-size: 1.3rem;
    }

    .expertise-card>p {
        font-size: 0.88rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 7px 14px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-card {
        padding: 35px 25px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 1.8rem;
    }

    .process-card h3 {
        font-size: 1.35rem;
    }

    .process-card>p {
        font-size: 0.88rem;
    }

    .process-list li {
        font-size: 0.85rem;
    }

    /* About Section Mobile */
    .about-content-wrapper {
        gap: 40px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-visual {
        height: 300px;
    }

    .visual-circle {
        width: 220px;
        height: 220px;
    }

    .circle-inner {
        width: 140px;
        height: 140px;
    }

    .circle-inner i {
        font-size: 3rem;
    }

    .float-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .float-badge i {
        font-size: 0.85rem;
    }

    .intro-text h3 {
        font-size: 1.6rem;
    }

    .intro-text p {
        font-size: 0.95rem;
    }

    .feature-tag {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .pillars-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-card {
        padding: 30px 22px;
    }

    .pillar-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
    }

    .pillar-icon i {
        font-size: 1.6rem;
    }

    .pillar-card h4 {
        font-size: 1.2rem;
    }

    .pillar-card p {
        font-size: 0.88rem;
    }

    .about-achievements {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .achievement-card {
        padding: 25px;
        gap: 18px;
    }

    .achievement-icon {
        width: 55px;
        height: 55px;
    }

    .achievement-icon i {
        font-size: 1.4rem;
    }

    .achievement-content h4 {
        font-size: 1.05rem;
    }

    .achievement-content p {
        font-size: 0.85rem;
    }

    /* Hide tech symbols on mobile */
    .tech-symbols {
        display: none;
    }

    .decoration-circle {
        display: none;
    }

    .expertise-circle {
        display: none;
    }

    .footer-newsletter {
        padding: 30px 25px;
        margin: 40px 0;
    }

    .newsletter-content {
        gap: 20px;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
    }

    .newsletter-icon i {
        font-size: 1.5rem;
    }

    .newsletter-text h3 {
        font-size: 1.4rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
        border-radius: 16px;
    }

    .newsletter-input-wrapper>i {
        display: none;
    }

    .newsletter-input-wrapper input {
        text-align: center;
        padding: 12px;
    }

    .btn-newsletter {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .footer-main {
        gap: 40px;
        margin-bottom: 40px;
        padding: 40px 0;
    }

    .footer-brand {
        text-align: center;
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
        font-size: 1.8rem;
    }

    .footer-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-stat {
        flex: 1;
        min-width: 100px;
        padding: 15px;
    }

    .footer-stat h4 {
        font-size: 1.6rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
        padding: 25px 0;
    }

    /* Portfolio Tabs Mobile */
    .portfolio-tabs {
        gap: 10px;
        margin-bottom: 35px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .tab-btn i {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /*
    .project-image {
        height: 220px;
    }
    */

    .project-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 12px;
        right: 12px;
    }

    .contact-form {
        padding: 30px; 
    }

}


/* Industry Expertise Section */
.industry-expertise-section {
    position: relative;
    overflow: hidden;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industry-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.06) 100%);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.25);
}

.industry-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.15) 0%, rgba(255, 182, 193, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(255, 192, 203, 0.15);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.25) 0%, rgba(255, 182, 193, 0.2) 100%);
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 192, 203, 0.3);
}

.industry-icon i {
    font-size: 2.5rem;
    color: #ec4899;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(236, 72, 153, 0.3));
}

.industry-card:hover .industry-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(236, 72, 153, 0.5));
}

.industry-card h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.industry-card:hover h3 {
    color: var(--white);
    transform: translateY(-2px);
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.industry-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive for Industry Expertise */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        padding: 35px 28px;
    }

    .industry-icon {
        width: 80px;
        height: 80px;
    }

    .industry-icon i {
        font-size: 2.2rem;
    }

    .industry-card h3 {
        font-size: 1.35rem;
    }

    .industry-card p {
        font-size: 0.9rem;
    }
}