/* --- Modern AI/IT Color Palette --- */
:root {
    --primary-blue: #005f83;
    --secondary-blue: #0077cc;
    --accent-teal: #00a8cc;
    --highlight-lime: #b6f200;
    --light-bg: #f8fafc;
    --medium-bg: #f1f5f9;
    --dark-bg: #0f172a;
    --code-bg: #1e293b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow-light: rgba(0, 95, 131, 0.08);
    --shadow-medium: rgba(0, 95, 131, 0.2);
    --border-light: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-blue) 50%, var(--highlight-lime) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--highlight-lime) 100%);
    --gradient-card: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    --hero-gradient: linear-gradient(45deg, #0f172a 0%, #005f83 50%, #0077cc 100%);
    --ignite-gradient: linear-gradient(135deg, #00e0ff 0%, #00a8cc 25%, #b6f200 75%, #fffb00 100%);
    --hero-teal-gradient: linear-gradient(45deg, #00a8cc 0%, #005f83 50%, #0077cc 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
}

/* Grid/Code Watermark Background Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%23f8fafc"/><path d="M0 0H100V100H0V0ZM10 10H90V90H10V10Z" fill="none" stroke="%23005f83" stroke-width="0.5" opacity="0.05"/></svg>');
    background-repeat: repeat;
    background-size: 100px;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Code Font for special text */
.code-text {
    font-family: 'Space Mono', monospace;
    color: var(--highlight-lime);

}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

/* Section Title Underline */
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--text-light);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Button Styles - Updated with Individual Animations --- */

/* Primary Button - Gradient Slide Animation */
.btn-primary {
    display: inline-block;
    background: darkgrey;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(182, 242, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 168, 204, 0.5);
    color: var(--white);
}

.btn-primary:hover::before {
    left: 0;
}

/* Secondary Button - Pulse Animation */
.btn-secondary {
    display: inline-block;
    background: darkgrey;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(182, 242, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 168, 204, 0.5);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 204, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 168, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 204, 0);
    }
}

/* Secure Button - Glitch Animation */
.btn-secure {
    display: inline-block;
    background: var(--code-bg);
    color: var(--highlight-lime);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--highlight-lime);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(182, 242, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Space Mono', monospace;
}

.btn-secure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--highlight-lime);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secure:hover {
    background: var(--highlight-lime);
    color: var(--code-bg);
    box-shadow: 0 5px 20px rgba(182, 242, 0, 0.7);
    transform: translateY(-2px);
    animation: glitch 0.3s ease;
}

.btn-secure:hover::before {
    opacity: 1;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* Outline Button - Border Animation */
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 95, 131, 0.3);
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Gradient Button - Shimmer Animation */
.btn-gradient {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 168, 204, 0.5);
}

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

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px var(--shadow-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 25px var(--shadow-medium);
}

nav.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding 0.3s ease;
}

header.scrolled nav.navbar {
    padding: 15px 0;
}

/* Logo */
.ignite-logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.ignite-logo:hover {
    transform: scale(1.02);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a.active {
    color: var(--accent-teal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--accent-teal);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 650px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding-top: 200px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite alternate;
    background-size: 400% 400%;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* AI Matrix Effect Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%2300a8cc"/><path d="M50 0L100 50L50 100L0 50Z" fill="none" stroke="url(%23g1)" stroke-width="1" opacity="0.1"/><defs><linearGradient id="g1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300a8cc;stop-opacity:1"/><stop offset="100%" style="stop-color:%23005f83;stop-opacity:1"/></linearGradient></defs></svg>');
    opacity: 0.5;
    background-repeat: repeat;
    background-size: 50px;
    z-index: 1;
}

/* AI Core Visual */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.2) 0%, rgba(0, 95, 131, 0.1) 30%, rgba(15, 23, 42, 0) 70%);
    filter: blur(50px);
    opacity: 0.8;
    z-index: 2;
    animation: pulseGlow 1s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.9; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px; 
    align-items: center;
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    z-index: 3;
    animation: fadeInUp 1.5s ease-out;
    max-width: 900px; 
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- AI Focus Section --- */
.ai-focus {
    background-color: var(--light-bg);
    position: relative;
}

.ai-focus-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.ai-focus-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.ai-focus-content p {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* AI Visual Component */
.ai-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Animated Flame Logo */
.flame-logo {
    width: 80%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 168, 204, 0.5));
    animation: flamePulse 1s ease-in-out infinite alternate;
}

@keyframes flamePulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 168, 204, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(0, 168, 204, 0.7));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 168, 204, 0.5));
    }
}

/* --- AI & Tech Focus Section --- */
.tech-focus {
    background-color: var(--code-bg);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.tech-focus .section-title h2 {
    color: var(--accent-teal);
}

.tech-focus .section-title p {
    color: darkgrey;
}

.tech-focus .section-title h2::after {
    background: var(--gradient-secondary);
}

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

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent-teal);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-left-color: var(--highlight-lime);
}

.tech-card i {
    font-size: 2.2rem;
    color: var(--highlight-lime);
    margin-bottom: 15px;
}

.tech-card h3 {
    color: var(--accent-teal);
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tech-card p {
    color: darkgrey;
    font-size: 0.95rem;
}

/* --- Services Section --- */
.services {
    background-color: var(--medium-bg);
    position: relative;
}

.services .section-title h2 {
    color: var(--accent-teal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--gradient-card);
    border-radius: 15px;
    padding: 50px 35px;
    text-align: left;
    box-shadow: 0 8px 30px var(--shadow-medium);
    transition: all 0.1s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease, transform 0.5s ease;
    transform: scale(0);
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 168, 204, 0.3);
    color: var(--white);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.1s ease;
}

.service-card:hover i {
    color: var(--white);
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
    transition: color 0.1s ease;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.1s ease;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Digital Pulse Section --- */
.digital-pulse {
    background-color: var(--light-bg);
    padding-bottom: 100px;
}

.digital-pulse .section-title h2 {
    color: var(--primary-blue);
}

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

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

.pulse-card {
    background: var(--code-bg);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 2px solid var(--accent-teal);
    position: relative;
    overflow: hidden;
}

.pulse-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 90px rgba(182, 242, 0, 0.4);
    border-color: var(--highlight-lime);
}

.pulse-number {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--highlight-lime);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
    font-family: 'Space Mono', monospace;
    text-shadow: 0 0 10px rgba(182, 242, 0, 0.5);
}

.pulse-label {
    font-size: 1.1rem;
    color: var(--accent-teal);
    font-weight: 500;
}

/* --- Testimonials Section --- */
.testimonials {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--dark-bg);
    position: relative;
}

.testimonials .section-title h2 {
    color: var(--dark-bg);
}

.testimonials .section-title p {
    color: var(--dark-bg);
}

.testimonials .section-title h2::after {
    background: var(--gradient-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 35px;
    padding: 55px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--highlight-lime);
}

.testimonial-card i {
    color: var(--dark-bg);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
    color: var(--dark-bg);
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-logo {
    width: 180px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.client-logo img {
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
}

.client-info {
    text-align: center;
}

.client-info h4 {
    color: var(--dark-bg);
    margin-bottom: 3px;
    font-size: 1.0rem;
}

.client-info span {
    font-size: 0.95rem;
    opacity: 0.8;
    color: var(--dark-bg);
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: var(--medium-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 2rem;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-teal);
}

.contact-info p {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.contact-info p i {
    color: var(--dark-bg);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    filter: drop-shadow(0 0 1px rgba(182, 242, 0, 0.5));
}

.contact-form {
    background: var(--medium-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 2rem;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-teal);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-bg);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.2);
}

/* --- Footer --- */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    border-top: 5px solid var(--accent-teal);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-area p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-column h3 {
    color: var(--highlight-lime);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-column ul li a::before {
    content: '>';
    color: var(--accent-teal);
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s, margin-right 0.3s;
}

.footer-column ul li a:hover {
    color: var(--highlight-lime);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    margin-right: 5px;
}

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

.social-links a {
    color: var(--accent-teal);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--highlight-lime);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* --- Animations & Utilities --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- New Graphic Elements --- */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    left: 80%;
    animation-delay: 5s;
}

.shape-3 {
    top: 40%;
    left: 85%;
    animation-delay: 10s;
}

.shape-4 {
    top: 80%;
    left: 15%;
    animation-delay: 15s;
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .digital-pulse .pulse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-focus-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-focus-content .section-title {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 70vh;
        min-height: 550px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        background: var(--white);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 20px var(--shadow-medium);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 15px 0;
        width: 80%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ignite-logo {
        height: 55px;
    }
    
    .digital-pulse .pulse-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card, .contact-info, .contact-form, .tech-card {
        padding: 30px 20px;
    }
}