* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    color: var(--font-color);
}

:root {
    --primary-color: #2c7acd;
    --primary-dark: #1a5490;
    --primary-light: #5a9de0;
    --secondary-color: #0a0a0a;
    --font-color: #333;
    --gray-color: #6b7280;
    --gray-light: #9ca3af;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 35px 70px rgba(0, 0, 0, 0.25);
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 7px 50px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1b60b5 100%);
    border-bottom: 0.5px solid var(--primary-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease, transform 0.3s ease;
    gap: 3rem;
    transform: translateY(0);
}

.navbar.scrolled {
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 100px;
    height: auto;
    transition: transform var(--transition-normal);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;

    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links li a:not(.btn-outline):hover::after,
.nav-links li a:not(.btn-outline).active::after {
    width: 100%;
}

.nav-links li a:not(.btn-outline):hover,
.nav-links li a:not(.btn-outline).active {
    color: var(--primary-light);
}

/* Contact Button - Outlined, no fill */
.nav-links li a.btn-outline {
    border: 1px solid var(--light-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    color: var(--light-bg);
    font-weight: 600;
    background: transparent;
}

.nav-links li a.btn-outline::after {
    display: none;
}

.nav-links li a.btn-outline:hover {
    border-color: var(--primary-dark);
    color: var(--primary-color);
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.nav-links li:last-child {
    margin-left: auto;
}



/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HOME SECTION ===== */
.home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    padding-top: 70px;
    z-index: 2;
}

.home .text-home {
    color: var(--white);
    z-index: 2;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
    position: relative;
}

.home .text-home::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.home .text-home h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease forwards;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home .text-home p {
    font-size: 1.3rem;
    opacity: 0;
    margin-bottom: 40px;
    color: var(--gray-light);
    animation: fadeInUp 1s ease 0.2s forwards;
    max-width: 500px;
    line-height: 1.8;
}

.home .text-home .btn {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    width: fit-content;
}

.design-backdrop-home {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    top: -10%;
    left: -15%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
    filter: blur(60px);
}

.design-backdrop-home::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    bottom: -30%;
    right: -30%;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.6) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.5));
    z-index: 1;
    pointer-events: none;
}

.video-home {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.05);

}

/* ===== SECTION TITLES ===== */
.section-title {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
#about {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

#about h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

#about p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--gray-color);
    max-width: 800px;
    margin-bottom: 50px;
}

.about-images {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

#about img {
    width: calc(50% - 15px);
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#about img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

#about img:first-of-type {
    transform: rotate(-2deg);
}

#about img:last-of-type {
    transform: rotate(2deg);
}

#about img:first-of-type:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.02);
}

#about img:last-of-type:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.02);
}

.design-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    opacity: 0.06;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 15%;
    right: -80px;
    animation: morph 10s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes morph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(45deg);
    }

    75% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

/* ===== HASHTAGS - MARQUEE ANIMATION ===== */
.hashtags-wrapper {
    overflow: hidden;
    background: var(--secondary-color);
    padding: 50px 0;
    position: relative;
}

.hashtags-wrapper::before,
.hashtags-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hashtags-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.hashtags-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--secondary-color), transparent);
}

.hashtags {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    will-change: transform;
}

.hashtags span {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    transition: all var(--transition-normal);
    cursor: default;
    letter-spacing: -1px;
}

.hashtags span:hover {
    -webkit-text-stroke: 1px var(--primary-color);
    color: var(--primary-color);
    text-shadow: 0 0 40px rgba(44, 122, 205, 0.5);
}

/* ===== SERVICES SECTION ===== */
#services {
    padding: 120px 20px;
    background: var(--light-bg);
    position: relative;
}

#services h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
    font-weight: 800;
}

#services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

#services ul li {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

#services ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#services ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

#services ul li:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

#services ul li:hover::before {
    transform: scaleY(1);
}

#services ul img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: 20px;
    transition: transform var(--transition-normal);
}

#services ul li:hover img {
    transform: scale(1.03);
}

/* ===== CONTACT SECTION ===== */
#contact {
    padding: 120px 20px;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .section-title {
    color: var(--primary-light);
}

.contact-info .section-title::before {
    background: var(--primary-light);
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.3rem;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(44, 122, 205, 0.3);
}

.contact-item span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 122, 205, 0.4);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form-wrapper label {
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(44, 122, 205, 0.15);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form-wrapper textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-wrapper .btn {
    margin-top: 15px;
}

.map-container {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
}

.design-backdrop-contact {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 12s ease-in-out infinite;
    filter: blur(80px);
}

/* ===== BUTTONS ===== */
.btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 122, 205, 0.3);
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(44, 122, 205, 0.4);
}

.btn:active {
    transform: translateY(-2px);
}

/* ===== ENHANCED FOOTER ===== */
#footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px 30px;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #1a5490, var(--primary-color));
    background-size: 200% 100%;
    animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-footer img {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: 120px 20px;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us .section-title {
    text-align: center;
}

.why-choose-us .section-title::before {
    display: none;
}

.why-choose-us h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 35px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: rgba(44, 122, 205, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.why-card:hover::before {
    opacity: 0.08;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(44, 122, 205, 0.4);
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.why-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all var(--transition-normal);
}

.why-card:hover .why-number {
    -webkit-text-stroke: 1px rgba(44, 122, 205, 0.15);
}

/* ===== ACTIVE NAVIGATION LINK ===== */
.nav-links li a.active {
    color: var(--primary-color);

}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(44, 122, 205, 0.3) 100%),
        url('assets/hero.jpg') no-repeat center center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.design-backdrop-page {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 10s ease-in-out infinite;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 100px 20px;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-text h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa48;
    border: 1px solid rgba(255, 255, 255, 0.419);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-item p {
    color: var(--gray-color);
    margin: 0;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: 100px 20px;
    background: var(--light-bg);
}

.services-overview h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card .service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card .service-icon {
    font-size: 4rem;
    color: #fff;
    opacity: 0.9;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #fff;
    padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-main {
    padding: 100px 20px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-detailed h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info-detailed>p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-large {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-large i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-text p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

.social-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.social-link-large i {
    font-size: 1.2rem;
}

.contact-form-section {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.form-header p {
    color: var(--gray-color);
    line-height: 1.6;
}

.contact-form-detailed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-detailed .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-detailed label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.contact-form-detailed input,
.contact-form-detailed select,
.contact-form-detailed textarea {
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-detailed input:focus,
.contact-form-detailed select:focus,
.contact-form-detailed textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    position: relative;
}

input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.map-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.faq-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Scroll Animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-item.animate-ready {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.pill.animate-ready:nth-child(1) { transition-delay: 0.1s; }
.pill.animate-ready:nth-child(2) { transition-delay: 0.2s; }
.pill.animate-ready:nth-child(3) { transition-delay: 0.3s; }

.revamp-item.animate-ready:nth-child(1) { transition-delay: 0.1s; }
.revamp-item.animate-ready:nth-child(2) { transition-delay: 0.2s; }
.revamp-item.animate-ready:nth-child(3) { transition-delay: 0.3s; }

/* ===== MOBILE RESPONSIVENESS ===== */

/* Tablet & Smaller Laptops (max-width: 991px) */
@media (max-width: 991px) {

    /* Home Section */
    .home {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .home .text-home {
        padding: 60px 30px;
        order: 1;
        text-align: center;
        align-items: center;
    }

    .home .text-home h1 {
        font-size: 3rem;
    }

    .home .text-home p {
        margin-bottom: 30px;
    }

    .video-wrapper {
        order: 2;
        height: 50vh;
        min-height: 400px;
    }

    /* General Section Padding */
    #about,
    #services,
    #contact,
    .story-section {
        padding: 70px 20px;
    }

    /* Grids to Single Column */
    .contact-container,
    .story-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image {
        order: -1;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 0 20px;
        height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.mobile-active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.mobile-active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.mobile-active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.mobile-active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.mobile-active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links li a {
        font-size: 1.5rem;
        padding: 10px;
    }

    /* Typography */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 12px;
    }

    /* About Section */
    #about img {
        width: 100%;
        height: 300px;
        margin: 15px 0;
    }

    /* Contact Form */
    .contact-form-wrapper form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    /* Why Choose Us & Services */
    .why-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-column {
        align-items: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .home .text-home h1 {
        font-size: 2rem;
    }

    .logo img {
        width: 60px;
    }

    .hashtags span {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

/* Parallax Showcase Section */
.parallax-showcase {
    width: 100%;
    position: relative;
}

.parallax-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
   

.parallax-image {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 100%);
    z-index: 1;
}
.parallax-overlay-art-in-motion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,  rgba(0, 0, 0, 0.88) 0%, rgb(0, 0, 0) 100%);
    z-index: 1;
}
.parallax-overlay-art-in-motion-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #1a539088 0%, rgb(0, 0, 0) 100%);
    z-index: 1;
}

.gradient-overlay { 
    background: 
    linear-gradient(135deg, #1a5490,#00000095),url("assets/digital-bg.jpg") no-repeat center center/cover fixed;
}
}

.gradient-overlay-alt {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.5) 0%, rgba(255, 142, 83, 0.5) 100%);
}

/* Parallax Video */
.parallax-video-item {
    background: #000;
    position: relative;
}

.parallax-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.parallax-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.parallax-tag i {
    margin-right: 0.5rem;
}

.parallax-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.03em;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.parallax-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #1a1a2e;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.parallax-btn:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateX(5px);
}

.parallax-btn i {
    transition: transform 0.3s ease;
}

.parallax-btn:hover i {
    transform: translateX(5px);
}

.btn-glow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
    to { box-shadow: 0 0 40px rgba(102, 126, 234, 0.8); }
}

.btn-glow:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Video Stats */
.video-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #0000006b;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.pill i {
    margin-right: 0.5rem;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    font-size: 2.5rem;
    color: #fff;
}

.tech-stack i {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.tech-stack i:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.2);
}

.tech-stack .fa-html5:hover { color: #e34f26; }
.tech-stack .fa-css3-alt:hover { color: #1572b6; }
.tech-stack .fa-js:hover { color: #f7df1e; }
.tech-stack .fa-react:hover { color: #61dafb; }
.tech-stack .fa-node:hover { color: #68a063; }

/* Revamp Features */
.revamp-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.revamp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.revamp-item i {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.revamp-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.revamp-item span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Responsive Parallax */
@media (max-width: 768px) {
    .parallax-item {
        height: 100vh;
        min-height: 500px;
    }
    
    .parallax-image {
        top: 0;
        height: 100%;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .tech-stack {
        font-size: 2rem;
        gap: 1rem;
    }
    
    .revamp-features {
        gap: 1rem;
    }
    
    .revamp-item i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .feature-pills {
        gap: 0.5rem;
    }
    
    .pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Fixed Parallax Effect */
.parallax-image {
    background-attachment: fixed;
}

/* Web Dev Section */
.webdev-section { background: url("assets/developer.jpg")  no-repeat center center/cover fixed}
.webdev-overlay { background: linear-gradient(135deg, rgba(10, 10, 26, 0.85), rgba(20, 20, 50, 0.9)); }

.code-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}
@keyframes gridMove { to { transform: translate(50px, 50px); } }

.floating-code { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(102, 126, 234, 0.4);
    animation: floatCode 15s linear infinite;
    animation-delay: var(--delay);
}
.code-line:nth-child(1) { top: 10%; }
.code-line:nth-child(2) { top: 25%; animation-duration: 18s; }
.code-line:nth-child(3) { top: 50%; animation-duration: 12s; }
.code-line:nth-child(4) { top: 70%; animation-duration: 20s; }
.code-line:nth-child(5) { top: 85%; animation-duration: 16s; }
@keyframes floatCode {
    0% { transform: translateX(-200px); opacity: 0; }
    10%, 90% { opacity: 0.4; }
    100% { transform: translateX(100vw); opacity: 0; }
}

.glitch-text { position: relative; }
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
}
.glitch-text::before { text-shadow: -2px 0 #ff00ff; animation: glitch1 5s infinite; }
.glitch-text::after { text-shadow: 2px 0 #00ffff; animation: glitch2 4s infinite; }
@keyframes glitch1 { 0%, 100% { clip-path: inset(40% 0 61% 0); } 50% { clip-path: inset(92% 0 1% 0); } }
@keyframes glitch2 { 0%, 100% { clip-path: inset(25% 0 58% 0); } 50% { clip-path: inset(12% 0 83% 0); } }

.tech-icon { position: relative; font-size: 2.5rem; color: #fff; transition: all 0.4s ease; cursor: pointer; }
.tech-icon:hover { transform: translateY(-10px) scale(1.3); }
.tech-icon[data-name="HTML5"]:hover i { color: #e34f26; }
.tech-icon[data-name="CSS3"]:hover i { color: #1572b6; }
.tech-icon[data-name="JavaScript"]:hover i { color: #f7df1e; }
.tech-icon[data-name="React"]:hover i { color: #61dafb; animation: spin 2s linear infinite; }
.tech-icon[data-name="Node.js"]:hover i { color: #68a063; }
@keyframes spin { to { transform: rotate(360deg); } }

.tech-tooltip {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s;
}
.tech-icon:hover .tech-tooltip { transform: translateX(-50%) scale(1); opacity: 1; }

.typing-demo { margin-top: 2rem; font-family: monospace; color: #667eea; }
.cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }